This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ddbec75
commit f4d796f
Showing
2 changed files
with
2 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,7 +82,7 @@ This library enables you to use Interrupt from Hardware Timers on an Arduino or | |
|
||
As **Hardware Timers are rare, and very precious assets** of any board, this library now enables you to use up to **16 ISR-based Timers, while consuming only 1 Hardware Timer**. Timers' interval is very long (**ulong millisecs**). | ||
|
||
Now with these new **16 ISR-based timers**, the maximum interval is **practically unlimited** (limited only by unsigned long miliseconds) while **the accuracy is nearly perfect** compared to software timers. | ||
Now with these new **16 ISR-based timers**, the maximum interval is **practically unlimited** (limited only by unsigned long milliseconds) while **the accuracy is nearly perfect** compared to software timers. | ||
|
||
The most important feature is they're ISR-based timers. Therefore, their executions are **not blocked by bad-behaving functions / tasks**. This important feature is absolutely necessary for mission-critical tasks. | ||
|
||
|
@@ -159,19 +159,6 @@ Another way to install is to: | |
3. Extract the zip file to `TimerInterrupt-master` directory | ||
4. Copy whole `TimerInterrupt-master` folder to Arduino libraries' directory such as `~/Arduino/libraries/`. | ||
|
||
### arduino-cli Install | ||
|
||
1. Install [arduino-cli](https://github.com/arduino/arduino-cli) | ||
2. Run the following command. | ||
|
||
``` | ||
$ arduino-cli lib install timerinterrupt | ||
Downloading [email protected]... | ||
[email protected] downloaded | ||
Installing [email protected]... | ||
Installed [email protected] | ||
``` | ||
|
||
### VS Code & PlatformIO: | ||
|
||
1. Install [VS Code](https://code.visualstudio.com/) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,6 +92,6 @@ | |
|
||
### Releases v1.0.2 | ||
|
||
1. Intial releases. | ||
1. Initial releases. | ||
|
||
|