Skip to content

Commit 02fafe6

Browse files
committed
examples: update include file
1 parent 97d38e5 commit 02fafe6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/blink/blink.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
*/
77

8-
#include <timer.h>
8+
#include <arduino-timer.h>
99

1010
auto timer = timer_create_default(); // create a timer with default settings
1111

examples/blink_micros/blink_micros.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
*/
77

8-
#include <timer.h>
8+
#include <arduino-timer.h>
99

1010
Timer<1, micros> timer; // create a timer with 1 task and microsecond resolution
1111

examples/blink_print/blink_print.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
*/
88

9-
#include <timer.h>
9+
#include <arduino-timer.h>
1010

1111
auto timer = timer_create_default(); // create a timer with default settings
1212

examples/full/full.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*/
1212

13-
#include <timer.h>
13+
#include <arduino-timer.h>
1414

1515
auto timer = timer_create_default(); // create a timer with default settings
1616
Timer<> default_timer; // save as above

0 commit comments

Comments
 (0)