Page 1 of 1

Esp32-S2 port

Posted: Sat Jun 13, 2020 1:29 pm
by Marius
Anyone know if anyone's working on this? Or does anyone want to work on it?

Marius

Re: Esp32-S2 port

Posted: Tue Jun 16, 2020 3:10 am
by propeller
Is this question means availability of Serial2 port? Yes, it works. Use

Code: Select all

from machine import UART
uart = UART (2, *****)
# ***** - means desired communication speed
uart.init (................)
# init mode 
Look this http://docs.micropython.org/en/latest/l ... .UART.html
Only use 'machine' instead of 'pyb'

Re: Esp32-S2 port

Posted: Tue Jun 16, 2020 8:07 am
by shaoziyang
circuitpython is support ESP32-S2, but micropython doesn't.

Re: Esp32-S2 port

Posted: Wed Mar 10, 2021 12:19 am
by johncblacker
Well cPy support is a misnomer!

Re: Esp32-S2 port

Posted: Thu Mar 11, 2021 5:08 am
by jimmo