Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
examples: update include file
Browse files Browse the repository at this point in the history
  • Loading branch information
contrem committed Jun 15, 2020
1 parent 97d38e5 commit 02fafe6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/blink/blink.ino
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
*/

#include <timer.h>
#include <arduino-timer.h>

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

Expand Down
2 changes: 1 addition & 1 deletion examples/blink_micros/blink_micros.ino
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
*/

#include <timer.h>
#include <arduino-timer.h>

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

Expand Down
2 changes: 1 addition & 1 deletion examples/blink_print/blink_print.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
*/

#include <timer.h>
#include <arduino-timer.h>

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

Expand Down
2 changes: 1 addition & 1 deletion examples/full/full.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*
*/

#include <timer.h>
#include <arduino-timer.h>

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

0 comments on commit 02fafe6

Please sign in to comment.