try the impossible thing

This commit is contained in:
neri 2024-03-02 02:32:18 +01:00
parent aa73c8b4c6
commit 16ae23c54a
1 changed files with 9 additions and 5 deletions

View File

@ -106,13 +106,13 @@ rc522_spi:
return ((std::string) "https://vault.ctdo.de/v1/maschinenlock/" + id(my_tag));
headers:
X-Vault-Token: !lambda return id(my_token).c_str();
verify_ssl: false
on_response:
# when found, check if machine is allowed, turn on output or blink LED red
then:
- if:
condition:
lambda: 'return status_code == 200;'
then:
then: # when found, check if machine is allowed, turn on output or blink LED red
- lambda: |-
json::parse_json(id(http_request_data).get_string(), [](JsonObject root) {
id(may_switch_output) = root["data"]["mlock-$name_of_board"];
@ -138,7 +138,7 @@ rc522_spi:
- delay: 0.5s
- light.addressable_set: { id: status_led, red: 0%, green: 0%, blue: 0% }
- delay: 0.5s
- if: # return LED to old state before blinking
- if: # return LED to switch state before
condition:
switch.is_on: mlock_${name_of_board}_switch
then:
@ -153,6 +153,10 @@ switch:
name: "Relais Output"
id: mlock_${name_of_board}_switch
internal: true # hide from Homeassistant, so no one can turn it on without Tag-Scanning
on_turn_on:
- light.addressable_set: { id: status_led, red: 0%, green: 100%, blue: 0% }
on_turn_off:
- light.addressable_set: { id: status_led, red: 100%, green: 0%, blue: 0% }
binary_sensor:
# sensor input for Turning Device off
@ -164,7 +168,7 @@ binary_sensor:
id: ${name_of_board}gpio_input_ausschalter
on_press:
- switch.turn_off: mlock_${name_of_board}_switch
- light.addressable_set: { id: status_led, red: 100%, green: 0%, blue: 0% }
# - light.addressable_set: { id: status_led, red: 100%, green: 0%, blue: 0% }
# a template sensor for showing the current switch state (read only)
- platform: template
@ -181,7 +185,7 @@ button:
id: ${name_of_board}_btn_ausschalter
on_press:
- switch.turn_off: mlock_${name_of_board}_switch
- light.addressable_set: { id: status_led, red: 100%, green: 0%, blue: 0% }
# - light.addressable_set: { id: status_led, red: 100%, green: 0%, blue: 0% }
light:
- platform: neopixelbus