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

Commit 19a2a53

Browse files
authored
Update
1 parent 0b0cdf3 commit 19a2a53

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The catch is your function is now part of an **ISR (Interrupt Service Routine)**
5353

5454
## Prerequisite
5555

56-
1. [`Arduino IDE 1.8.12+` for Arduino](https://www.arduino.cc/en/Main/Software)
56+
1. [`Arduino IDE 1.8.13+` for Arduino](https://www.arduino.cc/en/Main/Software)
5757
2. [`ESP32 core 1.0.4+`](https://github.com/espressif/arduino-esp32/releases) for ESP32 boards
5858

5959
---

library.json

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,28 @@
11
{
22
"name": "ESP32_ISR_Servo",
3-
"keywords": "timer,interrupt,hardware,servo",
3+
"version": "1.0.2",
4+
"keywords": "timer,interrupt,hardware,servo,ESP32,mission-critical,precise,non-blocking",
45
"description": "This library enables you to use 1 Hardware Timer on an ESP32-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/ESP32_ISR_Servo"
916
},
10-
"frameworks": "arduino",
11-
"platforms": "esp32",
12-
"version": "1.0.2"
17+
"homepage": "https://github.com/khoih-prog",
18+
"export": {
19+
"exclude": [
20+
"linux",
21+
"extras",
22+
"tests"
23+
]
24+
},
25+
"frameworks": "*",
26+
"platforms": "esp32",
27+
"examples": "examples/*/*/*.ino"
1328
}

0 commit comments

Comments
 (0)