No bin files for ESP32-S2-WROVER? #12356
Replies: 3 comments 1 reply
-
Which board do you use? Please tell us s link to the product? |
Beta Was this translation helpful? Give feedback.
-
I'm using flipper's wifi dev board: https://docs.flipper.net/development/hardware/wifi-developer-board/schematics#h42h9 I'm realizing better now what's going on with the LED (this is with ESP32-S2 bin file). For some reason off/on doesn't work and on is 0 off is 1: B_PIN = 4 blue_led = machine.Pin(B_PIN,machine.Pin.OUT) #off |
Beta Was this translation helpful? Give feedback.
-
thanks everyone |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I tried the micropython firmware for ESP32-S2 on my ESP32-S2-WROVER and noticed the pins for the LED did not align properly.
In arduino they work fine:
#define B_PIN 4
#define G_PIN 5
#define R_PIN 6
But with micropython they're all wonky: Blue is green and I can't find red anywhere.
B_PIN = 4
G_PIN = 5
R_PIN = 6
Beta Was this translation helpful? Give feedback.
All reactions