sevketk
sevketk
I need a one class , have a timer. in class method can start, stop timer. ``` #include void RGBmatrixPanel::begin(void) { Timer3.attachInterrupt(updateDisplay); Timer3.start(250); } void RGBmatrixPanel::updateDisplay() { if(something doing){ Timer3.stop();...
first of all , thank you for your efforts. But, can you tell me how can I include your library locally in my project? which folder should i copy to...
I setup Arduino for esp8266 board from https://github.com/esp8266/ from boards manager . and I connect my led panel directly to arduino (not use esp8266). Bu however ticker.h not found. When...