Skip to content

lassefyr/esp32_homeheater

Repository files navigation

esp32_homeheater

Program your board using the esptool.py program.

Windows programming

esptool --chip esp32 --port COM3 erase_flash esptool --chip esp32 --port COM3 --baud 460800 write_flash -z 0x1000 esp32-20230426-v1.20.0.bin

espefuse summary --chip esp32 --port COM4 esptool --chip esp32 --port COM4 erase_flash esptool --chip esp32 --port COM4 --baud 460800 write_flash -z 0x1000 esp32-20230426-v1.20.0.bin

UNIX programming

esptool.py --chip esp32 --port /dev/ttyUSB0 erase_flash esptool.py --chip esp32 --port /dev/ttyUSB0 --baud 460800 write_flash -z 0x1000 esp32-20230426-v1.20.0.bin

Make bytecode files

INSTALL UTEMPLATE

Thonny ->tools>manage packages install utemplate

Installed version: 1.4.1 Installed to: /lib

Latest stable version: 1.4.1 Summary: Very lightweight, memory-efficient, dependency-free template engine (compiles to Python source). Author: Paul Sokolovsky License: MIT

Creates LIB directory to your device. Contains utemplate and utemplate-1.4.1.dist-info directories

secrets.py

Add secrets.py directly on your esp32 device.
This file should contain the following two lines

SSID = "MY_WIFI_NETWORK_NAME"
PASSWORD = "MY_WIFI_PASSWORD"

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages