Skip to content

Commit 4191396

Browse files
committed
Update version number
1 parent 8de7030 commit 4191396

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

examples/temperature/temperature.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ void setup() {
1616
} else {
1717
return String(value);
1818
}
19-
}
19+
};
2020

2121
mqtt["humidity"] << []() {
22-
float value = dht.dht.readHumidity();
22+
float value = dht.readHumidity();
2323
if(isnan(value)) {
2424
return String("");
2525
} else {
2626
return String(value);
2727
}
28-
}
28+
};
2929

3030
}
3131

html/template.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ <h1>Device Info - {device_id}</h1>
3535
</a></li>
3636
<li role="presentation"><a href="#input" aria-controls="input" role="tab" data-toggle="tab">
3737
<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
4138
</a></li>
4239
<li role="presentation"><a href="#about" aria-controls="about" role="tab" data-toggle="tab">
4340
<span class="glyphicon glyphicon-book" aria-hidden="true"></span> About

keywords.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#######################################
88

99
EasyMqtt KEYWORD1
10-
MqttMap KEYWORD1
10+
MqttEntry KEYWORD1
1111

1212
#######################################
1313
# Methods and Functions (KEYWORD2)

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "git",
77
"url": "https://github.com/bloft/EasyMqtt.git"
88
},
9-
"version": "0.2",
9+
"version": "0.3",
1010
"exclude": "tests",
1111
"examples": "examples/*/*.ino",
1212
"frameworks": "arduino",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=EasyMqtt
2-
version=0.2
2+
version=0.3
33
author=Bjarne Loft <[email protected]>
44
maintainer=Bjarne Loft <[email protected]>
55
sentence=A wrapper library for using mqtt on the ESP8266

0 commit comments

Comments
 (0)