https://github.com/idreamshen/esphome-demry-vrf
中央空调 VRF 网关 Esphome 组件,支持小米平头熊 PTXZN 和德姆瑞 Demry 两款中央空调网关
https://github.com/idreamshen/esphome-demry-vrf
aircondition demry esphome homeassistant ptxzn vrf
Last synced: 11 months ago
JSON representation
中央空调 VRF 网关 Esphome 组件,支持小米平头熊 PTXZN 和德姆瑞 Demry 两款中央空调网关
- Host: GitHub
- URL: https://github.com/idreamshen/esphome-demry-vrf
- Owner: idreamshen
- Created: 2023-09-24T09:20:41.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-29T08:42:30.000Z (about 2 years ago)
- Last Synced: 2024-04-29T09:46:45.013Z (about 2 years ago)
- Topics: aircondition, demry, esphome, homeassistant, ptxzn, vrf
- Language: C++
- Homepage:
- Size: 17.6 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
* Core Example
#+begin_src yaml
external_components:
- source:
type: git
url: https://github.com/idreamshen/esphome-demry-vrf
ref: v1.0.1
uart:
- id: myuart1
tx_pin: 1
rx_pin: 3
baud_rate: 9600
demry_vrf:
climate:
- platform: demry_vrf
name: "AirCondition keting"
idx: 0
- platform: demry_vrf
name: "AirCondition zhuwo"
idx: 1
- platform: demry_vrf
name: "AirCondition canting"
idx: 2
- platform: demry_vrf
name: "AirCondition ciwo"
idx: 3
#+end_src
* Full Example
#+begin_src yaml
esphome:
name: vrf
friendly_name: vrf
external_components:
- source:
type: git
url: https://github.com/idreamshen/esphome-demry-vrf
esp8266:
board: esp01_1m
# Enable logging
logger:
baud_rate: 0
# Enable Home Assistant API
api:
encryption:
key: "YIzrKHlei/qBAGcoFWgVGf2rSeoNh3xeZamfg63dc8U="
ota:
password: "4bd1e1ed23c698aa39b3e4ee92ae9e81"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
fast_connect: true
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Vrf Fallback Hotspot"
password: "kwvwcKzIBsQU"
captive_portal:
uart:
- id: myuart1
tx_pin: 1
rx_pin: 3
baud_rate: 9600
demry_vrf:
climate:
- platform: demry_vrf
name: "AirCondition keting"
idx: 0
- platform: demry_vrf
name: "AirCondition zhuwo"
idx: 1
- platform: demry_vrf
name: "AirCondition canting"
idx: 2
- platform: demry_vrf
name: "AirCondition ciwo"
idx: 3
#+end_src