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

Commit 7448e2f

Browse files
authored
Update
1 parent 2366edc commit 7448e2f

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
### Version v1.0.2
1414

15-
1. Add example using [Blynk](http://docs.blynk.cc/) to control servos.
15+
1. Add example using [**Blynk**](http://docs.blynk.cc/) to control servos.
1616
2. Change example names to avoid duplication.
1717

1818
#### Version v1.0.1
@@ -55,8 +55,8 @@ The catch is your function is now part of an **ISR (Interrupt Service Routine)**
5555

5656
## Prerequisite
5757

58-
1. [`Arduino IDE 1.8.12+` for Arduino](https://www.arduino.cc/en/Main/Software)
59-
2. [`ESP8266 core 2.7.3+` for Arduino](https://github.com/esp8266/Arduino#installing-with-boards-manager) for ESP8266 boards.
58+
1. [`Arduino IDE 1.8.13+`](https://www.arduino.cc/en/Main/Software)
59+
2. [`ESP8266 core 2.7.4+`](https://github.com/esp8266/Arduino#installing-with-boards-manager) for ESP8266 boards.
6060

6161
---
6262

@@ -83,6 +83,7 @@ Another way to install is to:
8383
3. Install **ESP8266_ISR_Servo** library by using [Library Manager](https://docs.platformio.org/en/latest/librarymanager/). Search for ESP8266_ISR_Servo in [Platform.io Author's Libraries](https://platformio.org/lib/search?query=author:%22Khoi%20Hoang%22)
8484
4. Use included [platformio.ini](platformio/platformio.ini) file from examples to ensure that all dependent libraries will installed automatically. Please visit documentation for the other options and examples at [Project Configuration File](https://docs.platformio.org/page/projectconf.html)
8585

86+
---
8687
---
8788

8889
## More useful Information
@@ -366,6 +367,7 @@ void loop()
366367
```
367368
368369
---
370+
---
369371
370372
371373
## TO DO
@@ -410,6 +412,12 @@ If you want to contribute to this project:
410412
411413
---
412414
415+
### License
416+
417+
- The library is licensed under [MIT](https://github.com/khoih-prog/ESP8266_ISR_Servo/blob/master/LICENSE)
418+
419+
---
420+
413421
## Copyright
414422
415423
Copyright 2019- Khoi Hoang

library.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,28 @@
11
{
22
"name": "ESP8266_ISR_Servo",
3-
"keywords": "timer,interrupt,hardware,servo",
3+
"version": "1.0.2",
4+
"keywords": "timer,interrupt,hardware,servo,ESP8266,mission-critical,precise,non-blocking",
45
"description": "This library enables you to use 1 Hardware Timer on an ESP8266-based board to control up to 16 or more servo motors.",
6+
"authors":
7+
{
8+
"name": "Khoi Hoang",
9+
"url": "https://github.com/khoih-prog",
10+
"maintainer": true
11+
},
512
"repository":
613
{
714
"type": "git",
815
"url": "//https://github.com/khoih-prog/ESP8266_ISR_Servo"
916
},
17+
"homepage": "https://github.com/khoih-prog",
18+
"export": {
19+
"exclude": [
20+
"linux",
21+
"extras",
22+
"tests"
23+
]
24+
},
1025
"frameworks": "arduino",
1126
"platforms": "esp8266",
12-
"version": "1.0.2"
27+
"examples": "examples/*/*/*.ino"
1328
}

0 commit comments

Comments
 (0)