devices.esphome.io
Mirabella Genio Wi-Fi SES LED Candle
Mirabella Genio Wi-Fi SES LED Candle
Device Type: lightElectrical Standard: auBoard: esp8266
General Notes
This is for Mirabella Genio Wi-Fi SES LED Candle.
GPIO Pinout
| Pin | Function |
|---|---|
| GPIO12 | Light - Warm White |
| GPIO12 | Light - Cool White |
Basic Configuration
# Basic Config# https://mirabellagenio.net.au/ses-led-candleesphome: name: mirabella_1 on_boot: priority: 100 # Highest priority, ensures light turns on without delay. then: - light.turn_on: light
esp8266: board: esp01_1m # OTA flashingota: - platform: esphome
wifi: # Your Wifi network details # Enable fallback hotspot in case wifi connection fails ap:
# Enabling the logging componentlogger:
# Enable Home Assistant APIapi:
# Enable the captive portalcaptive_portal:
# Enable the Web Server component webserver:
output: - platform: esp8266_pwm id: output_warm_white pin: GPIO12 - platform: esp8266_pwm id: output_daylight pin: GPIO14
light: - platform: cwww name: "LED Candle" cold_white: output_daylight warm_white: output_warm_white cold_white_color_temperature: 6500 K warm_white_color_temperature: 2700 K
# Ensure the light turns on by default if the physical switch is actuated. restore_mode: ALWAYS_ON