Skip to content

ESP32 driven sprinkler controller using micropython with web UI, scheduling, and MQTT integration for home assistant.

Notifications You must be signed in to change notification settings

TannerNelson16/sprinkler_controller

Repository files navigation

Introduction:

Smart irrigation controllers are overpriced and lack customizability so I set out to develop a simple and easy to use solution that is also robust and reliable. The intellidwell sprinkler controller uses custom micropython firmware developed for the ESP32. A localized server that runs right on the microcontroller allows for scheduling, smart phone control, and integration with smart home systems via MQTT. Solid state relays provide extrememely reliable switching of 24VAC solenoid sprinkler valves. A custom 24VAC to 5VDC (variable via a potentiometer) converter allows the logic to be powered from the same source as the sprinkler valve power.

Components used:

Web UI:

Installation:

FOR LINUX:

First install the micropython environment on your ESP32. Here's the official documentation: https://docs.micropython.org/en/latest/esp32/tutorial/intro.html

For the condensed version:

pip install esptool
  • From the folder where the micropython file is located, run the following commands:
esptool.py --chip esp32 --port /dev/ttyUSB0 erase_flash
esptool.py --chip esp32 --port /dev/ttyUSB0 --baud 460800 write_flash -z 0x1000 ESP32_GENERIC-20240222-v1.22.2.bin

Once micropython has been successfully installed on the board, download the files in the repository navigate to it's folder.

Once this is complete, save the file and run the following commands:

pip install adafruit-ampy
ampy --port /dev/ttyUSB0 put index.html
ampy --port /dev/ttyUSB0 put scheduler.html
ampy --port /dev/ttyUSB0 put logs.html
ampy --port /dev/ttyUSB0 put settings.html
ampy --port /dev/ttyUSB0  put microdot.py
ampy --port /dev/ttyUSB0  put microdot_asyncio.py
ampy --port /dev/ttyUSB0  put controller.py /main.py

Reboot and connect to the "intellidwellSC" SSID with password "Sprinkler12345" from any device. In a browser type in 192.168.4.1 to access the sprinkler controller UI.

To connect to a Wifi Network navigate to "Settings" on the main page and enter in your WiFi credentials. You can also input your MQTT credentials here if you wish. When the device is rebooted, you can access the UI from the hostname http://sprinklers.local on your network, the IP address of the device, or from your homeassitant instance via the MQTT integration.

NOTE: If the network is unavailable, the ESP32 will first try to connect without the MQTT integration. If the network is still causing errors, the ESP32 will resume AP mode to allow for control of the sprinkler system.

Enclosure:

Assembly:

PCB:

Final Product Images: -

Support This Project

If you like this project, consider supporting it with a donation!

Donate via Stripe

About

ESP32 driven sprinkler controller using micropython with web UI, scheduling, and MQTT integration for home assistant.

Resources

Stars

Watchers

Forks

Packages

No packages published