Skip to content

Commit 60e4291

Browse files
committed
Update Readme to match current state
1 parent 0e6b51d commit 60e4291

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# EasyMqtt
22
Easy handling of Mqtt on esp8266
33

4-
This library is currentlly under heavy development.
4+
Including a web interface to se current values, and avalible topic, and a rest api
55

66
## Examble usage EasyMqtt
77
```C++
@@ -10,6 +10,10 @@ This library is currentlly under heavy development.
1010
EasyMqtt mqtt;
1111

1212
void setup() {
13+
// Setup wifi
14+
mqtt.wifi("ssid", "password");
15+
mqtt.mqtt("host", 1883, "user", "pass");
16+
1317
mqtt["foo"] << [](){ return String("bar"); };
1418
}
1519

0 commit comments

Comments
 (0)