Skip to content

Commit a79d02e

Browse files
author
Felix Queisler
committed
Added files for Arduino libraries
1 parent 839a00d commit a79d02e

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

keywords.txt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#######################################
2+
# Syntax Coloring Map for Arduino Timer
3+
#######################################
4+
5+
#######################################
6+
# Classes (KEYWORD1)
7+
#######################################
8+
9+
Timer KEYWORD1
10+
11+
#######################################
12+
# Functions (KEYWORD2)
13+
#######################################
14+
15+
start KEYWORD2
16+
enable KEYWORD2
17+
disable KEYWORD2
18+
pause KEYWORD2
19+
stop KEYWORD2
20+
update KEYWORD2
21+
restart KEYWORD2
22+
isRinging KEYWORD2
23+
isRunning KEYWORD2
24+
25+
#######################################
26+
# Constants (LITERAL1)
27+
#######################################
28+
29+
COMPENSATE_OVERFLOW LITERAL1

library.properties

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name=arduino-timer-simple
2+
version=1.0
3+
author=Felix Queisler
4+
maintainer=Felix Queisler (queisler.de)
5+
sentence=The easiest non-blocking & nicely abstracted timers for use instead of the blocking delay() function.
6+
paragraph=With this Library you can add non-blocking timers. It's very slim and takes little to no performance. It's relatively low-end, with no callback functions. The timer states need to be checked manually. Warning: This library doesn't work like a hardware timer and can't guarantee that code is being run on time.
7+
category=Timing
8+
url=https://github.com/felixqueisler/arduino-timer
9+
architectures=*
10+
includes=Q_Timer.h

0 commit comments

Comments
 (0)