Hey Folks,
Just wanted to thanks all those that have worked on this.
I have this chandelier
with this remote
It has Warn White, Cool White, & diming capability. (Main light)
It also has 4 LED downlights not dimable - switched separately to main light using top left button on remote - (Lets call the “second lights” - can just see 2 of the 4 them in the picture)
I was able to get it working with:
- a Lolin_s3_mini (ESP32-S3FH4R2 - https://www.wemos.cc/en/latest/s3/s3_mini.html)
- using flicker581 variant: v1a
- and this this ESP home code
substitutions:
device_name: s3mini01
friendly_name: Chandelier Remote
esphome:
name: $device_name
friendly_name: $friendly_name
platformio_options:
build_flags: [
"-DBOARD_HAS_PSRAM"
,"-DARDUINO_LOLIN_S3_MINI"
]
esp32:
board: lolin_s3_mini
variant: esp32s3
framework:
type: arduino
version: 2.0.8
platform_version: 6.3.2
flash_size: 4MB
# Enable logging
logger:
# level: VERY_VERBOSE
# Enable Home Assistant API
api:
encryption:
key: <mykey>
ota:
password: <mypassword>
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
output_power: 10
use_address: 192.168.30.29
domain: .home
fast_connect: yes
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "s3mini01 Fallback Hotspot"
password: !secret fallback_wifi_password
captive_portal:
web_server:
port: 80
#LampSmart Pro
external_components:
source: github://flicker581/esphome-lampsmart
lampsmart_pro_light:
light:
#- platform: lampsmart_pro_light
# name: V3 light
# duration: 200
# #default:
# #variant: v3
#- platform: lampsmart_pro_light
# name: V2 light
# duration: 200
# default_transition_length: 0s
# variant: v2
- platform: lampsmart_pro_light
name: Chandelier
duration: 200
default_transition_length: 0s
variant: v1a
icon: mdi:chandelier
restore_mode: RESTORE_DEFAULT_ON
#- platform: lampsmart_pro_light
# name: V1bLight
# duration: 200
# default_transition_length: 0s
# variant: v1b
button:
- platform: restart
name: Restart
entity_category: diagnostic
sensor:
- platform: wifi_signal
name: 'WiFi Signal'
entity_category: diagnostic
- platform: uptime
name: 'Uptime'
entity_category: diagnostic
unit_of_measurement: s
text_sensor:
- platform: version
name: 'ESPHome Version'
entity_category: diagnostic
- platform: wifi_info
ip_address:
name: WiFi IP Address
entity_category: diagnostic
ssid:
name: WiFi SSID
entity_category: diagnostic
mac_address:
name: WiFi MAC Address
entity_category: diagnostic
dns_address:
name: WiFi DNS Address
entity_category: diagnostic
My Question is:
Does anyone know what changes I would need to make to enable the “second light” as a separate ESPHome switch? i.e. the 4 down lights.
