@homebridge-plugins/homebridge-govee 10.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/CHANGELOG.md +1937 -0
  2. package/LICENSE +21 -0
  3. package/README.md +72 -0
  4. package/config.schema.json +1727 -0
  5. package/eslint.config.js +49 -0
  6. package/lib/connection/aws.js +174 -0
  7. package/lib/connection/ble.js +208 -0
  8. package/lib/connection/cert/AmazonRootCA1.pem +20 -0
  9. package/lib/connection/http.js +240 -0
  10. package/lib/connection/lan.js +284 -0
  11. package/lib/device/cooler-single.js +300 -0
  12. package/lib/device/dehumidifier-H7150.js +182 -0
  13. package/lib/device/dehumidifier-H7151.js +157 -0
  14. package/lib/device/diffuser-H7161.js +117 -0
  15. package/lib/device/diffuser-H7162.js +117 -0
  16. package/lib/device/fan-H7100.js +274 -0
  17. package/lib/device/fan-H7101.js +330 -0
  18. package/lib/device/fan-H7102.js +274 -0
  19. package/lib/device/fan-H7105.js +503 -0
  20. package/lib/device/fan-H7106.js +274 -0
  21. package/lib/device/fan-H7111.js +335 -0
  22. package/lib/device/heater-single.js +300 -0
  23. package/lib/device/heater1a.js +353 -0
  24. package/lib/device/heater1b.js +616 -0
  25. package/lib/device/heater2.js +838 -0
  26. package/lib/device/humidifier-H7140.js +224 -0
  27. package/lib/device/humidifier-H7141.js +257 -0
  28. package/lib/device/humidifier-H7142.js +522 -0
  29. package/lib/device/humidifier-H7143.js +157 -0
  30. package/lib/device/humidifier-H7148.js +157 -0
  31. package/lib/device/humidifier-H7160.js +446 -0
  32. package/lib/device/ice-maker-H7162.js +46 -0
  33. package/lib/device/index.js +105 -0
  34. package/lib/device/kettle.js +269 -0
  35. package/lib/device/light-switch.js +86 -0
  36. package/lib/device/light.js +617 -0
  37. package/lib/device/outlet-double.js +121 -0
  38. package/lib/device/outlet-single.js +172 -0
  39. package/lib/device/outlet-triple.js +160 -0
  40. package/lib/device/purifier-H7120.js +336 -0
  41. package/lib/device/purifier-H7121.js +336 -0
  42. package/lib/device/purifier-H7122.js +449 -0
  43. package/lib/device/purifier-H7123.js +411 -0
  44. package/lib/device/purifier-H7124.js +411 -0
  45. package/lib/device/purifier-H7126.js +296 -0
  46. package/lib/device/purifier-H7127.js +296 -0
  47. package/lib/device/purifier-H712C.js +296 -0
  48. package/lib/device/purifier-single.js +119 -0
  49. package/lib/device/sensor-button.js +22 -0
  50. package/lib/device/sensor-contact.js +22 -0
  51. package/lib/device/sensor-leak.js +87 -0
  52. package/lib/device/sensor-monitor.js +190 -0
  53. package/lib/device/sensor-presence.js +53 -0
  54. package/lib/device/sensor-thermo.js +144 -0
  55. package/lib/device/sensor-thermo4.js +55 -0
  56. package/lib/device/switch-double.js +121 -0
  57. package/lib/device/switch-single.js +95 -0
  58. package/lib/device/switch-triple.js +160 -0
  59. package/lib/device/tap-single.js +108 -0
  60. package/lib/device/template.js +43 -0
  61. package/lib/device/tv-single.js +84 -0
  62. package/lib/device/valve-single.js +155 -0
  63. package/lib/fakegato/LICENSE +21 -0
  64. package/lib/fakegato/fakegato-history.js +814 -0
  65. package/lib/fakegato/fakegato-storage.js +108 -0
  66. package/lib/fakegato/fakegato-timer.js +125 -0
  67. package/lib/fakegato/uuid.js +27 -0
  68. package/lib/homebridge-ui/public/index.html +433 -0
  69. package/lib/homebridge-ui/server.js +10 -0
  70. package/lib/index.js +8 -0
  71. package/lib/platform.js +1967 -0
  72. package/lib/utils/colour.js +564 -0
  73. package/lib/utils/constants.js +579 -0
  74. package/lib/utils/custom-chars.js +225 -0
  75. package/lib/utils/eve-chars.js +68 -0
  76. package/lib/utils/functions.js +117 -0
  77. package/lib/utils/lang-en.js +131 -0
  78. package/package.json +75 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1937 @@
