Advertisement
Guest User

Untitled

a guest
Apr 16th, 2018
733
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.87 KB | None | 0 0
  1. remote:
  2.   - platform: xiaomi_miio
  3.     host: x.x.x.x
  4.     token: xxxx
  5.  
  6. climate:
  7.   - platform: generic_thermostat
  8.     hidden: true
  9.     name: Thermo
  10.     heater: switch.acheat
  11.     target_sensor: sensor.temperature
  12.     ac_mode: False
  13.     cold_tolerance: 2
  14.     hot_tolerance: 0
  15.     min_temp: 20
  16.     max_temp: 30
  17.     target_temp: 24
  18.     initial_operation_mode: "off"
  19.   - platform: generic_thermostat
  20.     hidden: true
  21.     name: Thermo2
  22.     heater: switch.accool
  23.     target_sensor: sensor.temperature
  24.     ac_mode: True
  25.     cold_tolerance: 0
  26.     hot_tolerance: 2
  27.     min_temp: 20
  28.     max_temp: 30
  29.     target_temp: 24
  30.     initial_operation_mode: "off"
  31.  
  32. input_boolean:
  33.   accoolswitch:
  34.     initial: off
  35.   acheatswitch:
  36.     initial: off
  37.   thermobool:
  38.     initial: off
  39.  
  40. input_number:
  41.   sliderac:
  42.     name: Target
  43.     initial: 24
  44.     min: 20
  45.     max: 30
  46.     step: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement