-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Register correctly to the platformio registery
- Loading branch information
plapointe6
committed
Jul 14, 2019
1 parent
60294d6
commit 756be54
Showing
2 changed files
with
25 additions
and
1 deletion.
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,24 @@ | ||
{ | ||
"name":"EspMQTTClient", | ||
"description":"A library that provides a wifi and MQTT connection to an ESP8266/ESP32", | ||
"keywords":"mqtt,wifi,iot", | ||
"authors": | ||
{ | ||
"name": "Patrick Lapointe", | ||
"maintainer": true | ||
}, | ||
"repository": | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/plapointe6/EspMQTTClient.git" | ||
}, | ||
"version": "1.6.0", | ||
"frameworks": "arduino", | ||
"platforms": ["espressif8266", "espressif32"], | ||
"dependencies": [ | ||
{ | ||
"name": "PubSubClient", | ||
"platforms": ["espressif8266", "espressif32"] | ||
} | ||
] | ||
} |
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,5 +1,5 @@ | ||
name=EspMQTTClient | ||
version=1.5 | ||
version=1.6.0 | ||
author=Patrick Lapointe <[email protected]> | ||
maintainer=Patrick Lapointe <[email protected]> | ||
sentence=A library that provides a wifi and MQTT connection to an ESP8266/ESP32 | ||
|