-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from takeyamayuki/develop
refactor
- Loading branch information
Showing
5 changed files
with
43 additions
and
14 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
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
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "RESTuino", | ||
"version": "1.0.1", | ||
"description": "A library to handle arduino GPIO via REST API", | ||
"keywords": "REST, RESTful API, Arduino, GPIO, RESTuino", | ||
"repository": | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/takeyamayuki/RESTuino.git" | ||
}, | ||
"authors": | ||
[ | ||
{ | ||
"name": "Yuki TAKEYAMA", | ||
"email": "[email protected]", | ||
"url": "https://takeyamayuki.github.io/", | ||
"maintainer": true | ||
}, | ||
{ | ||
"name": "Ar-Ray-code" | ||
} | ||
], | ||
"license": " Apache-2.0 license", | ||
"homepage": "https://zenn.dev/ninzin/articles/5c859a0bfc1ee6/", | ||
"dependencies": { | ||
"ownername/print": "~1.3.0", | ||
"madhephaestus/ESP32Servo":"~0.11.0", | ||
"bblanchon/ArduinoJson":"~6.19.4" | ||
}, | ||
"frameworks": "Arduino", | ||
"platforms": "*" | ||
} |
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
name=RESTuino | ||
version=1.0.0 | ||
author=Yuki Takeyama | ||
version=1.0.1 | ||
author=takeyamayuki, Ar-Ray-code | ||
maintainer=takeyamayuki <[email protected]> | ||
sentence=A library to handle arduino GPIO via REST API. | ||
paragraph=Fisrt version of RESTuino. | ||
category=Communication | ||
url=https://github.com/takeyamayuki/RESTuino.git | ||
architectures=esp32 | ||
includes=RESTuino.h | ||
depends=WiFi, EEPROM, ESPmDNS, WebServer, ESP32Servo, ArduinoJson | ||
depends=WiFi, ESP32Servo |