Update README.md

This commit is contained in:
Zbyněk Pecina 2023-03-02 19:07:10 +01:00 committed by GitHub
parent fd1d7dfb15
commit 47d40a0346
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,10 @@
# ESPHome modbus - heatpump Gree Versati III # ESPHome modbus - heatpump Gree Versati III
## Description: ## Description:
This manual describes how to connect the device to Home Assistant via Modbus protocol using ESP and RS485/TTL converter. This manual describes how to connect the device to Home Assistant via Modbus protocol using ESP and RS485/TTL converter.
In this case it is about connecting a Gree Versati III 10kw heat pump. In this case it is about connecting a Gree Versati III 10kw heat pump.
## Info: ## Info:
- use only shielded cable, otherwise the error "Modbus CRC Check Failed!" may appear in the log. - use only shielded cable, otherwise the error "Modbus CRC Check Failed!" may appear in the log.
- put a 120 ohm resistor after the last connected device - put a 120 ohm resistor after the last connected device
@ -17,13 +15,20 @@ In this case it is about connecting a Gree Versati III 10kw heat pump.
- for addresses that are read/write use the "number" class (you can then change their values in lovelace) - for addresses that are read/write use the "number" class (you can then change their values in lovelace)
- for each register you want to have in HA you have to create a separate sensor in ESPHome - for each register you want to have in HA you have to create a separate sensor in ESPHome
## Lovelace:
![lovelace](https://github.com/peca2345/ESPHome-modbus-heatpump-Gree-Versati-III/blob/main/IMG/Lovelace.png?raw=true)
## Components: ## Components:
- ESP8266 / ESP32 - ESP8266 / ESP32
- RS485/TTL converter: [SHOP](https://www.laskakit.cz/prevodnik-ttl-na-rs-485--max485/) - RS485/TTL converter: [SHOP](https://www.laskakit.cz/prevodnik-ttl-na-rs-485--max485/)
## Schematic: ## Schematic:
![Schema](https://github.com/peca2345/ESPHome-modbus-heatpump-Gree-Versati-III/blob/main/IMG/schematic.png?raw=true) ![Schema](https://github.com/peca2345/ESPHome-modbus-heatpump-Gree-Versati-III/blob/main/IMG/schematic.png?raw=true)
## ESPHome code: ## ESPHome code:
``` ```
uart: uart:
@ -110,3 +115,5 @@ sensor:
filters: filters:
- multiply: 0.1 - multiply: 0.1
``` ```