Search found 3 matches

by Markonian
Wed Jan 03, 2018 5:20 pm
Forum: ESP32 Arduino
Topic: simple beginners questions about ESP32 - Arduino
Replies: 5
Views: 11018

Re: simple beginners questions about ESP32 - Arduino

I apologize for not following this topic. I just noticed it today. I guess I was not automatically subscribed if I post a reply? I'm also sorry for my lack of clarity in my previous post to this topic. In setup() you are calling the function attachInterrupt. The 2nd parameter is the name of the func...
by Markonian
Tue Jan 02, 2018 4:44 pm
Forum: ESP32 Arduino
Topic: best library for WS2812B and APA102 addressable leds?
Replies: 1
Views: 5945

Re: best library for WS2812B and APA102 addressable leds?

I don't know how "best" is defined. But I will attempt to help get you going quickly with the library I'm using. Short Answer: Use @samguyer's fork of FastLED . But, see More Detailed Answer before you go forward. More Detailed Answer: It says on the FastLED GitHub repository page: "library work is ...
by Markonian
Sat Oct 21, 2017 6:04 pm
Forum: ESP32 Arduino
Topic: simple beginners questions about ESP32 - Arduino
Replies: 5
Views: 11018

Re: simple beginners questions about ESP32 - Arduino

Please re-read the first error message. It tells you exactly what the error is. Now if you look to see why the compiler wants to convert 'void (*)(void*)' to 'void (*)()', you will notice that attachInterrupt() requires a pointer to a function that returns nothing and takes NO ARGUMENTS. You are sup...