From b4a839bd19f7b0d254a5903c96d92561f0e7e5ba Mon Sep 17 00:00:00 2001 From: Jens Bretschneider Date: Tue, 4 Aug 2026 23:52:38 +0200 Subject: [PATCH 1/4] Update index.md --- src/docs/devices/Athom-E27-7W-Bulb/index.md | 87 +-------------------- 1 file changed, 4 insertions(+), 83 deletions(-) diff --git a/src/docs/devices/Athom-E27-7W-Bulb/index.md b/src/docs/devices/Athom-E27-7W-Bulb/index.md index 3a9a09834..a2038aaf3 100644 --- a/src/docs/devices/Athom-E27-7W-Bulb/index.md +++ b/src/docs/devices/Athom-E27-7W-Bulb/index.md @@ -2,18 +2,18 @@ title: Athom E27 7W Bulb date-published: 2021-10-05 type: light -standard: us +standard: global board: esp8266 --- -Manufacturer: [Athom.tech](https://www.athom.tech/blank-1/7w-2-pack) - ## Flashing Procedure Natively runs Tasmota, upload ESPHome binary to flash wirelessly. ## Bulb Specifications +Manufacturer: [Athom.tech](https://www.athom.tech/) + Color: RGB+Warm+Cold White Color Temperature: 3000-6000K Brightness: 600 lumens @@ -37,84 +37,5 @@ Base: E27 ## Basic Configuration -```yaml -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 - -api: - -ota: - -logger: - -web_server: - port: 80 - -wifi: - ssid: !secret wifi_ssid - password: !secret wifi_password - ap: - -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: 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 - -text_sensor: - - platform: wifi_info - ip_address: - name: "${friendly_name} IP Address" - disabled_by_default: true +```yaml file=config.yaml ``` From 65ad6b516abd53c6285cb940fbb6002039d6ca75 Mon Sep 17 00:00:00 2001 From: Jens Bretschneider Date: Tue, 4 Aug 2026 23:53:20 +0200 Subject: [PATCH 2/4] Add config.yaml --- .../devices/Athom-E27-7W-Bulb/config.yaml | 57 +++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/docs/devices/Athom-E27-7W-Bulb/config.yaml diff --git a/src/docs/devices/Athom-E27-7W-Bulb/config.yaml b/src/docs/devices/Athom-E27-7W-Bulb/config.yaml new file mode 100644 index 000000000..4361bf4ec --- /dev/null +++ b/src/docs/devices/Athom-E27-7W-Bulb/config.yaml @@ -0,0 +1,57 @@ +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 + +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 From 1c4541af23ccb1edfe71c72d4d4b9318ad97f98c Mon Sep 17 00:00:00 2001 From: Jens Bretschneider Date: Wed, 5 Aug 2026 08:36:39 +0200 Subject: [PATCH 3/4] Update config.yaml --- src/docs/devices/Athom-E27-7W-Bulb/config.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/docs/devices/Athom-E27-7W-Bulb/config.yaml b/src/docs/devices/Athom-E27-7W-Bulb/config.yaml index 4361bf4ec..aab9502e9 100644 --- a/src/docs/devices/Athom-E27-7W-Bulb/config.yaml +++ b/src/docs/devices/Athom-E27-7W-Bulb/config.yaml @@ -1,19 +1,15 @@ 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 +logger: + binary_sensor: - platform: status name: "${friendly_name} Status" From 00d7e48feb2f188bdb059db35bde4af872f96061 Mon Sep 17 00:00:00 2001 From: Jens Bretschneider Date: Wed, 5 Aug 2026 13:35:16 +0200 Subject: [PATCH 4/4] Update config.yaml --- src/docs/devices/Athom-E27-7W-Bulb/config.yaml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/docs/devices/Athom-E27-7W-Bulb/config.yaml b/src/docs/devices/Athom-E27-7W-Bulb/config.yaml index aab9502e9..1c8906656 100644 --- a/src/docs/devices/Athom-E27-7W-Bulb/config.yaml +++ b/src/docs/devices/Athom-E27-7W-Bulb/config.yaml @@ -10,19 +10,6 @@ esp8266: logger: -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