Can you load the firmware?
Do you get a REPL prompt at the USB/Serial interface?
Search found 2535 matches
- Tue Apr 13, 2021 6:16 am
- Forum: ESP32 boards
- Topic: Help. ESP32 WROOM-32D board doesn't work with pins or PWM
- Replies: 1
- Views: 33
- Mon Apr 12, 2021 4:36 pm
- Forum: General Discussion and Questions
- Topic: ESP32 SPI
- Replies: 2
- Views: 121
Re: ESP32 SPI
SPI itself is sufficiently fast. for your device you have to send ~300k bits for a full screen. At 10MHz SPI that takes about 30 ms. Micropython is slow. I do not know how you have set up your code, but if you write single pixels than you have a lot of overhead. It get's faster if you write larger p...
- Mon Apr 12, 2021 12:31 pm
- Forum: ESP32 boards
- Topic: Cannot Get UART Rx to Work
- Replies: 1
- Views: 66
Re: Cannot Get UART Rx to Work
uart.read() is non blocking, and uart.write() is buffered. That means that the call to uart.write() returns before the data has been sent. At that very moment no data has been reecived yet, and uart.read() returns with None. Sending 2 bytes at 9600 takes 2 ms. So wehat can you do: a) wait 2 ms befor...
- Sun Apr 11, 2021 7:35 pm
- Forum: Raspberry Pi microcontroller boards
- Topic: Windows fail to recognize Pi Pico when running this code
- Replies: 4
- Views: 154
Re: Windows fail to recognize Pi Pico when running this code
Better save your code before updating, even when replacing the uf2 should not affect the file system.
There was a change in the USB handling recently, leading to more reliable registering of the device. So it might be worth trying the update.
There was a change in the USB handling recently, leading to more reliable registering of the device. So it might be worth trying the update.
- Sun Apr 11, 2021 6:12 pm
- Forum: Raspberry Pi microcontroller boards
- Topic: Windows fail to recognize Pi Pico when running this code
- Replies: 4
- Views: 154
Re: Windows fail to recognize Pi Pico when running this code
Which firmware version is installed on the Pico?
- Fri Apr 09, 2021 5:11 pm
- Forum: Drivers for External Components
- Topic: Variable wird nicht übergeben
- Replies: 2
- Views: 87
Re: Variable wird nicht übergeben
Add the line
global sendung
Into int_handler() at the top.
global sendung
Into int_handler() at the top.
- Fri Apr 09, 2021 9:08 am
- Forum: ESP32 boards
- Topic: Compiling with btree module support
- Replies: 16
- Views: 562
Re: Compiling with btree module support
Btree is included now. You should have it in the daily build tomorrow.
- Fri Apr 09, 2021 6:47 am
- Forum: ESP32 boards
- Topic: Trying to connect HUZZAH32 ESP32 Feather to WIFI
- Replies: 2
- Views: 118
Re: Trying to connect HUZZAH32 ESP32 Feather to WIFI
after 'wlan.connect('ssid', 'password')' the connection does not happen immediately. You have to wait until the device is connected, checking with wlan.isconnected(). You can set the ip address before calling wlan.connect(). Then that one is used right from the start. P.S.: That's the script I use a...
- Thu Apr 08, 2021 6:13 pm
- Forum: ESP32 boards
- Topic: Compiling with btree module support
- Replies: 16
- Views: 562
Re: Compiling with btree module support
The btree module is about to be included again for the ESP32. Damien is working on it.
- Thu Apr 08, 2021 5:12 pm
- Forum: Raspberry Pi microcontroller boards
- Topic: machine.UART how to skip read?
- Replies: 2
- Views: 127
Re: machine.UART how to skip read?
Update the Firmware to the newest daily build. The read() is non-blocking.