Skip to content

Commit 59058b3

Browse files
committed
(2.6.0) Fixed Groups
1 parent f9079bb commit 59058b3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Espalexa",
3-
"version": "2.5.0",
3+
"version": "2.6.0",
44
"frameworks": "Arduino",
55
"keywords": "alexa, esp32, esp8266, control, dimming, echo, color, async",
66
"description": "Library to control an ESP module with the Alexa voice assistant",

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Espalexa
2-
version=2.5.0
2+
version=2.6.0
33
author=Christian Schwinne
44
maintainer=Christian Schwinne
55
sentence=Library to control an ESP module with the Alexa voice assistant

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.5.0
13+
* @version 2.6.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.5.0 debug mode"
52+
#pragma message "Espalexa 2.6.0 debug mode"
5353
#define EA_DEBUG(x) Serial.print (x)
5454
#define EA_DEBUGLN(x) Serial.println (x)
5555
#else
@@ -173,7 +173,7 @@ class Espalexa {
173173

174174
sprintf_P(buf, PSTR("{\"state\":{\"on\":%s,\"bri\":%u%s%s,\"alert\":\"none%s\",\"mode\":\"homeautomation\",\"reachable\":true},"
175175
"\"type\":\"%s\",\"name\":\"%s\",\"modelid\":\"%s\",\"manufacturername\":\"Philips\",\"productname\":\"E%u"
176-
"\",\"uniqueid\":\"%s\",\"swversion\":\"espalexa-2.5.0\"}")
176+
"\",\"uniqueid\":\"%s\",\"swversion\":\"espalexa-2.6.0\"}")
177177

178178
, (dev->getValue())?"true":"false", dev->getLastValue()-1, buf_col, buf_ct, buf_cm, typeString(dev->getType()),
179179
dev->getName().c_str(), modelidString(dev->getType()), static_cast<uint8_t>(dev->getType()), buf_lightid);
@@ -198,7 +198,7 @@ class Espalexa {
198198
}
199199
res += "\r\nFree Heap: " + (String)ESP.getFreeHeap();
200200
res += "\r\nUptime: " + (String)millis();
201-
res += "\r\n\r\nEspalexa library v2.5.0 by Christian Schwinne 2020";
201+
res += "\r\n\r\nEspalexa library v2.6.0 by Christian Schwinne 2021";
202202
server->send(200, "text/plain", res);
203203
}
204204
#endif

0 commit comments

Comments
 (0)