devices.esphome.io

Mirabella Genio Wi-Fi SES LED Candle

Mirabella Genio Wi-Fi SES LED Candle

Device Type: light
Electrical Standard: au
Board: esp8266

General Notes

This is for Mirabella Genio Wi-Fi SES LED Candle.

Genio Wi-Fi SES LED Candle

GPIO Pinout

PinFunction
GPIO12Light - Warm White
GPIO12Light - Cool White

Basic Configuration

# Basic Config
# https://mirabellagenio.net.au/ses-led-candle
esphome:
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 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:
# 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
Edit this page on GitHub