Device Type:sensor
Electrical Standard:global
Board:esp32
Difficulty:Plug-n-flash (2/5)
Project URL:https://sulfuroid.gumroad.com/l/hydroponics
ESP-Hydropony Light Monitor
ESP-Hydropony Light Monitor
The ESP-Hydropony Light Monitor is a Wi-Fi enabled lux sensor designed for hydroponic and indoor growing environments.
The device measures ambient light using a BH1750 sensor and exposes the value locally over HTTP. It is designed for users who prefer local-only monitoring without cloud dependency.
Images
Assembled device

PCB

Lux display

ESPHome Integration
The device exposes a JSON endpoint at /json returning a numeric lux value.
Example response
{
"lux": 1234.5
}
sensor:
- platform: rest
name: "Hydropony Lux"
resource: http://DEVICE_IP/json
value_template: "{{ value_json.lux }}"
unit_of_measurement: "lx"
device_class: illuminance
scan_interval: 10s