Skip to content

Commit 7c69610

Browse files
committed
Switch to frontend to amChart
1 parent f6f08f2 commit 7c69610

3 files changed

Lines changed: 206 additions & 214 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
* [ESP8266 WiFi Connection manager with web captive portal](https://github.com/tzapu/WiFiManager)
1111
* [Extremely simple tar extractor Arduino library](https://github.com/emelianov/untarArduino)
1212
* [ESP8266Ping with Async extension](https://github.com/emelianov/ESP8266Ping)
13+
* [Alexa voice control for ESP8266/ESP32 (including brightness and color!)](https://github.com/Aircoookie/Espalexa)
1314

1415
### Release notes
1516

16-
* Current version is tested only with ESP8266 Core for Arduino 2.4.2. To build with releases prior to 2.4 comment `MACOS` definition in `discoverh.h`.
17+
* Current version is tested only with ESP8266 Core for Arduino 2.4.2.
1718

1819
* Pull Up D8 for 3 seconds starts network configuration and activates open Access Point. Warning! Socket switching operations are suspended while configuration mode is active.
1920

alexa.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ void anyFile(); //From web.h
3737
uint32_t initAlexa() {
3838
server.onNotFound([](){
3939
if (!espalexa.handleAlexaApiCall(server.uri(),server.arg(0))) {
40-
//server.send(404, "text/plain", "Not found");
4140
anyFile();
4241
}
4342
});
@@ -52,7 +51,6 @@ uint32_t initAlexa() {
5251
espalexa.addDevice(ID_CHAN_8, chChanged<7>);
5352

5453
espalexa.begin(&server);
55-
5654
taskAdd(alexaLoop);
5755
return RUN_DELETE;
5856
}

0 commit comments

Comments
 (0)