Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a52497d292 | ||
|
|
4fbfe78e53 | ||
|
|
6f93c09e2f | ||
|
|
28d54b64c9 | ||
|
|
95de4646df | ||
|
|
84d30b6343 | ||
|
|
f38cc536b8 |
@@ -60,10 +60,10 @@ else
|
|||||||
sed -i "s/'/\"/g" library.json
|
sed -i "s/'/\"/g" library.json
|
||||||
if [ "$do" == "1" ]; then
|
if [ "$do" == "1" ]; then
|
||||||
echo "Pushing all"
|
echo "Pushing all"
|
||||||
git commit -m "Release $1 $2"
|
|
||||||
git tag $1
|
|
||||||
git add library.properties
|
git add library.properties
|
||||||
git add library.json
|
git add library.json
|
||||||
|
git commit -m "Release $1 $2"
|
||||||
|
git tag $1
|
||||||
git push
|
git push
|
||||||
git push --tags
|
git push --tags
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#include "TinyMqtt.h" // https://github.com/hsaturn/TinyMqtt
|
#include "TinyMqtt.h" // https://github.com/hsaturn/TinyMqtt
|
||||||
|
|
||||||
const uint16_t PORT 1883;
|
const uint16_t PORT = 1883;
|
||||||
const uint8_t RETAIN = 10; // Max retained messages
|
const uint8_t RETAIN = 10; // Max retained messages
|
||||||
|
|
||||||
MqttBroker broker(PORT, RETAIN);
|
MqttBroker broker(PORT, RETAIN);
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies":
|
"dependencies":
|
||||||
{ "hsaturn/TinyConsole" : "*" },
|
{ "hsaturn/TinyConsole" : "*" },
|
||||||
"version": "1.1.2",
|
"version": "1.1.4",
|
||||||
"exclude": "",
|
"exclude": "",
|
||||||
"examples": "examples/*/*.ino",
|
"examples": "examples/*/*.ino",
|
||||||
"frameworks": "arduino",
|
"frameworks": "arduino",
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
name=TinyMqtt
|
name=TinyMqtt
|
||||||
version=1.1.2
|
version=1.1.4
|
||||||
author=Francois BIOT, HSaturn, <hsaturn@gmail.com>
|
author=HSaturn, <hsaturn@gmail.com>
|
||||||
maintainer=Francois BIOT <hsaturn@gmail.com>
|
maintainer=HSaturn <hsaturn@gmail.com>
|
||||||
sentence=A tiny broker and client library for MQTT messaging.
|
sentence=A lightweight broker and client Mqtt library for Arduino and ESP.
|
||||||
paragraph=A lightweight MQTT library for ESP8266 and ESP32, supporting MQTT 3.1.1 with QoS and allowing to create a Mqtt broker
|
paragraph=TinyMqtt supports MQTT 3.1.1 with QoS and allows to create a Mqtt broker
|
||||||
category=Communication
|
category=Communication
|
||||||
url=https://github.com/hsaturn/TinyMqtt
|
url=https://github.com/hsaturn/TinyMqtt
|
||||||
architectures=*
|
architectures=*
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
// vim: ts=2 sw=2 expandtab
|
// vim: ts=2 sw=2 expandtab
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define TINY_MQTT_REVISION "1.1.2"
|
#define TINY_MQTT_REVISION "1.1.3"
|
||||||
|
|
||||||
#ifndef TINY_MQTT_DEBUG
|
#ifndef TINY_MQTT_DEBUG
|
||||||
#define TINY_MQTT_DEBUG 0
|
#define TINY_MQTT_DEBUG 0
|
||||||
|
|||||||
Reference in New Issue
Block a user