Search found 8 matches

by codehobby
Sun Mar 13, 2022 1:48 pm
Forum: ESP32 boards
Topic: Error : library / firmware
Replies: 0
Views: 9757

Error : library / firmware

Hello, I've on my esp32 board the latest firmware micropython v1.18 here is the script I've made : from esp_ble_uart import * import machine, neopixel, time, esp32 n = 49 p = 13 np = neopixel.NeoPixel(machine.Pin(p),n) name = 'neonconnect' UUID_UART = '6E400001-B5A3-F393-E0A9-E50E24DCCA9E' UUID_TX =...
by codehobby
Fri Mar 11, 2022 6:25 pm
Forum: ESP32 boards
Topic: Error with a script (RMT and neopixel)
Replies: 2
Views: 1121

Re: Error with a script (RMT)

You're right. It's a mistake, I just changed it with the v1.12 firmware, and this is what I get : Traceback (most recent call last): File "<stdin>", line 9, in <module> OSError: ESP_ERR_INVALID_STATE > MicroPython v1.12 on 2019-12-20; ESP32 module with ESP32 Type "help()" for more information. >>>
by codehobby
Fri Mar 11, 2022 5:57 pm
Forum: ESP32 boards
Topic: Error with a script (RMT and neopixel)
Replies: 2
Views: 1121

Error with a script (RMT and neopixel)

Hello, I've started a project a few days ago, the aim is to control with a smartphone via bluetooth LE and an android app, that I created, a strip of leds. Everything works fine except that some leds are flashing with different colors randomly. I searched on the internet and I finally found it's a p...
by codehobby
Sat Jan 29, 2022 3:19 pm
Forum: ESP32 boards
Topic: bug on leds ws2812b + esp32
Replies: 0
Views: 5527

bug on leds ws2812b + esp32

Hello, I'm a beginner and I'm having a problem with my leds and esp32 : when I plugin it everything is allright during the first loop, when the 2nd loop starts there are leds that turn on randomly when they should be turned off. You can see it especially at the end of the video. Also it can't be see...
by codehobby
Thu Nov 18, 2021 10:50 am
Forum: ESP32 boards
Topic: Need help with a script
Replies: 6
Views: 2973

Re: Need help with a script

Ok, I'll take a look at it. Thanks
by codehobby
Mon Nov 15, 2021 4:39 pm
Forum: ESP32 boards
Topic: Need help with a script
Replies: 6
Views: 2973

Re: Need help with a script

Ok, thanks. I found 2 programs on which you can set the brightness but it's only for red, and white color.
by codehobby
Sun Nov 14, 2021 6:22 pm
Forum: ESP32 boards
Topic: Need help with a script
Replies: 6
Views: 2973

Need help with a script

Hello, I'm from from France (I didn't really find a forum in French so here I am) I have an ESP32 and ws2812 led, I'd like to create a fade in/out effect with the color I want. I started a code but it doesn't work also I'm a big beginner in coding. Here is my code : import machine, time, neopixel n ...