Advertisement
boelle11

Untitled

Feb 20th, 2022
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. ---
  2. action:
  3. data:
  4. temperature: temp_to_set
  5. service: climate.set_temperature
  6. target: thermostat
  7. blueprint:
  8. description: "Based on wind direction thermostat is set to max"
  9. domain: automation
  10. input:
  11. temp_to_set:
  12. default: 23
  13. name: Temperature
  14. selector:
  15. number:
  16. max: 30
  17. min: 5
  18. unit_of_measurement: °
  19. thermostat:
  20. description: "Specify your thermostat."
  21. name: Thermostat
  22. selector:
  23. entity:
  24. domain: climate
  25. weather:
  26. description: "Specify your weather to get the current outside wind direction from."
  27. name: Weather
  28. selector:
  29. entity:
  30. domain: weather
  31. wind1:
  32. default: 123.75
  33. description: "The ouside wind direction needs to be between this and the next"
  34. name: wind1
  35. selector:
  36. number:
  37. max: 236.25
  38. min: 123.75
  39. step: 1
  40. unit_of_measurement: °
  41. wind2:
  42. default: 236.25
  43. name: wind2
  44. selector:
  45. number:
  46. max: 236.25
  47. min: 123.75
  48. step: 1
  49. unit_of_measurement: °
  50. name: "Smart Thermostat"
  51. trigger:
  52. above: wind1
  53. attribute: wind_bearing
  54. below: wind2
  55. entity_id: weather
  56. platform: numeric_state
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement