Skip to content

Commit 2956f29

Browse files
committed
bump version
1 parent 7444034 commit 2956f29

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Espalexa.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*/
1111
/*
1212
* @title Espalexa library
13-
* @version 2.6.0
13+
* @version 2.7.0
1414
* @author Christian Schwinne
1515
* @license MIT
1616
* @contributors d-999
@@ -49,7 +49,7 @@
4949
#include <WiFiUdp.h>
5050

5151
#ifdef ESPALEXA_DEBUG
52-
#pragma message "Espalexa 2.6.0 debug mode"
52+
#pragma message "Espalexa 2.7.0 debug mode"
5353
#define EA_DEBUG(x) Serial.print (x)
5454
#define EA_DEBUGLN(x) Serial.println (x)
5555
#else
@@ -161,7 +161,7 @@ class Espalexa {
161161

162162
sprintf_P(buf, PSTR("{\"state\":{\"on\":%s,\"bri\":%u%s%s,\"alert\":\"none%s\",\"mode\":\"homeautomation\",\"reachable\":true},"
163163
"\"type\":\"%s\",\"name\":\"%s\",\"modelid\":\"%s\",\"manufacturername\":\"Philips\",\"productname\":\"E%u"
164-
"\",\"uniqueid\":\"%s\",\"swversion\":\"espalexa-2.6.0\"}")
164+
"\",\"uniqueid\":\"%s\",\"swversion\":\"espalexa-2.7.0\"}")
165165

166166
, (dev->getValue())?"true":"false", dev->getLastValue()-1, buf_col, buf_ct, buf_cm, typeString(dev->getType()),
167167
dev->getName().c_str(), modelidString(dev->getType()), static_cast<uint8_t>(dev->getType()), buf_lightid);
@@ -186,7 +186,7 @@ class Espalexa {
186186
}
187187
res += "\r\nFree Heap: " + (String)ESP.getFreeHeap();
188188
res += "\r\nUptime: " + (String)millis();
189-
res += "\r\n\r\nEspalexa library v2.6.0 by Christian Schwinne 2021";
189+
res += "\r\n\r\nEspalexa library v2.7.0 by Christian Schwinne 2021";
190190
server->send(200, "text/plain", res);
191191
}
192192
#endif

0 commit comments

Comments
 (0)