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.
Search found 2532 matches
- Sun Apr 11, 2021 7:35 pm
- Forum: Raspberry Pi microcontroller boards
- Topic: Windows fail to recognize Pi Pico when running this code
- Replies: 3
- Views: 72
- Sun Apr 11, 2021 6:12 pm
- Forum: Raspberry Pi microcontroller boards
- Topic: Windows fail to recognize Pi Pico when running this code
- Replies: 3
- Views: 72
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: 79
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: 474
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: 99
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: 474
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: 121
Re: machine.UART how to skip read?
Update the Firmware to the newest daily build. The read() is non-blocking.
- Thu Apr 08, 2021 3:12 pm
- Forum: General Discussion and Questions
- Topic: RGB led problem
- Replies: 6
- Views: 149
Re: question
Everything is fine. Just the way LED is connected, led.value(0) switched the led ON, led.value(1) switches it OFF.
- Thu Apr 08, 2021 2:07 pm
- Forum: General Discussion and Questions
- Topic: RGB led problem
- Replies: 6
- Views: 149
Re: question
Assuming you have the common anode at 3.3V it should work. Two notes: - led.on() and led.off() are confusing API names, since led.on() switches the output to high level, and led.off() to low level. So led.off() should switch the led on, and the opposite. But it should switch. I prefer to specify the...
- Thu Apr 08, 2021 1:17 pm
- Forum: General Discussion and Questions
- Topic: RGB led problem
- Replies: 6
- Views: 149
Re: question
People here are not very good at remote mind reading, so we need more technical details.
Please tell us,
- which RGB led you are use
- how you connected it to the ESP32 board and
- which python commands you used.
Please tell us,
- which RGB led you are use
- how you connected it to the ESP32 board and
- which python commands you used.