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

Commit

Permalink
Fix Codespell complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
khoih-prog authored Nov 18, 2022
1 parent ddbec75 commit f4d796f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
15 changes: 1 addition & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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/)
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,6 @@

### Releases v1.0.2

1. Intial releases.
1. Initial releases.


0 comments on commit f4d796f

Please sign in to comment.