Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- esphome:
- name: esp-hvac-woonkamer
- platform: ESP8266
- board: esp12e ##You might need to change this to the type of board you are using. I am using a custom dongle designed by Sergey Dudanov
- # Enable Home Assistant API
- api:
- ota:
- wifi:
- ssid: !secret iotwifi_ssid
- password: !secret iotwifi_pass
- manual_ip:
- static_ip: 192.168.1.110
- gateway: 192.168.1.1
- subnet: 255.255.255.0
- # Enable fallback hotspot (captive portal) in case wifi connection fails
- ap:
- ssid: "ESP-HVAC-Woonkamer"
- password: !secret iotwifi_passfallback
- captive_portal:
- remote_transmitter:
- pin: GPIO13
- carrier_duty_percent: 100%
- id: tsop
- logger:
- baud_rate: 0
- level: DEBUG
- uart:
- tx_pin: GPIO1
- rx_pin: GPIO3
- baud_rate: 9600
- climate:
- - platform: midea
- name: "AC Woonkamer"
- beeper: false
- transmitter_id: tsop
- # Optional if dongle responds slowly
- period: 1s
- timeout: 3s
- num_attempts: 5
- # Aria Multisplit does not support autoconf, Single split unknown
- autoconf: true
- # supported_modes:
- # - FAN_ONLY
- # - COOL
- # - HEAT
- # - DRY
- # - HEAT_COOL
- # supported_presets:
- # - BOOST
- # - SLEEP
- #Outdoor unit temperature sensor readout
- outdoor_temperature:
- name: "hvac_outdoortemp"
- sensor:
- - platform: homeassistant
- entity_id: sensor.tado_woonkamer_temp
- id: zbtemp
- internal: true
- filters:
- - throttle: 10s
- - heartbeat: 2min
- - debounce: 1s
- on_value:
- midea_ac.follow_me:
- temperature: !lambda "return x;"
- beeper: false
- button:
- - platform: template
- name: AC Woonkamer display
- icon: mdi:theme-light-dark
- on_press:
- midea_ac.display_toggle:
- - platform: template
- name: AC Woonkamer horizontal swing
- icon: mdi:tailwind
- on_press:
- midea_ac.swing_step:
Advertisement
Add Comment
Please, Sign In to add comment