Ivan Seidel

Results 40 comments of Ivan Seidel

Can you please check `#include ` is the first included file from the library, and that it is indeed included? Also, please post the code here so we can understand...

Try including Thread.h and ThreadController.h in your main file. That shouls work On Mon, Apr 30, 2018, 3:58 PM SciLor wrote: > The code is here: > > https://github.com/SciLor/ESP8266_Hyperion_LED-Controller/blob/develop/HyperionRGB/EnhancedThread.h >...

Will this add incompatibility of any kind? If I understand correctly, the purpose of this is to allow inherited classes (other than the core itself) to know when it got...

Hi @stanmain! Thanks for reaching out and making contribution to the library! We need to understand how compatible this can be to choose if it will be merged into ArduinoThread,...

Hi Sevtek, Due to the lack of the C++ version used in Arduino Due, you can only attach callbacks and pass as parameter functions that do not require the scope...

Try doing a delay with micros(), like: `while(micros() - start < DELAY);` It might work, since the delay function depends on millis, and when you are inside a timer callback,...

#56 should have fixed it. Can you run the tests again to check?

Here is my proposed UML diagram for the new Library version: ![duetimer](https://f.cloud.github.com/assets/3102127/629384/cd4c927a-d146-11e2-88ec-a13592ba41a2.png) @pklaus @colombod

> Sounds great the only thing I'd do is not to have the class name as DueTime but actually have a namespace Due and keep the Class Name As Timer...

In OO, sometimes we just leave a method not being used, however, changing a public method to private or protected (a more restrict type than the father) is not possible....