Skip to content

Commit 97d38e5

Browse files
committed
README: update include file
1 parent 3ea26e7 commit 97d38e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Simple *non-blocking* timer library for calling functions **in / at / every** sp
66

77
Include the library and create a *Timer* instance.
88
```cpp
9-
#include <timer.h>
9+
#include <arduino-timer.h>
1010

1111
auto timer = timer_create_default();
1212
```
@@ -105,7 +105,7 @@ void cancel(Timer<>::Task &task);
105105

106106
[Check out the instructions](https://www.arduino.cc/en/Guide/Libraries) from Arduino.
107107

108-
**OR** copy **src/timer.h** into your project folder *(you won't get managed updates this way)*.
108+
**OR** copy **src/arduino-timer.h** into your project folder *(you won't get managed updates this way)*.
109109

110110
### Examples
111111

@@ -114,7 +114,7 @@ Found in the **examples/** folder.
114114
The simplest example, blinking an LED every second *(from examples/blink)*:
115115

116116
```cpp
117-
#include <timer.h>
117+
#include <arduino-timer.h>
118118

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

0 commit comments

Comments
 (0)