Christian Schwinne
Christian Schwinne
Hi! I do not claim to fully comprehend your code, however `digitalWrite(terceraluz , HIGH);` is definitely wrong. `terceraluz` is the EspalexaDevice, not the pin number. You probably want `digitalWrite(RelayPin3, HIGH);`...
Hi again, just tested this out. Apparently with 8266 2.3.0 everything works, while 2.4.0 causes the "always ON, 255 brightness" behavior you described. The WebServer discovery issue seems also to...
After doing some changes to the code because of the other issue, the library version 2.1.0 now seems to work without problems with esp8266 2.4.0. The basic example works perfectly...
Ok, since I now can't reproduce the problem, may I ask you for the serial output log of the basic example? (a part of it during you trying to turn...
There are good and bad news: The good news: I've identified the problem. The Echo sends a HTTP PUT request with the JSON `{"on":false}` (for example). However, it (wrongly) uses...
While looking for a solution, I found an issue in the 8266 core repo. Seems like developers of a similar project came across the same issue which also confirms this...
As for your question for why 2.3.0 works, they changed quite a few things around for the 2.4.0. I believe it has something to do with that 2.4.0 discards empty...
Hi! For Linux you'd need to figure out the directory the Arduino IDE local application data is saved in. The last part of the folder structure "libraries\esp8266\2.4.0\libraries\ESP8266WebServer\src" should be the...
Keep in mind that it is a beta version and there might be a new related issue. The Alexa workaround was supposed to be implemented in v2.5.0, which it already...
Hi, technically Espalexa already does implement (parts of) a REST API, namely the v1 Philips Hue API, which is emulated to allow control by Alexa. Other than that, a more...