This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
library.json
34 lines (34 loc) · 1.51 KB
/
library.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "TimerInterrupt",
"version": "1.8.0",
"keywords": "timer, interrupt, timer-interrupt, hardware, isr, isr-based, hardware-timer, mission-critical, accuracy, precise, atmega, atmega2560, atmega1280, atmega16u4, atmega32u4, 32u4, atmega328p, nano, uno, leonardo, yun, yun-mini, esplora, gemma, mega, feather, adafruit, 16u4, atmega128, atmega168, atmegang, atmega8, attiny85",
"description": "This library enables you to use Interrupt from Hardware Timers on an Arduino, Adafruit or Sparkfun AVR board, such as Nano, UNO, Mega, Leonardo, YUN, Teensy, Feather_32u4, Feather_328P, Pro Micro, etc. It now supports 16 ISR-based timers, while consuming only 1 hardware Timer. Timers' interval is very long (ulong millisecs). The most important feature is they're ISR-based timers. Therefore, their executions are not blocked by bad-behaving functions or tasks. This important feature is absolutely necessary for mission-critical tasks.",
"authors":
{
"name": "Khoi Hoang",
"url": "https://github.com/khoih-prog",
"maintainer": true
},
"repository":
{
"type": "git",
"url": "https://github.com/khoih-prog/TimerInterrupt"
},
"homepage": "https://github.com/khoih-prog/TimerInterrupt",
"export": {
"exclude": [
"linux",
"extras",
"tests"
]
},
"license": "MIT",
"frameworks": "arduino",
"platforms":
[
"atmelavr",
"teensy"
],
"examples": "examples/*/*/*.ino",
"headers": ["TimerInterrupt.h", "TimerInterrupt.hpp", "ISR_Timer.h", "ISR_Timer.hpp"]
}