Added: text_sensor beep on/of

This commit is contained in:
Mathijs 2021-12-20 15:31:47 +01:00 committed by GitHub
parent dceac9c757
commit 2ca40b4971
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,12 +16,16 @@ wifi:
captive_portal: captive_portal:
logger: logger:
ota:
password: !secret ESP_HOME_API
api: api:
password: !secret ESP_HOME_API password: !secret ESP_HOME_API
encryption: encryption:
key: !secret ESPhome_encryption key: !secret ESPhome_encryption
####################################################################################################
## rtttl services
####################################################################################################
services: services:
- service: play_rtttl - service: play_rtttl
variables: variables:
@ -29,13 +33,14 @@ api:
then: then:
- rtttl.play: - rtttl.play:
rtttl: !lambda 'return song_str;' rtttl: !lambda 'return song_str;'
####################################################################################################
ota: ## rtttl
password: !secret ESP_HOME_API ####################################################################################################
rtttl: rtttl:
output: buzzer output: buzzer
####################################################################################################
## sensor
####################################################################################################
sensor: sensor:
- platform: wifi_signal - platform: wifi_signal
name: ${devicename} WiFi name: ${devicename} WiFi
@ -49,7 +54,14 @@ sensor:
min_value: 0 min_value: 0
max_value: 40 max_value: 40
resolution: 2 resolution: 2
####################################################################################################
## text_sensor
####################################################################################################
text_sensor:
- platform: homeassistant
name: "beep"
id: beep
entity_id: input_boolean.the_football_beep
#################################################################################################### ####################################################################################################
## Light ## Light
#################################################################################################### ####################################################################################################
@ -204,7 +216,6 @@ output:
- platform: ledc - platform: ledc
pin: GPIO13 pin: GPIO13
id: buzzer id: buzzer
###################################################################### ######################################################################
## The binary lights (output) ## The binary lights (output)
###################################################################### ######################################################################
@ -228,7 +239,6 @@ output:
pin: GPIO0 pin: GPIO0
id: "output_D5" id: "output_D5"
inverted: False inverted: False
#################################################################################################### ####################################################################################################
## The buttons/switches ## The buttons/switches
#################################################################################################### ####################################################################################################
@ -306,7 +316,6 @@ binary_sensor:
on_release: on_release:
then: then:
- rtttl.play: 'beep:d=4,o=5,b=200:16e6' - rtttl.play: 'beep:d=4,o=5,b=200:16e6'
###################################################################### ######################################################################
## D ## D
###################################################################### ######################################################################
@ -355,4 +364,3 @@ binary_sensor:
on_press: on_press:
then: then:
- rtttl.play: 'beep:d=4,o=5,b=200:16e6' - rtttl.play: 'beep:d=4,o=5,b=200:16e6'