eni23 / micronova-controller

This repo contains documentation and code to interface with pellet stoves based on Micronova controllers
GNU General Public License v3.0
15 stars 4 forks source link

Migrate project for ESP8266 #7

Closed ciao87 closed 1 year ago

ciao87 commented 1 year ago

Hello, how could I convert the project for ESP8266? In the src folder I don't see the file web_content.h.

eni23 commented 1 year ago

I doubt this project will be able to run on a ESP8266, not sure if the performance will be enough, and AFAIK the console library is not available for ESP32. Its probably easier and way cheaper to just buy a 5$ ESP32 board.

But to answer your question: The file web_content.h is dynamically created with the script tools/build-web.py (just run make or make upload) when building it with Platformio, which is a hard dependency to build it.

ciao87 commented 1 year ago

Thanks.