File tree Expand file tree Collapse file tree 5 files changed +6
-9
lines changed Expand file tree Collapse file tree 5 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,16 @@ void setup() {
16
16
} else {
17
17
return String (value);
18
18
}
19
- }
19
+ };
20
20
21
21
mqtt[" humidity" ] << []() {
22
- float value = dht.dht . readHumidity ();
22
+ float value = dht.readHumidity ();
23
23
if (isnan (value)) {
24
24
return String (" " );
25
25
} else {
26
26
return String (value);
27
27
}
28
- }
28
+ };
29
29
30
30
}
31
31
Original file line number Diff line number Diff line change @@ -35,9 +35,6 @@ <h1>Device Info - {device_id}</h1>
35
35
</ a > </ li >
36
36
< li role ="presentation "> < a href ="#input " aria-controls ="input " role ="tab " data-toggle ="tab ">
37
37
< span class ="glyphicon glyphicon-pencil " aria-hidden ="true "> </ span > Input
38
- </ a > </ li >
39
- < li role ="presentation "> < a href ="#config " aria-controls ="config " role ="tab " data-toggle ="tab ">
40
- < span class ="glyphicon glyphicon-cog " aria-hidden ="true "> </ span > Config
41
38
</ a > </ li >
42
39
< li role ="presentation "> < a href ="#about " aria-controls ="about " role ="tab " data-toggle ="tab ">
43
40
< span class ="glyphicon glyphicon-book " aria-hidden ="true "> </ span > About
Original file line number Diff line number Diff line change 7
7
#######################################
8
8
9
9
EasyMqtt KEYWORD1
10
- MqttMap KEYWORD1
10
+ MqttEntry KEYWORD1
11
11
12
12
#######################################
13
13
# Methods and Functions (KEYWORD2)
Original file line number Diff line number Diff line change 6
6
"type" : " git" ,
7
7
"url" : " https://github.com/bloft/EasyMqtt.git"
8
8
},
9
- "version" : " 0.2 " ,
9
+ "version" : " 0.3 " ,
10
10
"exclude" : " tests" ,
11
11
"examples" : " examples/*/*.ino" ,
12
12
"frameworks" : " arduino" ,
Original file line number Diff line number Diff line change 1
1
name =EasyMqtt
2
- version =0.2
2
+ version =0.3
3
3
author =Bjarne Loft <
[email protected] >
4
4
maintainer =Bjarne Loft <
[email protected] >
5
5
sentence =A wrapper library for using mqtt on the ESP8266
You can’t perform that action at this time.
0 commit comments