devices.esphome.io

Athom GU10 Bulb

Athom GU10 Bulb

Device Type: light
Electrical Standard: us
Board: esp8266

Manufacturer: Athom.tech

Flashing Procedure

Natively runs Tasmota, upload ESPHome binary to flash wirelessly.

Bulb Specifications

Color: RGB+Warm+Cold White Color Temperature: 3000-6000K Brightness: 300 lumens Voltage: 110V~240V Power: 4.5W Base: GU10

Product Images

Athom GU10 Bulb

GPIO Pinout

PinFunction
GPIO13CT Output
GPIO5CT Brightness Output
GPIO4Red Output
GPIO12Green Output
GPIO14Blue Output

Basic Configuration

substitutions:
device_name: "athom-rgbww-light"
friendly_name: "Athom RGBWW Light"
project_name: "athom.rgbww-light"
project_version: "1.0"
esphome:
name: "${device_name}"
name_add_mac_suffix: true
project:
name: "${project_name}"
version: "${project_version}"
esp8266:
board: esp8285
# 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:
binary_sensor:
- platform: status
name: "${friendly_name} Status"
sensor:
- platform: uptime
name: "${friendly_name} Uptime Sensor"
switch:
- platform: restart
id: restart_switch
name: "${friendly_name} Restart"
output:
- platform: esp8266_pwm
id: red_output
pin: GPIO4
- platform: esp8266_pwm
id: green_output
pin: GPIO12
- platform: esp8266_pwm
id: blue_output
pin: GPIO14
- platform: esp8266_pwm
id: warm_white_output
pin: GPIO13
- platform: esp8266_pwm
id: white_output
pin: GPIO5
light:
- platform: rgbww
name: "${friendly_name}"
red: red_output
green: green_output
blue: blue_output
warm_white: warm_white_output
cold_white: white_output
cold_white_color_temperature: 6000 K
warm_white_color_temperature: 3000 K
color_interlock: true
Edit this page on GitHub