devices.esphome.io

Holman RGB Wifi Connected Controller

Holman RGB Wifi Connected Controller

Device Type: light
Electrical Standard: au
Board: esp8266

General Notes

Available from Bunnings

Uses TYWE3L module. Can be programmed without removing from PCB.

Holman RGB Controller

GPIO Pinout

PinFunction
GPIO0Panel Button
GPIO12PWM Green
GPIO13PWM Red
GPIO14PWM Blue

Status LED Not Implemented

The user manual says that the power led on the panel will flash on initialisation (wifi status?). I have not been able to determine what pin this led is connected so this configuration does not support status_led.

Configuration

substitutions:
name: "rgb-01"
friendly_name: "RGB 01"
project_name: "holman.CLXRGB60"
project_version: "1.0"
device_description: "RGB Light"
esphome:
name: "${name}"
comment: "${device_description}"
project:
name: "${project_name}"
version: "${project_version}"
esp8266:
board: esp01_1m
# OTA flashing
ota:
- platform: esphome
wifi: # Your Wifi network details
# Enable fallback hotspot in case wifi connection fails
ap:
# Enabling the logging component
logger:
# Enable Home Assistant API
api:
# Enable the captive portal
captive_portal:
binary_sensor:
# Front Panel On/Off
- platform: gpio
pin:
number: GPIO0
inverted: true
mode:
input: true
pullup: true
name: "${friendly_name} Panel Button"
id: panelButton
on_click:
min_length: 50ms
max_length: 350ms
then:
- light.toggle: rgbLight
light:
- platform: rgb
name: "RGB Lights"
red: output_component_red
green: output_component_green
blue: output_component_blue
effects:
# Use default parameters:
- random:
# Customize parameters
- random:
name: "Slow Random Effect"
transition_length: 30s
update_interval: 30s
- random:
name: "Fast Random Effect"
transition_length: 4s
update_interval: 5s
- pulse:
- pulse:
name: "Fast Pulse"
transition_length: 0.5s
update_interval: 0.5s
- pulse:
name: "Slow Pulse"
# transition_length: 1s # defaults to 1s
update_interval: 2s
- strobe:
- strobe:
name: Strobe Effect With Custom Values
colors:
- state: true
brightness: 100%
red: 100%
green: 90%
blue: 0%
duration: 500ms
- state: false
duration: 250ms
- state: true
brightness: 100%
red: 0%
green: 100%
blue: 0%
duration: 500ms
- flicker:
- flicker:
name: Flicker Effect With Custom Values
alpha: 95%
intensity: 1.5%
output:
- platform: esp8266_pwm
id: output_component_red
pin: GPIO13
- platform: esp8266_pwm
id: output_component_green
pin: GPIO12
- platform: esp8266_pwm
id: output_component_blue
pin: GPIO14
button:
- platform: restart
id: restart_button
name: "${friendly_name} Restart"
disabled_by_default: true
Edit this page on GitHub