devices.esphome.io
Mirabella Genio White Bulb
Mirabella Genio White Bulb
Device Type: lightElectrical Standard: auBoard: esp8266
GPIO Pinout
| Pin | Function | |---------|------------------------------------| | | GPIO13 | Light |
Basic Configuration
# Basic Config# https://mirabellagenio.net.au/es-%2F-bc-cool-white-specsesphome:  name: mirabella_1  platform: ESP8266  board: esp01_1m  on_boot:    priority: 100 # Highest priority, ensures light turns on without delay.    then:      - light.turn_on: lightwifi:  ssid: "sid"  password: "wifi_password"  ap:    ssid: "mirabella1"    password: "ap_password"  domain: ".mydomain.com"
# Enable logginglogger:
# Enable Home Assistant APIapi:  encryption:    key: !secret encryption_key
ota:  password: "ota_password"
web_server:  port: 80sensor:  - platform: wifi_signal    name: "Mirabella 1 WiFi Signal"    update_interval: 60s
switch:  - platform: restart    name: "Mirabella 1 Restart"
output:  - platform: esp8266_pwm    id: output1    pin: GPIO13
light:  - platform: monochromatic    name: "Mirabella_1 Light"    output: output1    id: light