devices.esphome.io

Athom BR30 Bulb

Athom BR30 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: 1000 lumens Voltage: 110V~250V Power: 12W Base: E27

Product Images

Athom BR30 Bulb

GPIO Pinout

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

Basic Configuration

substitutions:
device_name: "athom-rgbct-light"
friendly_name: "Athom RGBCT Light"
project_name: "athom.rgbct-light"
project_version: "1.0"
esphome:
name: "${device_name}"
name_add_mac_suffix: true
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:
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: white_output
pin: GPIO5
- platform: esp8266_pwm
id: ct_output
inverted: true
pin: GPIO13
light:
- platform: rgbct
restore_mode: RESTORE_DEFAULT_ON
name: "${friendly_name}"
red: red_output
green: green_output
blue: blue_output
white_brightness: white_output
color_temperature: ct_output
cold_white_color_temperature: 153 mireds
warm_white_color_temperature: 500 mireds
color_interlock: true
Edit this page on GitHub