Search found 3 matches

by RiccardoCagnasso
Mon Jun 01, 2020 2:32 pm
Forum: ESP32 Arduino
Topic: Fastled and wifi
Replies: 4
Views: 4960

Re: Fastled and wifi

Yes, you are right. It was a stack size problem, I actually independently found it out yesterday.
I was forgetting how the stacks in C actually works with function calls.

Anyway, thanks.
by RiccardoCagnasso
Sat May 30, 2020 10:07 am
Forum: ESP32 Arduino
Topic: Fastled and wifi
Replies: 4
Views: 4960

Re: Fastled and wifi

I can do better, I can show you the code

https://pastebin.com/ZD6pwKJU

I will try to build a minimal working example later
by RiccardoCagnasso
Fri May 29, 2020 9:34 pm
Forum: ESP32 Arduino
Topic: Fastled and wifi
Replies: 4
Views: 4960

Fastled and wifi

I'm trying to drive leds with Fastled by sending the data via UDP packets via wifi. The size of the UDP packet is 1024B, that's the biggest that should confortably pass trough all the common routers. So I need 4 packets to get 1024 RGB leds (plus some headers) I want to move the part that receives t...