TimeoutScheduler
A simple scheduler library for Arduino that allows you to run tasks after a certain delay(ms)[One time execution of a task].
Установка
Последняя опубликованная версия- Скачайте архив — реестр отдает его уже проверенным.
- В Arduino IDE выберите «Скетч → Подключить библиотеку → Добавить .ZIP библиотеку».
- Укажите скачанный файл — библиотека появится в списке доступных.
SHA-256:d942673ba967a7f9ddce8139703ffbd3281bed0c7da9f600b4a8bee7a8c40c31TimeoutScheduler-1.0.1-d942673b.zipОписание
TimeoutScheduler is a lightweight library for Arduino that enables you to schedule tasks after a certain delay(ms). It is designed to be easy to use and efficient, making it ideal for projects that require timed operations without blocking the main loop. The library supports multiple tasks and allows you to set different timeout for each task, providing flexibility in scheduling.It uses linked lists to manage tasks, ensuring that the library remains efficient even with multiple scheduled tasks. The API is straightforward, allowing you to add, remove, and execute tasks in runtime. This makes it suitable for a wide range of applications.