From 756be54429b37602b6fd07b70541b424d5af9c93 Mon Sep 17 00:00:00 2001 From: plapointe6 Date: Sun, 14 Jul 2019 15:29:10 -0400 Subject: [PATCH] Register correctly to the platformio registery --- library.json | 24 ++++++++++++++++++++++++ library.properties | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..1f38ddc --- /dev/null +++ b/library.json @@ -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"] + } + ] +} \ No newline at end of file diff --git a/library.properties b/library.properties index 61ffd3b..537104c 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=EspMQTTClient -version=1.5 +version=1.6.0 author=Patrick Lapointe maintainer=Patrick Lapointe sentence=A library that provides a wifi and MQTT connection to an ESP8266/ESP32