drsteveplatt / TaskManager

A task manager for Arduino-style microcontrollers
14 stars 1 forks source link

running examples #3

Open a00889920 opened 2 years ago

a00889920 commented 2 years ago

Hi,

Do I need something else to run the examples in the library?

ex03_01a_simple_send:11:10: fatal error: TaskManager_2.h: No such file or directory

include

      ^~~~~~~~~~~~~~~~~

compilation terminated. exit status 1 TaskManager_2.h: No such file or directory

I downloaded the repo as zip and added it into arduino. Looking at the src files, there is not _2.h file, I have renamed it to TaskManager.h, once done, the compiler now complains about:

Arduino\libraries\TaskManager-master\src\TaskManager.cpp:5:10: fatal error: Streaming.h: No such file or directory

include

      ^~~~~~~~~~~~~

From where should I get this Streaming library?

Thanks

drsteveplatt commented 2 years ago

Hi,

I'll need to check this example out. It may be transitional while I was developing the new edition and was running in parallel spaces/with parallel libraries.

Change "TaskManager_2.h" to "TaskManager.h". You may see similar things elsewhere...

Thanks for this!