monitor icon indicating copy to clipboard operation
monitor copied to clipboard

Is this project still alive?

Open ranasaurus9 opened this issue 4 years ago • 3 comments

I tried using this on ESP8266 nodemcu but facing multiple issues.

  1. Unable to connect to the board post uploading the code. image

  2. 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 image image

  3. 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. image

ranasaurus9 avatar Jan 12 '22 11:01 ranasaurus9

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 ?

Glider95 avatar Jan 23 '22 12:01 Glider95

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.

ranasaurus9 avatar Jan 25 '22 12:01 ranasaurus9

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!

nmadariagas avatar Sep 11 '22 18:09 nmadariagas