Is this project still alive?
I tried using this on ESP8266 nodemcu but facing multiple issues.
-
Unable to connect to the board post uploading the code.

-
I post my API key and connect to the BB monitor app in sketches but i am getting an error when i try to download the ESP sketch

-
When i run the server locally, the temp sensor works fine but the when i try to trigger the relays, i am getting an error.

Hello,
Changelog has bene updated recently and the instagram just posted a picture a few days ago however I have tried to contact via IG and did not get an answer.
I am also facing your issue with triggering relay using an ESP8266 so it seems to be more a code issues than us. Have you managed to solve it ?
Hello,
Changelog has bene updated recently and the instagram just posted a picture a few days ago however I have tried to contact via IG and did not get an answer.
I am also facing your issue with triggering relay using an ESP8266 so it seems to be more a code issues than us. Have you managed to solve it ?
Not yet. I have given up on this for now. I had tried this on both ESP32 & ESP8266 but no luck. Let me know if you make some sort of progress.
BTW if you are unable to download the sketches(e.g. i wasnt able to download the APP sketch for ESP), download this repo and check in this folder - .\monitor\arduino\BrewBenchAppESP32. The app thing gets configured correctly but again no communication happening between ESP and the BB server.
For anyone that still has this problem. There is an error in the code that is generated by the website, it's missing the handle for the digital pins. Inside the setupRest() function, add these lines:
server.on("/arduino/digital", [](){
sendHeaders();
processRest("digital");
});
That should fix it!