mirror of
https://github.com/Mathijs0/The_Football.git
synced 2024-11-20 16:20:18 +01:00
Added: text_sensor beep on/of
This commit is contained in:
parent
dceac9c757
commit
2ca40b4971
1 changed files with 20 additions and 12 deletions
|
@ -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'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue