Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit 5b07ba6

Browse files
authored
Fix typo
1 parent e75149f commit 5b07ba6

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
@@ -176,14 +176,14 @@ The current library implementation, using `xyz-Impl.h` instead of standard `xyz.
176176
You can use
177177

178178
```
179-
#include <ESP32_New_ISR_Timer.hpp> //https://github.com/khoih-prog/ESP32_New_TimerInterrupt
179+
#include <ESP32_New_TimerInterrupt.hpp> //https://github.com/khoih-prog/ESP32_New_TimerInterrupt
180180
```
181181

182-
in many files. But be sure to use the following `#include <ESP32_New_ISR_Timer.h>` **in just 1 `.h`, `.cpp` or `.ino` file**, which must **not be included in any other file**, to avoid `Multiple Definitions` Linker Error
182+
in many files. But be sure to use the following `#include <ESP32_New_TimerInterrupt.h>` **in just 1 `.h`, `.cpp` or `.ino` file**, which must **not be included in any other file**, to avoid `Multiple Definitions` Linker Error
183183

184184
```
185185
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
186-
#include <ESP32_New_ISR_Timer.h> //https://github.com/khoih-prog/ESP32_New_TimerInterrupt
186+
#include <ESP32_New_TimerInterrupt.h> //https://github.com/khoih-prog/ESP32_New_TimerInterrupt
187187
```
188188

189189
---

0 commit comments

Comments
 (0)