Advertisement
Guest User

Untitled

a guest
Mar 24th, 2024
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. script:
  2. - id: script_moonside_ble_command
  3. parameters:
  4. command: int
  5. then:
  6. - ble_client.ble_write:
  7. id: lighthouse_ble
  8. service_uuid: 6e400001-b5a3-f393-e0a9-e50e24dcca9e
  9. characteristic_uuid: 6e400002-b5a3-f393-e0a9-e50e24dcca9e
  10. value: [command]
  11.  
  12. button:
  13. - platform: template
  14. id: on_button
  15. name: " Turn ON Moonside Lighthouse"
  16. on_press:
  17. - script.execute:
  18. id: script_moonside_ble_command
  19. command: [0x4c, 0x45, 0x44, 0x4f, 0x4e]
  20.  
  21. - platform: template
  22. id: off_button
  23. name: " Turn OFF Moonside Lighthouse"
  24. on_press:
  25. - script.execute:
  26. id: script_moonside_ble_command
  27. command: [0x4c, 0x45, 0x44, 0x4f, 0x46, 0x46]
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement