PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
John Robinson 4aaa09bd80
initial commit
3 роки тому
..
LED.cpp initial commit 3 роки тому
LED.h initial commit 3 роки тому
README.txt initial commit 3 роки тому
Runnable.h initial commit 3 роки тому
main.ino initial commit 3 роки тому

README.txt

The purpose of this example is to demonstrate how to use TeensyThreads as part of std and implement it such that a class could easily implement threading without much overhead
The Runnable.h file is an abstract definition of how to use threads
Any class that dervives from Runnable just needs to implement the runTarget(void *args) and start the thread.
This specific example extends an example LED class such that an LED object can be constructed to blink for some duration, at some period, with some duty cycle