Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions Integrations/ESPHome/Core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ api:
- delay: 1s
- light.turn_off: rgb_light
- lambda: 'id(cycleCounter) = 30;'
services:
- service: play_buzzer
actions:
- action: play_buzzer
variables:
song_str: string
then:
- rtttl.play:
rtttl: !lambda 'return song_str;'

#Co2 Calibration Service
- service: calibrate_co2_value
#Co2 Calibration Action
- action: calibrate_co2_value
variables:
co2_ppm: float
then:
Expand All @@ -34,7 +34,7 @@ api:
id: scd40

#Setting HLK Password
- service: set_ld2410_bluetooth_password
- action: set_ld2410_bluetooth_password
variables:
password: string
then:
Expand Down Expand Up @@ -649,6 +649,20 @@ text_sensor:
- platform: ld2410
version:
name: "Radar Firmware Version"
- platform: wifi_info
ip_address:
name: "IP Address"
id: wifi_ip
- platform: version
name: "ESPHome Version"
hide_timestamp: true
entity_category: "diagnostic"
- platform: template
name: "Apollo Firmware Version"
id: apollo_firmware_version
lambda: |-
return {"${version}"};
entity_category: "diagnostic"

select:
- platform: ld2410
Expand Down