-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump to v1.1.0 and add PlatformIO metadata
- Loading branch information
Showing
2 changed files
with
28 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json", | ||
"name": "ESP8266Ping", | ||
"version": "1.1.0", | ||
"description": "Let the ESP8266 ping a remote machine.", | ||
"keywords": [ | ||
"ping", | ||
"esp8266" | ||
], | ||
"homepage": "https://github.com/dancol90/ESP8266Ping", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/dancol90/ESP8266Ping" | ||
}, | ||
"authors": { | ||
"name": "Daniele Colanardi", | ||
"email": "dancol90@gmail.com", | ||
"maintainer": true | ||
}, | ||
"license": "LGPL-2.1-or-later", | ||
"frameworks": "arduino", | ||
"platforms": "esp8266", | ||
"headers": [ | ||
"ESP8266Ping.h" | ||
] | ||
} |
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,9 +1,9 @@ | ||
name=ESP8266Ping | ||
version=1.0 | ||
version=1.1.0 | ||
author=Daniele Colanardi | ||
maintainer=Daniele Colanardi <dancol90@gmail.com> | ||
sentence=Let the ESP8266 ping a remote machine. | ||
paragraph=With this library an ESP8266 can ping a remote machine and know if it's reachable. It provide some basic measurements on ping messages (avg response time). | ||
category=Communication | ||
url= | ||
url=https://github.com/dancol90/ESP8266Ping | ||
architectures=esp8266 |