1
+ # Change Log
2
+
3
+ All notable changes to homebridge-govee will be documented in this file.
4
+
5
+ This project tries to adhere to [Semantic Versioning](http://semver.org/). In practice, this means that the version number will be incremented based on the following:
6
+
7
+ - `MAJOR` version when a minimum supported version of `homebridge` or `node` is increased to a new major version, or when a breaking change is made to the plugin config
8
+ - `MINOR` version when a new device type is added, or when a new feature is added that is backwards-compatible
9
+ - `PATCH` version when backwards-compatible bug fixes are implemented
10
+
11
+ ## v10.12.1 (2024-10-15)
12
+
13
+ ### Fixed
14
+
15
+ - fix `homepage` in `package.json`
16
+
17
+ ## v10.12.0 (2024-10-15)
18
+
19
+ ### Added
20
+
21
+ - Lights: `H7070` `H70B5`
22
+ - Humidifiers (beta): `H7148`
23
+
24
+ ### Changed
25
+
26
+ - put scene code logging back into debug mode
27
+
28
+ ## v10.11.0 (2024-10-14)
29
+
30
+ ### Added
31
+
32
+ - Lights: `H6811` `H801B`
33
+
34
+ ## v10.10.0 (2024-10-13)
35
+
36
+ ### Added
37
+
38
+ - Lights: `H6089` `H6093` `H6097` `H613G` `H615F` `H61B3` `H61B6` `H61E5` `H61F5` `H7037` `H70B4` `H70C5` `H70D1` `H801C`
39
+ - Switches: `H5086`
40
+ - Purifiers (beta): `H7124` `H7127` `H712C`
41
+ - Presence sensor (beta): `H5127`
42
+ - Template devices: `H5121` `H5126`
43
+
44
+ ### Changed
45
+
46
+ - Bump `node` recommended versions to `v18.20.4` or `v20.18.0` or `v22.9.0`
47
+ - Updated `eslint` and use new code style
48
+
49
+ ## v10.9.2 (2024-07-15)
50
+
51
+ ### Changed
52
+
53
+ - Split appliances into different files for more specific features per model
54
+
55
+ ## v10.9.1 (2024-07-13)
56
+
57
+ ### Changed
58
+
59
+ - Always log new scene codes for appliances
60
+ - this is helpful for development
61
+
62
+ ## v10.9.0 (2024-07-13)
63
+
64
+ ### Added
65
+
66
+ - Support for light models:
67
+ - `H600D` `H605A` `H6098` `H6640` `H6641`
68
+ - Support (beta) for sensor:
69
+ - `H5190`
70
+
71
+ ## v10.8.1 (2024-07-13)
72
+
73
+ ### Changed
74
+
75
+ - Fixed for `hap-nodejs` v1.0.0
76
+ - Updated dependencies
77
+ - Bump `node` recommended versions to v18.20.4 or v20.15.1
78
+
79
+ ## v10.8.0 (2024-05-26)
80
+
81
+ ### Added
82
+
83
+ - Support for light models:
84
+ - `H60A1` `H61D3` `H7038` `H7039` `H7105`
85
+ - Support for light models:
86
+ - `H7015`
87
+ - `H7016` (thanks @rusnewman)
88
+
89
+ ### Changed
90
+
91
+ - Updated dependencies
92
+
93
+ ## v10.7.1 (2024-05-03)
94
+
95
+ ### Fixed
96
+
97
+ - Use existing access token on HTTP login
98
+
99
+ ## v10.7.0 (2024-05-02)
100
+
101
+ ### Added
102
+
103
+ - Support device H6079 (floor lamp) (#775) (@bwitting)
104
+
105
+ ### Fixed
106
+
107
+ - HTTP connection with leak sensors
108
+
109
+ ## v10.6.0 (2024-04-20)
110
+
111
+ ### Added
112
+
113
+ - Support for light models:
114
+ - `H6042` `H6043` `H6063` `H607C` `H608D`
115
+ - `H616C` `H616D` `H616E` `H6175` `H61A9`
116
+ - `H61B1` `H7021` `H7052` `H7053` `H705D`
117
+ - `H705E` `H705F` `H7063` `H706B` `H7075`
118
+ - `H70BC` `H805A` `H805B` `H805C`
119
+
120
+ ## vChanged
121
+
122
+ - Updated LAN supported models based on latest Govee docs
123
+ - Bump `node` supported versions to v18.20.2 or v20.12.2
124
+
125
+ ## v10.5.0 (2024-03-28)
126
+
127
+ ### Added
128
+
129
+ - Allow `H5108` Thermometer (#736) (@BroHammie)
130
+ - Add support for `H600A`, `H61B5`, `H61D5`
131
+
132
+ ### Changed
133
+
134
+ - Bump `node` supported versions to v18.20.0 or v20.12.0
135
+ - Updated dependencies
136
+
137
+ ## v10.4.0 (2024-02-06)
138
+
139
+ ### Added
140
+
141
+ - Support for `H6099` lights
142
+ - Add support for H5105 (#727) (@ALPHAy00)
143
+ - Add LAN support for `H61BC`, `H70A1`
144
+
145
+ ### Changed
146
+
147
+ - Bump `node` supported versions to v18.19.0 or v20.11.0
148
+ - Updated dependencies
149
+
150
+ ## v10.3.0 (2023-12-30)
151
+
152
+ ### Added
153
+
154
+ - Support for `H6004`, `H601D`, `H70A1`, `H706A` lights
155
+ - Support for `H7173`, `H7175` kettles
156
+ - Support for `H7161`, `H7162` diffusers
157
+ - Work-in-progress support for `H5198` thermometer sensor(s)
158
+
159
+ ### Changed
160
+
161
+ - Bump `node` supported versions to v18.19.0 or v20.10.0
162
+ - Updated dependencies
163
+
164
+ ## v10.2.0 (2023-11-30)
165
+
166
+ ### Added
167
+
168
+ - Support for `H606A`, `H6092` and `H706C` lights
169
+ - Add LAN support for `H7066` (@JGtHb)
170
+
171
+ ### Changed
172
+
173
+ - Bump `node` supported versions to v18.18.2 or v20.10.0
174
+
175
+ ## v10.1.0 (2023-11-19)
176
+
177
+ ### Added
178
+
179
+ - Support for `H608A`, `H608B`, `H608C` lights (thanks [@twhitson](https://github.com/twhitson)!)
180
+ - Support for `H601C`, `H6185`, `H6176`, `H70A1` lights
181
+ - Support for heater `H7133`
182
+
183
+ ### Changed
184
+
185
+ - Updated dependencies
186
+
187
+ ## v10.0.0 (2023-10-24)
188
+
189
+ ### Added
190
+
191
+ - Support for heater `H713C`
192
+ - Support for lights
193
+ - `H6010`, `H601B`, `H6088`, `H60A0`, `H6167`, `H617F`, `H61BA`, `H61BC`, `H61C2`, `H61C5`, `H7066`, `H70C1` and `H70C2`
194
+ - Support for air purifier `H7126` (work-in-progress)
195
+
196
+ ### Changed
197
+
198
+ - Updated dependencies
199
+ - Bump `node` supported versions to v18.18.2 or v20.8.1
200
+
201
+ ### Removed
202
+
203
+ - Support for node 16
204
+
205
+ ## v9.4.2 (2023-08-28)
206
+
207
+ ⚠️ Note this will be the last version of the plugin to support Node 16.
208
+ - Node 16 moves to 'end of life' on 2023-09-11 ([more info](https://nodejs.org/en/blog/announcements/nodejs16-eol))
209
+ - This is in-line with the Homebridge guidelines on supporting node versions ([more info](https://github.com/homebridge/homebridge/wiki/How-To-Update-Node.js/))
210
+ - If you are currently using Node 16, now is a good time to upgrade to Node 18 or 20 (see the link above for more info)
211
+
212
+ ### Changed
213
+
214
+ - Update dependencies
215
+
216
+ ## v9.4.1 (2023-08-27)
217
+
218
+ ### Changed
219
+
220
+ - Update `axios` to `v1.5.0`
221
+
222
+ ### Fixed
223
+
224
+ - `H713A` is not a light it is a header 😅
225
+ - Support for `H713B` heater
226
+
227
+ ## v9.4.0 (2023-08-26)
228
+
229
+ ### Added
230
+
231
+ - Support for:
232
+ - `H5058` leak sensors
233
+ - `H5104` thermo-hygrometer sensor
234
+ - `H6609` gaming lights
235
+ - `H7029` bluetooth lights
236
+ - `H7134` heater
237
+ - `H705C`, `H713A` lights
238
+ - `H7151` dehumidifier
239
+
240
+ ### Fixed
241
+
242
+ - Do not attempt to control models via LAN when an IP is entered in the config, but the model is not LAN supported
243
+
244
+ ## v9.3.0 (2023-07-29)
245
+
246
+ ### Added
247
+
248
+ - Support for `H61BE` (+ LAN) and `H7019` bluetooth lights
249
+ - Work-in-progress support for `H6602` device
250
+
251
+ ### Changed
252
+
253
+ - 'no connection method' log entry now includes a link to a wiki page for more info
254
+
255
+ ## v9.2.0 (2023-07-24)
256
+
257
+ ### Added
258
+
259
+ - Support for heater `H7135`
260
+ - Support for humidifier `H7140`
261
+ - Support for lights `H7033`
262
+
263
+ ### Changed
264
+
265
+ - Bump `node` recommended versions to v16.20.1 or v18.17.0 or v20.5.0
266
+
267
+ ### 9.1.0 (2023-06-12)
268
+
269
+ ### Added
270
+
271
+ - Support for humidifier `H7143`
272
+ - Support for lights `H6006` and `H61E0`
273
+
274
+ ### Changed
275
+
276
+ - Bump `node` supported versions to v16.20.0 or v18.16.0 or **v20.3.0**
277
+ - Updated dependencies
278
+
279
+ ### 9.0.2 (2023-05-06)
280
+
281
+ ### Changed
282
+
283
+ - Bump `node` supported versions to v16.20.0 or v18.16.0 or v20.1.0
284
+
285
+ ### Fixed
286
+
287
+ - Properly match configured device id to actual device id
288
+
289
+ ## v9.0.1 (2023-05-03)
290
+
291
+ ### Fixed
292
+
293
+ - Temperature readings for some Govee appliances
294
+
295
+ ## v9.0.0 (2023-04-30)
296
+
297
+ ️Note this release makes breaking changes to scene codes and will require reconfiguring (apologies for changing this again!). This is to:
298
+
299
+ - make finding scene codes more straightforward and reliable
300
+ - allow scene codes to be sent via LAN mode
301
+ - allow scene codes to be sent via BLE mode (separate scene code required - see docs)
302
+ - bring some consistency to how the plugin handles scenes
303
+
304
+ See the first section of the updated wiki document for instructions:
305
+ - https://github.com/bwp91/homebridge-govee/wiki/Scene,-Music,-DIY-Modes
306
+
307
+ ### Added
308
+
309
+ - Support for `H61C3` lights
310
+ - Support for `H7102` fan
311
+ - LAN mode support for the following devices:
312
+ - `H6078`, `H6168`, `H61A8`, `H61C3`, `H7055`, `H705A`, `H705B`
313
+ - Log added scene codes on plugin startup
314
+ - Scene codes via LAN mode
315
+ - Scene codes via BLE mode
316
+ - Option to show a scene code as an extra Home App switch instead of an Eve button
317
+ - This could be useful for Home Assistant or ioBroker users who wish to integrate scenes
318
+
319
+ ### Changed
320
+
321
+ - ⚠️ Scene codes reverted back to old raw `base64` format
322
+ - Bump `node` supported versions to v16.20.0 or v18.16.0 or v20.0.0
323
+ - Updated dependencies
324
+
325
+ ## v8.1.2 (2023-04-10)
326
+
327
+ ### Changed
328
+
329
+ - Remove 'H6052', 'H6110', 'H6141', 'H6143', 'H6144', 'H615A', 'H615B' and 'H615C' from LAN supported
330
+ - These models seem to have been removed from the Govee LAN API supported list
331
+
332
+ ## v8.1.1 (2023-04-05)
333
+
334
+ ### Changed
335
+
336
+ - Bump `node` recommended versions to v16.20.0 or v18.15.0
337
+
338
+ ### Fixed
339
+
340
+ - Better logging info about OpenSSL
341
+
342
+ ## v8.1.0 (2023-03-24)
343
+
344
+ ### Added
345
+
346
+ - Support for fan H7100
347
+
348
+ ### Changed
349
+
350
+ - Plugin initialisation logging
351
+
352
+ ## v8.0.2 (2023-03-21)
353
+
354
+ ### Fixed
355
+
356
+ - Plugin config screen fix for scene codes
357
+
358
+ ## v8.0.1 (2023-03-21)
359
+
360
+ ### Fixed
361
+
362
+ - Plugin config screen fix
363
+
364
+ ## v8.0.0 (2023-03-21)
365
+
366
+ ### Breaking
367
+
368
+ - ⚠️ Remove API connection method
369
+ - This also removes the need for the `offlineAsOff` config option
370
+ - ⚠️ Lists of different AWS command types and brightness scales have been removed and replaces with a user configuration
371
+ - ⚠️ Scenes have also changed - please use the Homebridge UI to configure scenes again
372
+ - This change is to (in the future) allow for more customisation of scenes, for example to expose as a switch to allow in Home Assistant
373
+ - Remove official support for Node 14
374
+ - Remove option to disable plugin - this is now available in the Homebridge UI
375
+ - Remove option for debug logging - this will be enabled when using a beta version of the plugin
376
+ - Remove individual accessory logging options to simplify the config
377
+
378
+ ### Added
379
+
380
+ - Support for Kettle device `H7171`
381
+
382
+ ### Changed
383
+
384
+ - Bump `homebridge` recommended version to v1.6.0 or v2.0.0-beta
385
+ - Bump `node` recommended versions to v16.19.1 or v18.14.2
386
+ - Updated dependencies
387
+
388
+ ## v7.9.3 (2023-02-26)
389
+
390
+ ### Changed
391
+
392
+ - Remove JSON logging for all API appliances as no more devices needed
393
+
394
+ ## v7.9.2 (2023-02-26)
395
+
396
+ ### Changed
397
+
398
+ - Updated dependencies
399
+ - Bump `node` recommended versions to v14.21.2 or v16.19.1 or v18.14.2
400
+
401
+ ### Fixed
402
+
403
+ - AWS commands for H6003, H6009 and H601A
404
+
405
+ ## v7.9.1 (2023-01-28)
406
+
407
+ ### Changed
408
+
409
+ - For users with old AWS scene codes ending in `||ptReal`, you can now change this to `||raw` and the command should work as before
410
+ - For devices with AWS connection (with real-time updates), API polling will be disabled
411
+ - Improved AWS connectivity for older models
412
+
413
+ ### Fixed
414
+
415
+ - AWS commands for H6054
416
+
417
+ ## v7.9.0 (2023-01-20)
418
+
419
+ ### Added
420
+
421
+ - Configuration items for kettle devices to switch to two custom modes
422
+
423
+ ### Fixed
424
+
425
+ - Kettle commands
426
+ - AWS commands for H615E and H6195
427
+
428
+ ## v7.8.0 (2023-01-12)
429
+
430
+ **Kettle Users**
431
+ Unfortunately this update will break your kettle. This is something I am working on and will hopefully be fixed soon.
432
+
433
+ ### Changes
434
+
435
+ - General fixes
436
+ - Bump `node` recommended versions to v14.21.2 or v16.19.0 or v18.13.0
437
+
438
+ ### Fixed
439
+
440
+ - AWS control for H6071, H6076, H615C, H61A2, H619B and H6182
441
+
442
+ ### Removed
443
+
444
+ - AWS connection method polling - it is unnecessary as changes are provided to the plugin in realtime anyway
445
+
446
+ ## v7.7.1 (2022-12-27)
447
+
448
+ ### Changed
449
+
450
+ - Improvements to Govee Humidifiers (H7141 and H7142)
451
+ - If anyone has a H7143 or H7160 please get in contact!
452
+ - Other fixes for purifiers and dehumidifiers
453
+
454
+ ## v7.7.0 (2022-12-25) 🎄
455
+
456
+ ### Added
457
+
458
+ - Temperature sensor to Govee Kettle (device is still a WIP)
459
+ - Added support for Govee Air Quality Monitor H5106 (credit and thanks to [@rmaes4](https://github.com/rmaes4))
460
+
461
+ ### Changed
462
+
463
+ - Improvements to Govee Air Purifier H7122 (credit and thanks to [@rmaes4](https://github.com/rmaes4))
464
+ - Bump `node` recommended versions to v14.21.2 or v16.19.0 or v18.12.1
465
+
466
+ ### Fixed
467
+
468
+ - Downgrade (and fix) bluetooth package versions
469
+ - Updated LAN model list
470
+
471
+ ## v7.6.0 (2022-12-18)
472
+
473
+ ### Added
474
+
475
+ - Config option to expose a Govee light device as a HomeKit `Switch` accessory
476
+
477
+ ### Changed
478
+
479
+ - Updated BLE dependencies
480
+
481
+ ### Fixed
482
+
483
+ - AWS commands for H5082 and H6054
484
+ - Avoid Homebridge characteristic warning for `ColourMode`
485
+
486
+ ## v7.5.1 (2022-12-09)
487
+
488
+ - Maintenance release
489
+
490
+ ## v7.5.0 (2022-12-06)
491
+
492
+ ### Added
493
+
494
+ - LAN support for models (pending Govee support):
495
+ - `H6051`, `H6059`, `H6073`, `H6109`, `H6142`, `H6154`, `H615B`, `H615C`, `H6160`, `H6182`, `H618F`, `H6195` and `H7020`
496
+ - Control appliances (Heaters, Fans, Humidifiers, Dehumidifiers and Purifiers) via BLE when AWS is unavailable
497
+ - Experimental! This is not meant to be a replacement for AWS - more a fallback for the case that AWS is unavailable
498
+ - Config option to disable AWS
499
+ - BLE will now be enabled by default for all devices
500
+ - BLE can be globally disabled via the config
501
+
502
+ ### Fixed
503
+
504
+ - AWS commands for H619A
505
+
506
+ ## v7.4.2 (2022-12-04)
507
+
508
+ ### Fixed
509
+
510
+ - Hide scene logging when device is not switched on
511
+ - AWS commands for H6159
512
+
513
+ ## v7.4.1 (2022-12-04)
514
+
515
+ ### Changed
516
+
517
+ - Eve scene buttons are now stateful, showing the current scene that the device is in
518
+
519
+ ### Fixed
520
+
521
+ - Fix for systems running OpenSSL v3
522
+ - Fixed oscillation command for H7131 and H7132 heaters
523
+ - AWS commands for H7020
524
+ - BLE commands for H6052 and H6058
525
+
526
+ ## v7.4.0 (2022-12-02)
527
+
528
+ ### Added
529
+
530
+ - Better handling of custom light scenes
531
+ - Unfortunately all existing scene codes are no longer valid - you will need to recreate your scenes
532
+ - See [wiki page](https://github.com/bwp91/homebridge-govee/wiki/Scene,-Music,-DIY-Modes) for more info
533
+ - There _may_ be some older models which this method does not work for - if you have one of these, please open an issue
534
+
535
+ ### Fixed
536
+
537
+ - BLE colour commands for H6053, H6072 and H6199
538
+
539
+ ## v7.3.2 (2021-12-01)
540
+
541
+ ### Changed
542
+
543
+ - Improved error message for Ubuntu users running a too high version of OpenSSL
544
+
545
+ ### Fixed
546
+
547
+ - AWS command code logging
548
+ - AWS commands for H6052
549
+
550
+ ## v7.3.1 (2022-12-01)
551
+
552
+ ### Fixed
553
+
554
+ - Some AWS related things
555
+
556
+ ## v7.3.0 (2022-12-01)
557
+
558
+ ### Added
559
+
560
+ - Configuration section for Govee kettle devices
561
+
562
+ ### Changed
563
+
564
+ - Log temperature from sensors in fahrenheit too
565
+ - Remove `awsDebug` option as impossible to implement for the moment
566
+ - Allow for homebridge 2.0 beta
567
+
568
+ ### Fixed
569
+
570
+ - AWS connection
571
+ - AWS commands for H6142 and H615B
572
+ - Fix bluetooth status in Homebridge UI for sensors
573
+
574
+ ## v7.2.0 (2022-11-27)
575
+
576
+ ### Added
577
+
578
+ - Added support for the Govee outlet H5083
579
+ - Configuration section for Govee fan devices
580
+
581
+ ### Changed
582
+
583
+ - **Fan Devices**
584
+ - Rotation speeds reduced to multiples of 11% to allow a new 99% setting to access 'Auto' mode if your device is linked to a sensor
585
+ - Otherwise, 99% will have the same effect as 88% (the highest speed available on the device)
586
+ - AWS codes will no longer be logged unless the `awsDebug` option is enabled for a specific device
587
+
588
+ ### Fixed
589
+
590
+ - Plugin will now correctly enable LAN mode for devices discovered **after** the initial scan, with extra debug logging
591
+
592
+ ## v7.1.9 (2022-11-23)
593
+
594
+ ### Changed
595
+
596
+ - Added (forgotten) `awsDebug` option for switch devices
597
+
598
+ ### Fixed
599
+
600
+ - AWS commands for H5080 outlet (for simulations)
601
+
602
+ ## v7.1.8 (2022-11-23)
603
+
604
+ ### Changed
605
+
606
+ - More improvements to heater devices H7131 and H7132 (fan speed selection mapping to Govee modes)
607
+
608
+ ### Fixed
609
+
610
+ - AWS commands for H5080 outlet
611
+ - AWS fixes for H7050
612
+
613
+ ## v7.1.7 (2022-11-19)
614
+
615
+ ### Changed
616
+
617
+ - Updated dev dependencies
618
+
619
+ ### Fixed
620
+
621
+ - AWS fixes for H619C
622
+ - Fixes an issue sending colour temperature updates for certain models
623
+
624
+ ## v7.1.6 (2022-11-18)
625
+
626
+ ### Fixed
627
+
628
+ - Colour control for some bluetooth-only models
629
+
630
+ ## v7.1.5 (2022-11-16)
631
+
632
+ ### Fixed
633
+
634
+ - AWS commands for H6054
635
+ - Bluetooth commands for H6102 - similar models may use these commands, please create an issue if you have a bluetooth model and brightness/colour do not work
636
+ - Thanks to [@bitfl0wer](https://github.com/bitfl0wer) for figuring out the commands
637
+
638
+ ## v7.1.4 (2022-11-15)
639
+
640
+ ### Fixed
641
+
642
+ - AWS fixes for H6009 (WIP) and H605C
643
+
644
+ ## v7.1.3 (2022-11-13)
645
+
646
+ ### Changed
647
+
648
+ - Improvements to fan accessories (still a work-in-progress)
649
+ - Bump `node` recommended versions to v14.21.1 or v16.18.1 or v18.12.1
650
+
651
+ ### Fixed
652
+
653
+ - Issue with using improperly saved access token
654
+ - AWS fixes for H6009 and H7041
655
+
656
+ ## v7.1.2 (2022-10-31) 🎃
657
+
658
+ ### Changed
659
+
660
+ - Disable BLE for Mac devices as not supported (by noble)
661
+ - Cap out of range colour temperatures from Govee
662
+
663
+ ### Fixed
664
+
665
+ - AWS control for H6159
666
+ - AWS fixes for H6051 and H6056
667
+
668
+ ## v7.1.1 (2022-10-25)
669
+
670
+ ### Fixed
671
+
672
+ - Properly catch errors when parsing notifications with invalid JSON
673
+ - AWS brightness scale for H6182
674
+
675
+ ## v7.1.0 (2022-10-25)
676
+
677
+ ### Added
678
+
679
+ - Store and use account access token locally if possible to avoid re-authenticating on every restart
680
+ - Should reduce cases of 24-hour account suspensions from logging in too many times
681
+ - A `colourSafeMode` setting which will not add `ColorTemperature` to light devices
682
+ - This should help users with old iOS devices in which the`ColorTemperature` cannot be used with `Hue` and `Saturation`
683
+
684
+ ### Changed
685
+
686
+ - More features to the Govee Heater implementation
687
+ - Scene codes will now log only in debug mode
688
+ - General refactoring and code improvements
689
+ - Plugin will override and use debug logging mode if a beta version is installed
690
+
691
+ ### Fixed
692
+
693
+ - Improved AWS support for H6182
694
+ - An issue parsing incoming API updates for lights
695
+ - An issue when brightness was not scaled properly for certain incoming AWS updates
696
+
697
+ ## v7.0.1 (2022-10-22)
698
+
699
+ - More features to the Govee Heater implementation
700
+ - Fixed an issue with incoming AWS updates for accessories not in Homebridge
701
+ - Log all scene codes received for a device (for debugging, this is not permanent)
702
+
703
+ ## v7.0.0 (2022-10-20)
704
+
705
+ ### ⚠️ Config Changes
706
+
707
+ #### New
708
+
709
+ - `httpRefreshTime`
710
+ - Default `30`, minimum `30`
711
+ - `awsRefreshTime`
712
+ - Default `30`, minimum `30`
713
+ - `lanDisable`
714
+ - Default `false`
715
+ - `bleDisable`
716
+ - Default `false`
717
+ - `bleRefreshTime`
718
+ - Default `300`, minimum `60`
719
+
720
+ #### Changed
721
+
722
+ - `refreshTime` has been renamed to `apiRefreshTime`
723
+ - Minimum increased from `15` to `30`
724
+ - `lanStateUpdateInterval` has been renamed to `lanRefreshTime`
725
+ - Default increased from `5` to `30`, minimum increased from `2` to `10`
726
+ - `lanScanInterval`
727
+ - Default increased from `5` to `60`, minimum increased from `2` to `30`
728
+ - `controlInterval` has been renamed to `apiBleControlInterval`
729
+ - Unit changed from `milliseconds` to `seconds`
730
+ - Plugin will try to be backward compatible, dividing any existing values >=500 appropriately
731
+
732
+ ### Added
733
+
734
+ - Support for AWS connection polling
735
+ - Support for H5160 3-channel outlet device
736
+ - Support for BLE-only thermo-hygrometers (integration of homebridge-plugin-govee plugin)
737
+ - Use [govee-bt-client](https://www.npmjs.com/package/govee-bt-client) to connect to certain Govee sensor models via BLE
738
+ - Logout to close Govee session on Homebridge shutdown
739
+
740
+ ### Work in Progress
741
+
742
+ - Continued improved implementation of Govee Heaters
743
+ - Support for H5103 and H5106 temperature/humidity sensors
744
+
745
+ ### Changed
746
+
747
+ - Plugin no longer sends API command if AWS command was successful
748
+ - Plugin no longer requests device state via LAN immediately after sending a command
749
+ - Bump `axios` to v1.1.3
750
+ - Bump `node` recommended versions to v14.20.1 or v16.18.0 or v18.11.0
751
+
752
+ ### Fixed
753
+
754
+ - Multiple general fixes
755
+ - Fixes H5054 leak sensor status reporting (again)
756
+ - Fixes an incorrect error when changing speed of appliances like heaters and humidifiers
757
+
758
+ ## v6.0.4 (2022-10-07)
759
+
760
+ ### Changed
761
+
762
+ - Small timeout to ignore incoming LAN updates when controlled, workaround for incorrect status updates when controlling via LAN
763
+ - Bump `axios` to v1.1.2
764
+
765
+ ## v6.0.3 (2022-10-06)
766
+
767
+ ### Changed
768
+
769
+ - Use configured `label` for accessory name for LAN-only models
770
+
771
+ ## v6.0.2 (2022-10-06)
772
+
773
+ ### Fixed
774
+
775
+ - Ignore `offlineAsOff` for LAN-only devices
776
+ - Remove scene characteristics from LAN-only devices as unsupported
777
+
778
+ ## v6.0.1 (2022-10-06)
779
+
780
+ ### Fixed
781
+
782
+ - A couple of small fixes for when using a custom IP address for LAN control
783
+
784
+ ## v6.0.0 (2022-10-05)
785
+
786
+ ### Added
787
+
788
+ - 🎉 LAN mode! 🎉 (thanks [@alboiuvlad29](https://github.com/alboiuvlad29)!)
789
+ - See [the homebridge-govee wiki](https://github.com/bwp91/homebridge-govee/wiki/Supported-Devices) for supported devices
790
+ - The plugin will scan your local network for supported Govee lights
791
+ - You can also specify the IP address of your Govee light in the config
792
+ - The plugin will match any discovered devices to your existing accessories from cloud usage
793
+ - Supported LAN controls are on/off, brightness, colour and colour temperature
794
+ - The plugin will initially attempt LAN control, if this fails then it will fall back to cloud control
795
+ - **New Devices**
796
+ - Via Govee Developer API v2.0:
797
+ - **Lights**: H61A5, H6078, H604D, H6168, H6601, H70B1, H61A8
798
+ - **Fans:** H7101, H7111
799
+ - **Heaters:** H7130, H7131, H7132
800
+ - **Dehumidifiers:** H7150
801
+ - **Humidifiers:** H7141, H7142, H7160
802
+ - **Purifiers:** H7120, H7121, H7122, H7123
803
+ - Via AWS Connection:
804
+ - **Kettles:** H7170 (ability just to switch on)
805
+ - Via Bluetooth:
806
+ - **Lights:** H617E bluetooth light strip
807
+
808
+ ### Changed
809
+
810
+ - **Revert:** Bluetooth-only devices no longer need to be configured to explicitly enable bluetooth
811
+ - Less bluetooth logging when not in debug mode
812
+ - AWS improvements for H615D
813
+ - AWS improvements for H7050/H7051 (thanks [@alboiuvlad29](https://github.com/alboiuvlad29)!)
814
+ - Correct parameters for `updatePlatformAccessories()`
815
+ - Bump `node` recommended versions to v14.20.1 or v16.17.1
816
+ - Allow for `node` v18.10.0
817
+ - Bump `homebridge` recommended version to v1.5.0
818
+ - Bump `axios` to v1.0.0
819
+ - Updated dev dependencies
820
+
821
+ ### Fixed
822
+
823
+ - Fixed H5054 leak sensor status reporting
824
+
825
+ ### Removed
826
+
827
+ - Removed the `disableAWS` option for lights
828
+ - *This option was implemented when AWS was introduced as a way to disable it for lights that didn't work with it, but now that it's been tested on more lights, it's no longer needed*
829
+
830
+ ## v5.2.0 (2022-06-13)
831
+
832
+ ### Added
833
+
834
+ - **New Devices** via Govee Developer API v1.8
835
+ - H601A, H6046, H6047, H604C, H6057, H605C, H6065, H610B, H61A3, H61E1, H7055, H705A, H705B, H7065
836
+
837
+ ## v5.1.0 (2022-06-08)
838
+
839
+ ### Added
840
+
841
+ - **New Devices**
842
+ - H7123 Air Purifier
843
+ - H7160 Humidifier
844
+
845
+ ### Changed
846
+
847
+ - Bump `node` recommended versions to v14.19.3 or v16.15.1
848
+
849
+ ### Fixed
850
+
851
+ - A potential issue showing errors in the logs
852
+ - AWS improvements for H618E
853
+
854
+ ## v5.0.1 (2022-05-28)
855
+
856
+ ### Changed
857
+
858
+ - Try BLE-only device connection for 8 seconds and 4 seconds for API/AWS models
859
+ - More fixes and refactoring
860
+
861
+ ## v5.0.0 (2022-05-28)
862
+
863
+ ### Potentially Breaking Changes
864
+
865
+ ⚠️ The minimum required version of Homebridge is now v1.4.0
866
+ ⚠️ The minimum required version of Node is now v14
867
+
868
+ ### Changed
869
+
870
+ - Device polling based on number of devices and new Govee limitations
871
+ - Bluetooth-only devices no longer need to be configured to explicitly enable bluetooth
872
+ - Changed to ESM package
873
+ - Bump `node` recommended versions to v14.19.3 or v16.15.0
874
+
875
+ ## v4.30.3 (2022-04-10)
876
+
877
+ ### Fixed
878
+
879
+ - An issue updating colour for certain RGB models
880
+
881
+ ## v4.30.2 (2022-04-03)
882
+
883
+ ### Changed
884
+
885
+ - Updated dependencies
886
+
887
+ ## v4.30.1 (2022-04-01)
888
+
889
+ ### Changed
890
+
891
+ - Bump `aws-iot-device-sdk` to v2.2.12
892
+ - Improve AWS support for H6008, H604A, H6056 and H6073
893
+
894
+ ## v4.30.0 (2022-03-20)
895
+
896
+ ### Added
897
+
898
+ - Support new models via Govee API v1.5:
899
+ - H6009, H604A, H604B, H605D, H6066, H6067, H6091, H615E, H6173, H618F, H61A1, H61A2, H61B2, H7031, H7032, H7041, H7042, H7051, H7061, H7062
900
+ - Added H6101, H6116 to bluetooth only light strips
901
+
902
+ ### Changed
903
+
904
+ - Bump `axios` to v0.26.1
905
+ - Bump `node` recommended versions to v14.19.1 or v16.14.2
906
+
907
+ ## v4.29.0 (2022-02-27)
908
+
909
+ ### Added
910
+
911
+ - Added H604A and H613B to bluetooth only light strips
912
+
913
+ ### Changed
914
+
915
+ - Bump `node` recommended versions to v14.19.0 or v16.14.0
916
+ - Bump `axios` to v0.26.0
917
+
918
+ ### Fixed
919
+
920
+ - Colour support for H613B and H613D via bluetooth, thanks @jbheuschen
921
+ - Improved AWS support for H610A, H6144, H6159, H6172, H61A0, H619C and H619E
922
+ - Improved AWS support for H6052 thanks @DuckMasterAl
923
+
924
+ ## v4.28.0 (2022-02-02)
925
+
926
+ ### Added
927
+
928
+ - Initial support for Govee Fans H7101 and H7111
929
+ - Heating speed and oscillation support for Govee Heater (via `RotationDirection` feature)
930
+
931
+ ### Changed
932
+
933
+ - Bump `homebridge` recommended version to v1.4.0
934
+ - Bump `axios` to v0.25.0
935
+
936
+ ### Fixed
937
+
938
+ - Brightness fix for H6050
939
+ - Improved AWS support for H6072 and H6141
940
+
941
+ ## v4.27.0 (2022-01-15)
942
+
943
+ ### Added
944
+
945
+ - Added H6178 and H617A to bluetooth only light strips
946
+ - Added lock control and display light control to Govee Purifiers
947
+
948
+ ## vFixed
949
+
950
+ - Improved AWS support for H6058 and H605B
951
+
952
+ ## v4.26.0 (2022-01-13)
953
+
954
+ ### Added
955
+
956
+ - Speed control for Govee Purifiers
957
+
958
+ ### Changed
959
+
960
+ - Plugin startup logs will include the model in the device listing
961
+ - Purifier, Heater and Humidifier will no longer debug log (was hard-coded for development)
962
+ - Bump `node` recommended versions to v14.18.3 or v16.13.2
963
+
964
+ ### Fixed
965
+
966
+ - Improved AWS support for H6141
967
+ - Incorrectly marking AWS-only devices as command failed when it was in fact sent
968
+
969
+ ## v4.25.0 (2022-01-09)
970
+
971
+ ### Added
972
+
973
+ - Added two custom scene options called 'Video Mode' for video mode scenes
974
+
975
+ ### Fixed
976
+
977
+ - Properly display a certain error from `bluetooth-hci-socket`
978
+ - Properly throw an error if bluetooth fails and is the only connection method
979
+ - Missing RGB data for selecting 5600K colour temperature
980
+
981
+ ## v4.24.0 (2022-01-08)
982
+
983
+ ### Added
984
+
985
+ - Reinstate support for H6001
986
+
987
+ ### Fixed
988
+
989
+ - Improved AWS support for H6062
990
+
991
+ ## v4.23.2 (2022-01-07)
992
+
993
+ ### Fixed
994
+
995
+ - Improved AWS support for H6003, H6054, H6199
996
+ - Plugin crash for older versions of Homebridge
997
+
998
+ ## v4.23.1 (2021-01-05)
999
+
1000
+ ### Fixed
1001
+
1002
+ - Improved AWS support for H619A
1003
+
1004
+ ## v4.23.0 (2022-01-03)
1005
+
1006
+ ### Added
1007
+
1008
+ - **Logging**
1009
+ - Plugin will log if it notices your device supports the `color/rgb` AWS command, asking to let me know on Github
1010
+
1011
+ ### Fixed
1012
+
1013
+ - Colour and colour temperature fixes for the H6086
1014
+
1015
+ ## v4.22.0 (2021-12-31)
1016
+
1017
+ See ⚠️ for potentially-breaking changes.
1018
+
1019
+ ### Added
1020
+
1021
+ - **New Devices**
1022
+ - Added H6005 to bluetooth only light strips
1023
+ - Added H5071 to thermo-hygrometer devices
1024
+
1025
+ ### Changed
1026
+
1027
+ - Bump `homebridge` recommended version to v1.3.9
1028
+
1029
+ ### Fixed
1030
+
1031
+ - Fixed sending and receiving colour temperature values with `colorwc` AWS command
1032
+
1033
+ ### Removed
1034
+
1035
+ - ⚠️ Remove support for bluetooth-only thermo-hygrometer devices
1036
+ - The plugin will log a recommendation to use `homebridge-plugin-govee`
1037
+
1038
+ ## v4.21.0 (2021-12-30)
1039
+
1040
+ ### Added
1041
+
1042
+ - **New Devices**
1043
+ - Added H6196 to bluetooth only light strips
1044
+ - **Logging**
1045
+ - Plugin will log if it notices your device supports the `colorwc` AWS command, asking to let me know on Github
1046
+
1047
+ ### Changed
1048
+
1049
+ - Improved support for colour temperature for devices that support `colorwc` AWS command
1050
+ - Plugin will log HAPNodeJS version on startup
1051
+
1052
+ ## v4.20.3 (2021-12-29)
1053
+
1054
+ ### Fixed
1055
+
1056
+ - Use `colorwc` AWS command for H6059 and H6143 for colour
1057
+
1058
+ ## v4.20.2 (2021-12-26)
1059
+
1060
+ ### Fixed
1061
+
1062
+ - Hide error stack info for more known warnings on plugin startup
1063
+
1064
+ ## v4.20.1 (2021-12-24)
1065
+
1066
+ ### Fixed
1067
+
1068
+ - Sending colour updates via BLE was sometimes incorrectly marked as not supported
1069
+ - A `Disabling HTTP client as server is busy` message
1070
+ - AWS brightness fix for H6059
1071
+
1072
+ ## v4.20.0 (2021-12-21)
1073
+
1074
+ ### Added
1075
+
1076
+ - **New Devices**
1077
+ - Added H613E to bluetooth only light strips
1078
+ - Added H5174 to thermo-hygrometer devices (although not properly supported since BLE-only)
1079
+ - **Simulations**
1080
+ - Expose an outlet device as a `Heater` or `Cooler` accessory type, using the current temperature value from another Govee, eWeLink or Meross sensor (eWeLink and Meross sensors will not work with HOOBS)
1081
+ - Current temperature values from sensors will be cached in the homebridge storage directory to allow my other plugins to create `Heater` and `Cooler` accessories with the temperature values
1082
+
1083
+ ### Changed
1084
+
1085
+ - Some config options rearranged for easier access
1086
+ - Only use the (promise) queue for API updates, ie, don't use the queue for AWS and BLE updates
1087
+
1088
+ ## v4.19.0 (2021-12-08)
1089
+
1090
+ ### Added
1091
+
1092
+ - **New Devices**
1093
+ - On/Off capability for Govee Purifiers H7121 and H7122
1094
+ - Support for Govee Humidifier H7142
1095
+ - Added H6055, H6114, H6145, H6146, H7010, H7001, H7002, H7011, H7015, H7016, H7023, H7024 and H7090 to bluetooth only light strips
1096
+ - **Simulations**
1097
+ - Expose a single switch as an `Audio Receiver`, `Set Top Box`, `Streaming Stick`, `Tap/Faucet`, or `Valve` HomeKit accessory type
1098
+
1099
+ ### Changed
1100
+
1101
+ - In debug mode, the plugin will log all bluetooth devices discovered when trying to control a light
1102
+ - This can help identify whether bluetooth is working and to find the address of a light strip if the plugin cannot automatically determine it
1103
+ - Bump `homebridge` recommended version to v1.3.8
1104
+ - Bump `node` recommended versions to v14.18.2 or v16.13.1
1105
+
1106
+ ### Fixed
1107
+
1108
+ - Avoid repeated logging for state changes of certain accessories
1109
+ - Properly remove ignored accessories from the Homebridge cache
1110
+
1111
+ ## v4.18.0 (2021-11-18)
1112
+
1113
+ ### Added
1114
+
1115
+ - **New Devices**
1116
+ - Added H613D to bluetooth only light strips
1117
+ - Added H5177 to thermo-hygrometer devices
1118
+ - Added H605B, H6087, H6172, H619B, H619D, H619Z, H610A, H6059, H7028, H6198 and H6049 to API enabled models
1119
+ - Added H61A0 and H7060 to API enabled models and removed from BLE-only models
1120
+
1121
+ ### Fixed
1122
+
1123
+ - AWS brightness fix for H6003, H6008 and H6062
1124
+ - AWS colour fix for H6003
1125
+
1126
+ ## v4.17.0 (2021-11-03)
1127
+
1128
+ ### Added
1129
+
1130
+ - **New Devices**
1131
+ - Added H5100 to thermo-hygrometer devices
1132
+ - Added H617C to bluetooth only light strips
1133
+ - Govee Heater H7130 partial implementation
1134
+ - Govee Humidifier H7141 partial implementation
1135
+
1136
+ ### Changed
1137
+
1138
+ - Configuration text label from `username` to `email` for clarification
1139
+ - Revert back from `@homebridge/noble` to `@abandonware/noble`
1140
+
1141
+ ## v4.16.0 (2021-10-31)
1142
+
1143
+ ### Added
1144
+
1145
+ - **New Devices**
1146
+ - Added H613A to bluetooth only light strips
1147
+ - Added H613C to bluetooth only light strips
1148
+ - Added H61A0 to bluetooth only light strips
1149
+ - **Logging**
1150
+ - AWS account topic and device topics will now be redacted from the Homebridge log
1151
+
1152
+ ### Changed
1153
+
1154
+ - Bump `node` recommended versions to v14.18.1 or v16.13.0
1155
+ - Bump `axios` to v0.24.0
1156
+
1157
+ ## v4.15.0 (2021-10-20)
1158
+
1159
+ ### Added
1160
+
1161
+ - **New Devices**
1162
+ - Added H5102 to temperature/humidity sensors
1163
+
1164
+ ### Changed
1165
+
1166
+ - Some small changes to Fakegato debug logging
1167
+
1168
+ ## v4.14.0 (2021-10-16)
1169
+
1170
+ ### Added
1171
+
1172
+ - **New Devices**
1173
+ - Added H5074 to temperature/humidity sensors
1174
+ - Added H613C to bluetooth only light strips
1175
+
1176
+ ### Changed
1177
+
1178
+ - Recommended node versions bumped to v14.18.1 or v16.11.1
1179
+ - Recommended Homebridge bumped to v1.3.5
1180
+ - Bump `axios` to v0.23.0
1181
+
1182
+ ### Fixed
1183
+
1184
+ - H6072 brightness and colour commands don't work with AWS
1185
+
1186
+ ## v4.13.1 (2021-10-03)
1187
+
1188
+ ### Changed
1189
+
1190
+ - Updated bluetooth dependencies
1191
+
1192
+ ## v4.13.0 (2021-10-03)
1193
+
1194
+ ### Added
1195
+
1196
+ - **New Devices**
1197
+ - Added H6170 to bluetooth only light strips
1198
+
1199
+ ### Changed
1200
+
1201
+ - Bump `axios` to v0.22.0
1202
+
1203
+ ## v4.12.3 (2021-09-30)
1204
+
1205
+ ### Changed
1206
+
1207
+ - Recommended node versions bumped to v14.18.0 or v16.10.0
1208
+
1209
+ ## v4.12.2 (2021-09-25)
1210
+
1211
+ ### Fixed
1212
+
1213
+ - 'Segmented' scenes not being added correctly
1214
+
1215
+ ## v4.12.1 (2021-09-25)
1216
+
1217
+ ### Changed
1218
+
1219
+ - Use `@homebridge/noble` repo to fix noble `EALREADY` crash
1220
+
1221
+ ## v4.12.0 (2021-09-21)
1222
+
1223
+ ### Added
1224
+
1225
+ - Added four more custom scene options called 'Segmented' for segmented light scenes
1226
+ - Added the option to use an AWS code using the `bulb` AWS command property
1227
+
1228
+ ## v4.11.0 (2021-09-14)
1229
+
1230
+ ### Added
1231
+
1232
+ - **New Devices**
1233
+ - Added `H5082` to dual outlet devices
1234
+ - New `offlineAsOff` setting to show offline devices as OFF in HomeKit
1235
+
1236
+ ### Fixed
1237
+
1238
+ - Don't throw error when **only** AWS update is used
1239
+ - Disable colour commands via AWS/BLE for `H6199` as seems not supported
1240
+
1241
+ ## v4.10.0 (2021-09-09)
1242
+
1243
+ ### Added
1244
+
1245
+ - **New Devices**
1246
+ - Added `H5053` to temperature/humidity sensors supported list
1247
+
1248
+ ### Changed
1249
+
1250
+ - `configureAccessory` function simplified to reduce chance of accessory cache retrieval failing
1251
+ - Bump `axios` to v0.21.4
1252
+
1253
+ ## v4.9.0 (2021-09-05)
1254
+
1255
+ ### Added
1256
+
1257
+ - **New Devices**
1258
+ - Added `H6147` to bluetooth-only supported list
1259
+
1260
+ ### Changed
1261
+
1262
+ - Recommended node version bumped to v14.17.6
1263
+ - Bump `axios` to v0.21.3
1264
+
1265
+ ## v4.8.0 (2021-08-30)
1266
+
1267
+ ### Added
1268
+
1269
+ - Added `H5072` to not-supported list
1270
+
1271
+ ### Changed
1272
+
1273
+ - Remove `node-machine-id` in favour of generating a client id based on Govee username
1274
+ - AWS client id is now unique per device
1275
+
1276
+ ## v4.7.0 (2021-08-26)
1277
+
1278
+ ### Added
1279
+
1280
+ - **New Devices**
1281
+ - Added `H6102` to bluetooth-only supported list
1282
+
1283
+ ## v4.6.0 (2021-08-22)
1284
+
1285
+ ### Added
1286
+
1287
+ - **New Devices**
1288
+ - Added `H6179` to bluetooth-only supported list
1289
+
1290
+ ## v4.5.0 (2021-08-16)
1291
+
1292
+ ### Added
1293
+
1294
+ - **New Devices**
1295
+ - Added `H6138` to bluetooth-only supported list
1296
+ - Added `H6001` to not-supported list (model must use undocumented bluetooth commands)
1297
+
1298
+ ### Changed
1299
+
1300
+ - **Unsupported Devices**
1301
+ - Plugin will remove existing accessories whose model is unsupported
1302
+ - **Platform Versions**
1303
+ - Recommended node version bumped to v14.17.5
1304
+
1305
+ ### Fixed
1306
+
1307
+ - More specific-case logging when device updates fail (eg not displaying reverting to API if not unsupported API model)
1308
+ - Plugin will ignore incoming AWS updates when controlling colour temperature as can sometimes incorrectly disable adaptive lighting
1309
+ - Attempt to fix a situation when `node-machine-id` fails to obtain the machine uuid
1310
+ - Attempt to fix a situation when the plugin would crash Homebridge in a loop if running on a non-macOS platform with no bluetooth module
1311
+
1312
+ ## v4.4.1 (2021-08-10)
1313
+
1314
+ ### Fixed
1315
+
1316
+ - Removed H6144 from 'scale brightness' list, fixes [#99](https://github.com/bwp91/homebridge-govee/issues/99)
1317
+
1318
+ ## v4.4.0 (2021-08-09)
1319
+
1320
+ ### Added
1321
+
1322
+ - **New Devices**
1323
+ - Added `H5051` to temp/humidity sensor supported list
1324
+ - Added new API models: `H7050` `H6051` `H6056` `H6061` `H6058` `H6073` `H6076` `H619A` `H619C` `H618A` `H618C` `H6008` `H6071` `H6075` `H614A` `H614B` `H614E` `H618E` `H619E`
1325
+
1326
+ ## v4.3.0 (2021-08-05)
1327
+
1328
+ ### Added
1329
+
1330
+ - **New Devices**
1331
+ - Added `H5101` to temp/humidity sensor supported list
1332
+
1333
+ ### Changed
1334
+
1335
+ - **AWS Codes**
1336
+ - ⚠️ The format of the code that the plugin needs has changed
1337
+ - You will need to re-obtain your AWS codes using the same method as before and save them into the configuration
1338
+
1339
+ ### Fixed
1340
+
1341
+ - Fixes an issue preventing outlet devices from initialising
1342
+
1343
+ ## v4.2.0 (2021-08-04)
1344
+
1345
+ ### Added
1346
+
1347
+ - **New Devices**
1348
+ - Added `H6126` to bluetooth-only supported list
1349
+
1350
+ ### Fixed
1351
+
1352
+ - Fixes an issue where AWS was not being enabled for non-configured light strips
1353
+
1354
+ ## v4.1.0 (2021-08-04)
1355
+
1356
+ ### Added
1357
+
1358
+ - **Govee Lights**
1359
+ - Support for two more custom scene codes and two mode custom diy mode codes
1360
+ - **New Devices**
1361
+ - Added `H6125` to bluetooth-only supported list
1362
+
1363
+ ### Fixed
1364
+
1365
+ - **Logging**
1366
+ - Certain common errors made easier to read
1367
+ - Stringify new device objects so they appear in HOOBS log
1368
+
1369
+ ## v4.0.2 (2021-07-30)
1370
+
1371
+ ### Changed
1372
+
1373
+ - A log warning for certain models which use a different data format for scenes
1374
+
1375
+ ### Fixed
1376
+
1377
+ - Adaptive Lighting will now be turned off when using the Govee app to use a scene for these certain models
1378
+
1379
+ ## v4.0.1 (2021-07-29)
1380
+
1381
+ ### Fixed
1382
+
1383
+ - An issue where custom scenes weren't visible in Eve app
1384
+
1385
+ ## v4.0.0 (2021-07-29)
1386
+
1387
+ ### Added
1388
+
1389
+ - **New Devices**
1390
+ - Added `H6127` to the bluetooth only model list
1391
+ - Added `H6171` to the bluetooth only model list
1392
+ - **Configuration**
1393
+ - Plugin will now check for duplicate device ID entries in the config and ignore them
1394
+
1395
+ ### Changed
1396
+
1397
+ - ⚠️ **Platform Versions**
1398
+
1399
+ - Recommended node version bumped to v14.17.4
1400
+ - Recommended homebridge version bumped to v1.3.4
1401
+
1402
+ - ⚠️ **AWS Control**
1403
+ - AWS connection is now **enabled** by default for Govee Lights that support this mode
1404
+ - If for any reason you want to disable this then there is a new 'Disable AWS Control' setting
1405
+
1406
+ ### Fixed
1407
+
1408
+ - Older models may supply device id in a format without colons and in lowercase (plugin reformats)
1409
+ - Use device ble address that Govee sometimes supplies rather than calculating from existing device id
1410
+ - Removed `H6141` from bluetooth only model list as is in fact wifi too
1411
+
1412
+ ### Removed
1413
+
1414
+ - 'Experimental' labels have been removed from AWS control, BLE control and scene mode settings
1415
+ - Whilst maybe not perfect(!), a lot of users have had success with both connection methods
1416
+
1417
+ ## v3.8.0 (2021-07-27)
1418
+
1419
+ ### Added
1420
+
1421
+ - `H6053` and `H6141` light models to bluetooth-only supported list
1422
+ - Optionally use a base64 encoded version of your Govee password in the configuration
1423
+
1424
+ ## v3.7.0 (2021-07-22)
1425
+
1426
+ ### Added
1427
+
1428
+ - **New Devices**
1429
+ - Support for the H5075 Thermo-Hygrometer via wifi connection
1430
+ - Readings may not be reliable. Recommended to use homebridge-plugin-govee to connect over bluetooth.
1431
+ - **Govee Lights**
1432
+ - Added support for colour temperature control over AWS connection
1433
+ - Plugin will apply 'ignore timeout' for incoming API updates if incoming update received over AWS
1434
+
1435
+ ### Changed
1436
+
1437
+ - **Govee Lights**
1438
+
1439
+ - Plugin now uses a fix list of kelvin to RGB calculations (not a formula) which are the values that Govee uses
1440
+ - Reduced 'ignore timeout' from 2 minutes to 1 minute as Govee API reaction times seem to have improved
1441
+
1442
+ ## v3.6.0 (2021-07-20)
1443
+
1444
+ ### Added
1445
+
1446
+ - **Experimental AWS Control**
1447
+ - This release includes a new connection method for certain Govee Light models - AWS control - which can improve response times when controlling lights (AWS control is a real-time persistent connection)
1448
+ - As with the bluetooth connection, this is still experimental and will only be enabled if explicitly enabled in the plugin settings
1449
+ - You can check whether your model supports this connection method in the Homebridge plugin settings UI on the 'My Devices' tab
1450
+ - The different connection methods work with each other so it is possible to enable both AWS and bluetooth control for your lights
1451
+ - **Scenes/Music/DIY Modes**
1452
+ - If you Govee Lights support AWS or bluetooth connection, you can use the plugin settings and the Eve app to setup HomeKit scenes for your Govee scenes, music mode and DIY modes that you have created in the Govee app. Check the wiki for more information.
1453
+ - **New Devices**
1454
+ - Support for the H5179 Thermo-Hygrometer via wifi connection
1455
+ - Experimental support for the H5054 Leak Sensor via wifi connection
1456
+ - The plugin will now log extra information for devices that are not currently supported to be included in a Github issue to see whether support can be enabled for more models in the future
1457
+
1458
+ ### Changed
1459
+
1460
+ - A bluetooth connection will no longer disconnect and reconnect to the same lights if the connection still exists from a previous update
1461
+ - Certain bluetooth (noble) warnings will now only appear in the log when the plugin is in debug mode
1462
+
1463
+ ### Fixed
1464
+
1465
+ - A number of bugs/problems concerning the bluetooth packages and connection
1466
+ - An issue preventing Govee Outlets from initialising into Homebridge
1467
+
1468
+ ## v3.5.1 (2021-07-14)
1469
+
1470
+ ### Changed
1471
+
1472
+ - Bluetooth device disconnection log message only shown in debug mode
1473
+
1474
+ ### Fixed
1475
+
1476
+ - A bug preventing accessories being added to Homebridge
1477
+ - A characteristic warning when an out of range brightness is received from Govee
1478
+
1479
+ ## v3.5.0 (2021-07-14)
1480
+
1481
+ ### Added
1482
+
1483
+ - Support for AWS control of certain devices
1484
+ - Structure for supporting Govee leak sensors
1485
+
1486
+ ### Changed
1487
+
1488
+ - Continued bluetooth control changes
1489
+
1490
+ ### Fixed
1491
+
1492
+ - An issue where bluetooth control wasn't adhering to the configuration
1493
+
1494
+ ## v3.4.4 (2021-07-13)
1495
+
1496
+ ## v3.4.3 (2021-07-13)
1497
+
1498
+ ## v3.4.2 (2021-07-13)
1499
+
1500
+ ### Changed
1501
+
1502
+ - Continued refactoring and testing of bluetooth implementation
1503
+
1504
+ ## v3.4.1 (2021-07-12)
1505
+
1506
+ ### Changed
1507
+
1508
+ - Try sending colour temperature over bluetooth for models with cold/warm leds
1509
+ - Small changes to logging, makes it clearer when updates are sent/received over bluetooth or cloud
1510
+
1511
+ ### Fixed
1512
+
1513
+ - An issue where brightness would be repeatedly logged if the received value is more than `100`
1514
+
1515
+ ## v3.4.0 (2021-07-12)
1516
+
1517
+ ### Added
1518
+
1519
+ - Support for Bluetooth control for power/brightness/colour for supported devices
1520
+ - Extra packages may need to be installed on your system - [see wiki](https://github.com/bwp91/homebridge-govee/wiki/Bluetooth-Control)
1521
+ - Enter your Govee username and password in the config
1522
+ - Create an entry for your light in the 'Light Devices' section and check 'Enable Bluetooth Control'
1523
+
1524
+ ### Changed
1525
+
1526
+ - **Homebridge UI**
1527
+ - `label` field now appears first in the device configuration sections
1528
+ - A device can now be ignored/removed from Homebridge by the `ignoreDevice` setting in the device configuration sections
1529
+
1530
+ ### Removed
1531
+
1532
+ - `ignoredDevices` configuration option (see alternate way of ignore a device above)
1533
+
1534
+ ## v3.3.2 (2021-07-08)
1535
+
1536
+ ### Changes
1537
+
1538
+ - Revert node version bump to v14.17.3 (back to v14.17.2)
1539
+
1540
+ ## v3.3.1 (2021-07-07)
1541
+
1542
+ ## vFixed
1543
+
1544
+ - Brightness issue for H6054
1545
+
1546
+ ## v3.3.0 (2021-07-06)
1547
+
1548
+ ### Added
1549
+
1550
+ - **Govee Outlets**
1551
+ - `showAs` setting to expose Govee outlet devices as a `Switch` or `AirPurifier` accessory in HomeKit
1552
+ - **Govee Lights**
1553
+ - Remove Adaptive Lighting feature from a device by setting the `adaptiveLightingShift` to `-1`
1554
+ - **Accessory Logging**
1555
+ - `overrideLogging` setting per device type (to replace the removed `overrideDisabledLogging`), which can be set to (and will override the global device logging and debug logging settings):
1556
+ - `"default"` to follow the global device update and debug logging setting for this accessory (default if setting not set)
1557
+ - `"standard"` to enable device update logging but disable debug logging for this accessory
1558
+ - `"debug"` to enable device update and debug logging for this accessory
1559
+ - `"disable"` to disable device update and debug logging for this accessory
1560
+
1561
+ ### Changed
1562
+
1563
+ - ⚠️ Govee outlet devices (currently exposed as a `Switch`) will now be exposed as an `Outlet` by default
1564
+ - Light devices will now turn on to the previous brightness (not 100%) when turning on after setting brightness to 0%
1565
+ - More interactive Homebridge UI - device configuration will expand once device ID entered
1566
+ - Small changes to the startup logging
1567
+ - Recommended node version bump to v14.17.3
1568
+
1569
+ ### Removed
1570
+
1571
+ - `overrideDisabledLogging` setting for each accessory type
1572
+
1573
+ ## v3.2.4 (2021-06-06)
1574
+
1575
+ ### Changed
1576
+
1577
+ - Switch list of 'models to not scale brightness' to a list of 'models **to** scale brightness'
1578
+ - Use `standard-prettier` code formatting
1579
+ - Recommended node version bump to v14.17.0
1580
+
1581
+ ## v3.2.3 (2021-05-10)
1582
+
1583
+ ### Changed
1584
+
1585
+ - Round kelvin value sent to Govee to nearest 100
1586
+ - Skip Adaptive Lighting update if kelvin value is same as previous update
1587
+ - Show light as off if brightness set to 0%
1588
+
1589
+ ## v3.2.2 (2021-05-10)
1590
+
1591
+ ### Removed
1592
+
1593
+ - Removed `language` config option
1594
+
1595
+ ## v3.2.1 (2021-05-10)
1596
+
1597
+ ### Removed
1598
+
1599
+ - Removed `forceUpdates` config option - this is now hard-coded to `true`
1600
+
1601
+ ## v3.2.0 (2021-05-10)
1602
+
1603
+ ### Added
1604
+
1605
+ - Support for new outlet devices:
1606
+ - `H5080`
1607
+ - Support for new RGB devices:
1608
+ - `H6062` `H6072`
1609
+ - `H611A` `H611B` `H611C` `H611Z` `H6121` `H614C` `H614D` `H615A` `H615B` `H615C` `H615D` `H6154`
1610
+ - `H7006` `H7007` `H7008` `H7012` `H7013` `H7020`
1611
+ - Use minimum and maximum kelvin reported per devices for models that support this
1612
+ - Show minimum and maximum kelvin values reported by device in plugin-ui
1613
+
1614
+ ### Changed
1615
+
1616
+ - Catch polling '400' error separately and only show in logs when in debug mode
1617
+ - Reduce 'No Response' timeout to 2 seconds
1618
+ - Ensure user is using at least Homebridge v1.3.0
1619
+
1620
+ ### Fixed
1621
+
1622
+ - Brightness fix for H6052
1623
+ - Update the correct corresponding characteristic after the 'No Response' timeout
1624
+
1625
+ ## v3.1.4 (2021-05-04)
1626
+
1627
+ ### Changed
1628
+
1629
+ - Accessory 'identify' function will now add an entry to the log
1630
+ - Backend refactoring, function and variable name changes
1631
+
1632
+ ### Removed
1633
+
1634
+ - Removal of device 'retrievable' and 'controllable' status as they seem to serve no purpose
1635
+
1636
+ ## v3.1.3 (2021-04-24)
1637
+
1638
+ ### Changed
1639
+
1640
+ - Use `colorTem` for colour temperature updates for devices that support this command
1641
+ - This will use the white LEDs on devices that have them
1642
+ - Include a link in the 'device offline' log message for further details of this issue
1643
+
1644
+ ### Fixed
1645
+
1646
+ - Fixes a brightness issue with the H6143 model
1647
+
1648
+ ## v3.1.2 (2021-04-16)
1649
+
1650
+ ### Changed
1651
+
1652
+ - Recover accessories from the cache using the UUID
1653
+ - Update wiki links in the Homebridge plugin-ui
1654
+
1655
+ ### Fixed
1656
+
1657
+ - Fix characteristic NaN warning for `LastActivation`
1658
+
1659
+ ## v3.1.1 (2021-04-12)
1660
+
1661
+ ### Changed
1662
+
1663
+ - Updated plugin-ui 'Support' page links to match GitHub readme file
1664
+
1665
+ ## v3.1.0 (2021-04-07)
1666
+
1667
+ ### Added
1668
+
1669
+ - `forceUpdates` configuration option for force-sending device updates even if Govee is reporting your devices as offline
1670
+
1671
+ ### Changed
1672
+
1673
+ - Updated README to reflect minimum supported Homebridge/HOOBS and Node versions
1674
+ - Updated recommended Node to v14.16.1
1675
+
1676
+ ### Removed
1677
+
1678
+ - Removed development code for scene support
1679
+
1680
+ ## v3.0.0 (2021-04-03)
1681
+
1682
+ ### Requirements
1683
+
1684
+ - **Homebridge Users**
1685
+
1686
+ - This plugin has a minimum requirement of Homebridge v1.3.3
1687
+
1688
+ - **HOOBS Users**
1689
+ - This plugin has a minimum requirement of HOOBS v3.3.4
1690
+
1691
+ ### Changed
1692
+
1693
+ - Use the new `.onSet` methods available in Homebridge v1.3
1694
+ - Plugin will report 'offline' devices with a 'No Response' message in HomeKit apps when controlled (and this status will be reverted after 5 seconds)
1695
+
1696
+ ## v2.14.2 (2021-03-22)
1697
+
1698
+ ### Changed
1699
+
1700
+ - Updated plugin ui to use reported `online` status for the 'Cloud Status' instead of the reported `controllable` status
1701
+
1702
+ ## v2.14.1 (2021-03-21)
1703
+
1704
+ ### Fixed
1705
+
1706
+ - Fixes an issue with online/offline status as certain devices seem to report status as a boolean (not as a string)
1707
+
1708
+ ## v2.14.0 (2021-03-21)
1709
+
1710
+ ### Added
1711
+
1712
+ - Device online/offline status logging to make it clearer if a device is connected to wifi
1713
+
1714
+ ### Changed
1715
+
1716
+ - **Light devices** will now send on/off commands **after** brightness and colour ([#56](https://github.com/bwp91/homebridge-govee/issues/56))
1717
+ - More welcome messages
1718
+ - Updated `plugin-ui-utils` dependency
1719
+
1720
+ ## v2.13.2 (2021-03-17)
1721
+
1722
+ ### Changed
1723
+
1724
+ - Modified config schema to show titles/descriptions for non Homebridge UI users
1725
+
1726
+ ## v2.13.1 (2021-03-14)
1727
+
1728
+ ### Changed
1729
+
1730
+ - Adaptive Lighting now requires Homebridge 1.3 release
1731
+
1732
+ ## v2.13.0 (2021-03-01)
1733
+
1734
+ ### Added
1735
+
1736
+ - A `label` setting per device group which has no effect except to help identify the device when editing the configuration
1737
+ - Show a red/green icon in the Homebridge plugin-ui to show device reachability
1738
+ - Plugin will automatically retry HTTP connection on startup in the event of certain error codes
1739
+ - **In Development**
1740
+ - A configuration option to expose four non-working scenes per light device
1741
+ - The idea of this is to experiment with how scenes could work if Govee enable this functionality through the API
1742
+ - The scene buttons that appear have **no** effect except logging what should happen
1743
+
1744
+ ### Changed
1745
+
1746
+ - Less strict threshold for determining a 'significant' colour change for disabling Adaptive Lighting
1747
+ - Show a more user friendly log message on timeout error from Govee
1748
+ - 502 and timeout errors will be hidden from the log if one has already been received during the previous minute
1749
+ - Updated minimum Node to v14.16.0
1750
+
1751
+ ## v2.12.2 (2021-02-17)
1752
+
1753
+ ### Changed
1754
+
1755
+ - In debug mode, the plugin will log each device's customised options when initialised
1756
+
1757
+ ## v2.12.1 (2021-02-17)
1758
+
1759
+ ### Changed
1760
+
1761
+ - Raised minimum Homebridge beta required for Adaptive Lighting to 1.3.0-beta.58
1762
+
1763
+ ## v2.12.0 (2021-02-13)
1764
+
1765
+ ### Added
1766
+
1767
+ - A configurable minimum brightness step per Govee light bulb/strip
1768
+ - The ability to explicitly enable device logging _per_ device if you have `disableDeviceLogging` set to `true`
1769
+
1770
+ ### Changed
1771
+
1772
+ - Show a more user friendly log message on 502 error from Govee
1773
+ - Stop subsequent warning messages if a device fails to initialise
1774
+ - Changes to colour conversion:
1775
+ - Lighter colours appear brighter
1776
+ - Solid red is now easier to obtain via the Home app
1777
+
1778
+ ## v2.11.2 (2021-02-11)
1779
+
1780
+ ### Changed
1781
+
1782
+ - Suitable range for `adaptiveLightingShift` added to description
1783
+ - Link to 'Uninstall' wiki page in the plugin-ui
1784
+ - Updated minimum Homebridge to v1.1.7
1785
+ - Fakegato library formatting and simplification
1786
+
1787
+ ### Removed
1788
+
1789
+ - Removed concurrency limit from http queue as throttling is based on the interval and cap
1790
+
1791
+ ## v2.11.1 (2021-02-10)
1792
+
1793
+ ### Changed
1794
+
1795
+ - Updated minimum node to v14.15.5
1796
+
1797
+ ### Fixed
1798
+
1799
+ - Fixes an issue when initialising switch devices
1800
+
1801
+ ## v2.11.0 (2021-02-09)
1802
+
1803
+ ### Added
1804
+
1805
+ - 'Light Devices' config section where you can define settings per device, starting with:
1806
+ - New `adaptiveLightingShift` option to offset the Adaptive Lighting values to make the light appear warmer
1807
+ - Eve history service for Govee Wi-Fi switches
1808
+
1809
+ ### Changed
1810
+
1811
+ - User inputted Govee device IDs will now be parsed more thoroughly
1812
+
1813
+ ### Fixed
1814
+
1815
+ - Fixed a bug when trying to select a different device in the Homebridge plugin-ui
1816
+
1817
+ ## v2.10.1 (2021-02-08)
1818
+
1819
+ ### Changed
1820
+
1821
+ - Improvements to colour temperature conversion
1822
+
1823
+ ### Fixed
1824
+
1825
+ - Fixed a bug where Adaptive Lighting would not be disabled if the colour was changed from the Govee app
1826
+ - Hide the `Config entry [plugin_map] is unused and can be removed` notice for HOOBS users
1827
+
1828
+ ## v2.10.0 (2021-02-08)
1829
+
1830
+ ### Added
1831
+
1832
+ - Configuration setting `controlInterval` to change the 7500ms delay introduced in v2.9.0
1833
+ - This setting is visible in the Homebridge plugin UI screen under 'Optional Settings'
1834
+ - The default value for this setting will be 500ms but if you experience connectivity issues I would suggest increasing this number (by multiples of 500) until you find a value which works well for you
1835
+
1836
+ ### Changed
1837
+
1838
+ - Error stack will be hidden when the disabled plugin message appears in the log
1839
+ - More colour conversation formula changes
1840
+
1841
+ ### Fixed
1842
+
1843
+ - Brightness fix for the H6003
1844
+
1845
+ ## v2.9.0 (2021-02-06)
1846
+
1847
+ ### Added
1848
+
1849
+ - This release hopes to bring more reliability when using HomeKit scenes and device groupings, by using:
1850
+ - A queueing system for device updates (HTTP requests) to replace the random delays
1851
+ - Delays between HTTP requests are set to 7.5 seconds which seems to work reliably
1852
+ - The refresh interval for device sync will skip whilst device updates are being sent
1853
+ - Configuration checks to highlight any unnecessary or incorrectly formatted settings you have
1854
+ - Link to 'Configuration' wiki page in the plugin-ui
1855
+
1856
+ ### Changed
1857
+
1858
+ - ⚠️ `ignoredDevices` configuration option is now an array not a string
1859
+ - If a device's current status cannot be retrieved then the log message will only be displayed in debug mode
1860
+ - Colour conversation formula changes
1861
+ - Error messages refactored to show the most useful information
1862
+ - [Backend] Major code refactoring
1863
+ - [Backend] Code comments
1864
+
1865
+ ## v2.8.4 (2021-01-29)
1866
+
1867
+ ### Changed
1868
+
1869
+ - More consistent and clearer error logging
1870
+ - Minor code refactors
1871
+ - Updated plugin-ui-utils dep and use new method to get cached accessories
1872
+
1873
+ ### Fixed
1874
+
1875
+ - H6109 brightness fix
1876
+
1877
+ ## v2.8.3 (2021-01-24)
1878
+
1879
+ ### Fixed
1880
+
1881
+ - H6195 brightness fix
1882
+
1883
+ ## v2.8.2 (2021-01-24)
1884
+
1885
+ ### Changed
1886
+
1887
+ - Backend - better handling of errors
1888
+
1889
+ ## v2.8.1 (2021-01-21)
1890
+
1891
+ ### Changed
1892
+
1893
+ - Minimum Homebridge beta needed for Adaptive Lighting bumped to beta-46.
1894
+
1895
+ ## v2.8.0 (2021-01-18)
1896
+
1897
+ ### Changed
1898
+
1899
+ - Plugin will log incoming device updates in `debug` mode
1900
+ - For standard usage I would recommend to have plugin `debug` mode set to OFF/FALSE, as this change will add an update to your log every X seconds depending on your refresh interval (which is 15 seconds by default)
1901
+
1902
+ ### Fixed
1903
+
1904
+ - Brightness fix for `H7022` model
1905
+
1906
+ ## v2.7.3 (2021-01-14)
1907
+
1908
+ ### Changed
1909
+
1910
+ - Expose H5001, H5081 and H7014 as switches (not lightbulbs)
1911
+ - Ensures brightness value is in [0, 100]
1912
+
1913
+ ## v2.7.1 (2021-01-13)
1914
+
1915
+ ### Changed
1916
+
1917
+ - Created CHANGELOG.md
1918
+
1919
+ ### Fixed
1920
+
1921
+ - Brightness fix for H6188
1922
+
1923
+ ## v2.7.0 (2021-01-12)
1924
+
1925
+ ### New
1926
+
1927
+ - New configuration option `disableDeviceLogging` to stop device state changes being logged
1928
+
1929
+ ### Changed
1930
+
1931
+ - Improved validation checks and formatting for user inputs
1932
+ - Changes to startup log messages
1933
+ - Backend code changes
1934
+
1935
+ ### Removed
1936
+
1937
+ - Removal of maximum value for `number` types on plugin settings screen