esphome RGB Bulbs and Fly Sprayer

This commit is contained in:
root
2025-09-10 21:07:31 +12:00
parent 04b7d53b6f
commit a27b79fbd9
10 changed files with 1441 additions and 120 deletions
+9 -7
View File
@@ -1,8 +1,8 @@
##########################################################################################
##########################################################################################
# 4 Channel DMX Mains Dimmer
# This is using an esp8366 (D1 Mini) sensing DMX512 Serial to a 2 channel
# mains lighting contoller (1.2A/Channel)
# This is using an esp8366 (D1 Mini) sending DMX512 Serial to a pair of 2 channel
# mains lighting contollers (1.2A/Channel)
#
# Contoller: https://www.aliexpress.com/item/32838426377.html
# RS-485 TTL converter: https://www.aliexpress.com/item/1005005737922222.html
@@ -18,6 +18,8 @@
# - The dimmer needs to be set to DMX mode, and given an ID of 1-999 (not standalone or dynamic)
# - there is no reason you can't run many dimmers off one ESP (limit may be in data speed lags?)
# - The dimmer is pretty smooth, and it remembers values even if no data being transmitted.
# - On my system, I am restoring all channels to ON. Power is controlled by a (smart) wallswitch
# so if all networks fail, switching the switch will power these on and restore to full brightness.
#
# System Settings on Dimmer: (onboard buttons M and < held for 2 secs)
# ------
@@ -56,7 +58,7 @@ substitutions:
# Device Naming
device_name: "esp-4chdmxdimmer1"
friendly_name: "4 Channel DMX Dimmer 1"
description_comment: "4 Channel Mains Lighting Dimmer using DMX512 protocol"
description_comment: "Lounge 4 Channel Mains Lighting Dimmer using DMX512 protocol"
device_area: "Lounge" # Allows ESP device to be automatically linked to an 'Area' in Home Assistant.
# Project Naming
@@ -186,28 +188,28 @@ light:
id: light_test_1
default_transition_length: 5s
gamma_correct: 1
restore_mode: RESTORE_DEFAULT_ON
restore_mode: ALWAYS_ON
- platform: monochromatic
name: "Test Lights Chan 2"
output: dmx_2
id: light_test_2
default_transition_length: 5s
gamma_correct: 1
restore_mode: RESTORE_DEFAULT_ON
restore_mode: ALWAYS_ON
- platform: monochromatic
name: "Test Lights Chan 3"
output: dmx_3
id: light_test_3
default_transition_length: 5s
gamma_correct: 1
restore_mode: RESTORE_DEFAULT_ON
restore_mode: ALWAYS_ON
- platform: monochromatic
name: "Test Lights Chan 4"
output: dmx_4
id: light_test_4
default_transition_length: 5s
gamma_correct: 1
restore_mode: RESTORE_DEFAULT_ON
restore_mode: ALWAYS_ON
##########################################################################################
# SENSOR COMPONENT