We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e6b51d commit 60e4291Copy full SHA for 60e4291
README.md
@@ -1,7 +1,7 @@
1
# EasyMqtt
2
Easy handling of Mqtt on esp8266
3
4
-This library is currentlly under heavy development.
+Including a web interface to se current values, and avalible topic, and a rest api
5
6
## Examble usage EasyMqtt
7
```C++
@@ -10,6 +10,10 @@ This library is currentlly under heavy development.
10
EasyMqtt mqtt;
11
12
void setup() {
13
+ // Setup wifi
14
+ mqtt.wifi("ssid", "password");
15
+ mqtt.mqtt("host", 1883, "user", "pass");
16
+
17
mqtt["foo"] << [](){ return String("bar"); };
18
}
19
0 commit comments