Skip to content

Commit 5131e07

Browse files
committed
Add support for HCT-611 water timer via Bluetooth hub.
Issue #638
1 parent dd006f4 commit 5131e07

File tree

3 files changed

+81
-0
lines changed

3 files changed

+81
-0
lines changed

ACKNOWLEDGEMENTS.md

+1
Original file line numberDiff line numberDiff line change
@@ -255,3 +255,4 @@ Further device support has been made with the assistance of users. Please consi
255255
- [burn1879](https://github.com/burn1879) for contributing support for subdevices, and Loratap zigbee curtains.
256256
- [hronek](https://github.com/hronek) for assisting with support for BLE PT216 temperature and humidity sensors.
257257
- [bparten](https://github.com/bparten) for assisting with support for Moes IR hub connected heatpump.
258+
- [spanzetta](https://github.com/spanzetta) for assisting with BLE connected HCT-611 water timer.

DEVICES.md

+1
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,7 @@ of device.
374374
### Devices supported via Bluetooth hubs
375375

376376
- PT216/PT19DB-2 BLE temperature and humidity sensor
377+
- HCT-611 water timer
377378

378379
### Devices supported via IR hubs
379380

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
name: Water timer
2+
primary_entity:
3+
entity: switch
4+
dps:
5+
- id: 1
6+
type: boolean
7+
name: switch
8+
- id: 12
9+
type: string
10+
name: state
11+
secondary_entities:
12+
- entity: sensor
13+
name: Battery
14+
class: battery
15+
category: diagnostic
16+
dps:
17+
- id: 7
18+
type: integer
19+
name: sensor
20+
unit: "%"
21+
mapping:
22+
- scale: 0.05
23+
- id: 8
24+
type: string
25+
name: state
26+
- entity: select
27+
name: Weather delay
28+
icon: "mdi:weather-cloudy-clock"
29+
category: config
30+
dps:
31+
- id: 10
32+
type: string
33+
name: option
34+
mapping:
35+
- dps_val: cancel
36+
value: "Off"
37+
- dps_val: "24h"
38+
value: "1 day"
39+
- dps_val: "48h"
40+
value: "2 days"
41+
- dps_val: "72h"
42+
value: "3 days"
43+
- entity: number
44+
name: Timer
45+
category: config
46+
icon: "mdi:timer"
47+
dps:
48+
- id: 11
49+
type: integer
50+
name: value
51+
unit: min
52+
range:
53+
min: 0
54+
max: 86400
55+
mapping:
56+
- scale: 60
57+
step: 60
58+
- entity: select
59+
name: Smart weather
60+
icon: "mdi:sun-wireless"
61+
category: config
62+
dps:
63+
- id: 13
64+
type: string
65+
name: option
66+
mapping:
67+
- dps_val: sunny
68+
value: Sunny
69+
- dps_val: clear
70+
value: Clear
71+
- dps_val: cloudy
72+
value: Cloudy
73+
- dps_val: rainy
74+
value: Rain
75+
- dps_val: snow
76+
value: Snow
77+
- dps_val: fog
78+
value: Fog
79+

0 commit comments

Comments
 (0)