devices.esphome.io
Mirabella Genio RGBW Color Bulbs
Mirabella Genio RGBW Color Bulbs
Device Type: lightElectrical Standard: globalBoard: esp8266
The Mirabella Genio is a Tuya-based smart bulb sold by Kmart in Australia.
Basic Configuration
esphome: name: example-device friendly_name: Example Device
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:
output: - platform: esp8266_pwm id: output_red pin: GPIO4 - platform: esp8266_pwm id: output_green pin: GPIO12 - platform: esp8266_pwm id: output_blue pin: GPIO14 - platform: esp8266_pwm id: output_white pin: GPIO5
light: - platform: rgbw name: "rgbw_e27_01" id: light red: output_red green: output_green blue: output_blue white: output_white
# Ensure the light turns on by default if the physical switch is actuated. restore_mode: ALWAYS_ON