فهرست منبع

Add support for Pro Energy PE08 pool heatpump

Issue #1580
Jason Rumney 1 سال پیش
والد
کامیت
54229eae13
3فایلهای تغییر یافته به همراه64 افزوده شده و 2 حذف شده
  1. 3 2
      ACKNOWLEDGEMENTS.md
  2. 1 0
      DEVICES.md
  3. 60 0
      custom_components/tuya_local/devices/proenergy_pe08_poolheater.yaml

+ 3 - 2
ACKNOWLEDGEMENTS.md

@@ -548,5 +548,6 @@ Further device support has been made with the assistance of users. Please consid
 - [gkwok1](https://github.com/gkwok1) for contributing support for Confortotal mini split air conditioners.
 - [gkwok1](https://github.com/gkwok1) for contributing support for Confortotal mini split air conditioners.
 - [hroussez](https://github.com/hroussez) for contributing ANWIO lightbulb compatibility info.
 - [hroussez](https://github.com/hroussez) for contributing ANWIO lightbulb compatibility info.
 - [bdraco](https://github.com/bdraco) for advice on correct use of HA threading/task functions.
 - [bdraco](https://github.com/bdraco) for advice on correct use of HA threading/task functions.
-- [sj29fr](https://github.com/sj29fr) for contributing support for Stepuptech SG800 solar inverter.
-- [wbln](https://github.com/wbln) for contributing support for Tefal X-plorer animal vacuum.
+- [sj29fr](https://github.com/sj29fr) for contributing support for Stepuptech SG800 solar inverters.
+- [wbln](https://github.com/wbln) for contributing support for Tefal X-plorer animal vacuums.
+- [TroLoos](https://github.com/TroLoos) for contributing support for Pro-Energy PE08 pool heatpumps.

+ 1 - 0
DEVICES.md

@@ -110,6 +110,7 @@
 - Madimack Elite V3 pool heatpump (two versions)
 - Madimack Elite V3 pool heatpump (two versions)
 - Madimack(model unknown) pool heatpump (seems to match Fairland IPH45 as well)
 - Madimack(model unknown) pool heatpump (seems to match Fairland IPH45 as well)
 - Poolex Silverline, Q-7, Q-line, Arctic and Vertigo heatpumps
 - Poolex Silverline, Q-7, Q-line, Arctic and Vertigo heatpumps
+- Pro-Energy PE08 pool heatpump
 - Remora pool heatpump
 - Remora pool heatpump
 - W'eau pool heatpump (simple model and a more complex 13kW model)
 - W'eau pool heatpump (simple model and a more complex 13kW model)
 
 

+ 60 - 0
custom_components/tuya_local/devices/proenergy_pe08_poolheater.yaml

@@ -0,0 +1,60 @@
+name: Pool heater
+products:
+  - id: kirzfzcxypdjo2ay
+    name: Pro-Energy PE08
+primary_entity:
+  entity: climate
+  translation_key: pool_heatpump
+  dps:
+    - id: 1
+      name: hvac_mode
+      type: boolean
+      mapping:
+        - dps_val: false
+          value: "off"
+        - dps_val: true
+          value: heat
+          icon: "mdi:hot-tub"
+    - id: 2
+      name: preset_mode
+      type: string
+      mapping:
+        - dps_val: eco_heat
+          value: eco
+        - dps_value: heating
+          value: boost
+        - dps_val: cold
+          value: Cool
+        - dps_val: auto
+          value: auto
+    - id: 4
+      type: integer
+      name: temperature
+      range:
+        min: 5
+        max: 40
+      unit: C
+    - id: 26
+      type: integer
+      name: current_temperature
+    - id: 104
+      type: string
+      name: unknown_104
+secondary_entities:
+  - entity: lock
+    translation_key: child_lock
+    category: config
+    dps:
+      - id: 3
+        type: boolean
+        name: lock
+  - entity: sensor
+    name: Inlet temperature
+    class: temperature
+    category: diagnostic
+    dps:
+      - id: 25
+        type: integer
+        name: sensor
+        unit: C
+        class: measurement