@homebridge-plugins/homebridge-meross 10.8.0

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 (54) hide show
  1. package/CHANGELOG.md +1346 -0
  2. package/LICENSE +21 -0
  3. package/README.md +68 -0
  4. package/config.schema.json +2066 -0
  5. package/eslint.config.js +49 -0
  6. package/lib/connection/http.js +345 -0
  7. package/lib/connection/mqtt.js +174 -0
  8. package/lib/device/baby.js +532 -0
  9. package/lib/device/cooler-single.js +447 -0
  10. package/lib/device/diffuser.js +730 -0
  11. package/lib/device/fan.js +530 -0
  12. package/lib/device/garage-main.js +225 -0
  13. package/lib/device/garage-single.js +495 -0
  14. package/lib/device/garage-sub.js +376 -0
  15. package/lib/device/heater-single.js +445 -0
  16. package/lib/device/hub-contact.js +56 -0
  17. package/lib/device/hub-leak.js +86 -0
  18. package/lib/device/hub-main.js +403 -0
  19. package/lib/device/hub-sensor.js +115 -0
  20. package/lib/device/hub-smoke.js +40 -0
  21. package/lib/device/hub-valve.js +377 -0
  22. package/lib/device/humidifier.js +521 -0
  23. package/lib/device/index.js +63 -0
  24. package/lib/device/light-cct.js +474 -0
  25. package/lib/device/light-dimmer.js +312 -0
  26. package/lib/device/light-rgb.js +528 -0
  27. package/lib/device/outlet-multi.js +383 -0
  28. package/lib/device/outlet-single.js +405 -0
  29. package/lib/device/power-strip.js +282 -0
  30. package/lib/device/purifier-single.js +372 -0
  31. package/lib/device/purifier.js +403 -0
  32. package/lib/device/roller-location.js +317 -0
  33. package/lib/device/roller.js +234 -0
  34. package/lib/device/sensor-presence.js +201 -0
  35. package/lib/device/switch-multi.js +403 -0
  36. package/lib/device/switch-single.js +371 -0
  37. package/lib/device/template.js +177 -0
  38. package/lib/device/thermostat.js +493 -0
  39. package/lib/fakegato/LICENSE +21 -0
  40. package/lib/fakegato/fakegato-history.js +814 -0
  41. package/lib/fakegato/fakegato-storage.js +108 -0
  42. package/lib/fakegato/fakegato-timer.js +125 -0
  43. package/lib/fakegato/uuid.js +27 -0
  44. package/lib/homebridge-ui/public/index.html +316 -0
  45. package/lib/homebridge-ui/server.js +10 -0
  46. package/lib/index.js +8 -0
  47. package/lib/platform.js +1256 -0
  48. package/lib/utils/colour.js +581 -0
  49. package/lib/utils/constants.js +377 -0
  50. package/lib/utils/custom-chars.js +165 -0
  51. package/lib/utils/eve-chars.js +130 -0
  52. package/lib/utils/functions.js +39 -0
  53. package/lib/utils/lang-en.js +114 -0
  54. package/package.json +70 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1346 @@
1
+ # Change Log
2
+
3
+ All notable changes to homebridge-meross 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.8.0 (2024-10-13)
12
+
13
+ ### Added
14
+
15
+ - Support for `MS200` and `MSH400`
16
+
17
+ ### Changed
18
+
19
+ - Support node 22
20
+ - Bump `node` recommended versions to `v18.20.4` or `v20.18.0` or `v22.9.0`
21
+ - Updated HomeKit and Matter native ignore list
22
+ - Updated dependencies
23
+
24
+ ## v10.7.0 (2024-07-22)
25
+
26
+ ### Added
27
+
28
+ - Support for `MS600` presence sensor
29
+
30
+ ## v10.6.1 (2024-07-20)
31
+
32
+ ### Fixed
33
+
34
+ - Do not require a new 2FA code when restarting plugin when a valid access token still exists
35
+
36
+ ## v10.6.0 (2024-07-20)
37
+
38
+ ### Added
39
+
40
+ - Support `MSP844` power strip
41
+
42
+ ### Changed
43
+
44
+ - Updated `eslint` and use new code style
45
+
46
+ ## v10.5.1 (2024-07-13)
47
+
48
+ ### Fixed
49
+
50
+ - fix a login issue with using 2fa
51
+
52
+ ## v10.5.0 (2024-07-13)
53
+
54
+ ### Added
55
+
56
+ - Support (beta) `MS100F` temperature sensor
57
+ - Support (beta) thermostat `MTS960`
58
+
59
+ ### Changed
60
+
61
+ - Add MSH300HK to IgnoreHKNative in constants.js (#572) (@LWatso99)
62
+
63
+ ## v10.4.1 (2024-07-13)
64
+
65
+ ### Changed
66
+
67
+ - Fixed for `hap-nodejs` v1.0.0
68
+ - Updated dependencies
69
+ - Bump `node` recommended versions to v18.20.4 or v20.15.1
70
+
71
+ ## v10.4.0 (2024-03-25)
72
+
73
+ ### Added
74
+
75
+ - Support `SP425FW`
76
+ - Enable Power Strips (#569) (@ZeliardM)
77
+ - Expose multichannel switch/outlet devices as a single HomeKit power strip accessory
78
+
79
+ ### Changed
80
+
81
+ - Bump `node` supported versions to v18.19.1 or v20.11.1
82
+ - Updated dependencies
83
+
84
+ ## v10.3.0 (2023-12-30)
85
+
86
+ ⚠️ Some things of note:
87
+
88
+ - The recent updates to the plugin are in response to upcoming changes to the Meross API
89
+ - You may have received an email from Meross about this ([#556](https://github.com/homebridge-plugins/homebridge-meross/issues/556))
90
+ - The plugin will now store your Meross access token (when using cloud/hybrid connection) in the Homebridge storage directory:
91
+ - This allows the plugin to persist your access token between Homebridge restarts
92
+ - The plugin no longer needs to create a login session every time Homebridge starts
93
+ - The plugin should initialise slightly faster when the token is available
94
+ - Users using MFA/2FA on their Meross account will no longer need to update their config every time they restart Homebridge
95
+ - If the stored token has expired, the plugin will attempt once to refresh the token when initialising and store the new one (when MFA/2FA is not enabled on your Meross account)
96
+ - If you are using MFA/2FA on your Meross account:
97
+ - You will need to update the plugin config to include the current code from your authenticator app, otherwise the plugin will not be able to log in
98
+ - The code is only valid for 30 seconds, so you will need to update your config and restart Homebridge within this time
99
+ - If your stored access token becomes invalid/expires, you will need to update your config with the current code and restart Homebridge
100
+ - I am unsure right now how long the access token is valid for!
101
+
102
+ ### Added
103
+
104
+ - persist access token for fewer logins
105
+ - config option to show Meross user key in the log when logging in
106
+ - this used to only show when running beta versions of the plugin
107
+ - for some security, this has been made an option in the config rather than always showing it
108
+ - auto-redirect http calls for users needing different Meross domain
109
+
110
+ ### Fixed
111
+
112
+ - device config setup
113
+
114
+ ## v10.2.8 (2023-12-29)
115
+
116
+ ### Changed
117
+
118
+ - Updated HomeKit native ignore list
119
+
120
+ ### Fixed
121
+
122
+ - Login issues
123
+
124
+ ## v10.2.7 (2023-12-28)
125
+
126
+ ### Fixed
127
+
128
+ - Assume local connection when `userkey` is present in config
129
+
130
+ ## v10.2.6 (2023-12-27)
131
+
132
+ ### Changed
133
+
134
+ - Updated dependencies
135
+ - Updated sign-in API
136
+
137
+ ## v10.2.5 (2023-12-25)
138
+
139
+ ### Fixed
140
+
141
+ - Initialisation issue - incorrectly logging plugin as disabled
142
+
143
+ ## v10.2.4 (2023-12-25)
144
+
145
+ Merry Christmas! :christmas_tree:
146
+
147
+ ### Fixed
148
+
149
+ - Fix a setup combination of cloud and local devices
150
+
151
+ ## v10.2.3 (2023-12-24)
152
+
153
+ ### Changed
154
+
155
+ - API URLs
156
+
157
+ ### Fixed
158
+
159
+ - Fan device configuration
160
+
161
+ ## v10.2.2 (2023-12-22)
162
+
163
+ ### Fixed
164
+
165
+ - Added configuration section for thermostat devices
166
+
167
+ ## v10.2.1 (2023-12-22)
168
+
169
+ ### Changed
170
+
171
+ - Updated HomeKit native ignore list
172
+ - Adding MSS120BR as a HomeKit device (#553) (@djpadz)
173
+ - also added MSS630
174
+ - updated dependencies
175
+
176
+ ### Fixed
177
+
178
+ - fix devices not appearing when forcing local control but credentials still in config
179
+ - Mixed case UUIDs are not found in the deviceConf object (#547) (@mrBudgie)
180
+
181
+ ## v10.2.0 (2023-12-15)
182
+
183
+ ### Added
184
+
185
+ - Support for fan device `MFC100`
186
+
187
+ ### Changed
188
+
189
+ - Bump `node` supported versions to v18.19.0 or v20.10.0
190
+ - Updated dependencies
191
+
192
+ ## v10.1.0 (2023-12-03)
193
+
194
+ ### Added
195
+
196
+ - Support for `MSS105`, `MSS115`, `MSS120`
197
+
198
+ ### Changed
199
+
200
+ - Updated HomeKit native ignore list
201
+ - Updated Matter native ignore list
202
+ - Bump `node` supported versions to v18.18.2 or v20.10.0
203
+ - Updated dependencies
204
+
205
+ ## v10.0.0 (2023-10-17)
206
+
207
+ ### Added
208
+
209
+ - Option to ignore Matter devices (this list will grow over time as users report their Matter devices)
210
+
211
+ ### Changed
212
+
213
+ - Updated HomeKit native ignore list
214
+ - Updated dependencies
215
+ - Bump `node` supported versions to v18.18.2 or v20.8.1
216
+
217
+ ### Removed
218
+
219
+ - Support for node 16
220
+
221
+ ## v9.2.6 (2023-09-18)
222
+
223
+ ⚠️ Note this will be the last version of the plugin to support Node 16.
224
+ - Node 16 moves to 'end of life' on 2023-09-11 ([more info](https://nodejs.org/en/blog/announcements/nodejs16-eol))
225
+ - 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/))
226
+ - 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)
227
+
228
+ ### Changed
229
+
230
+ - Allow roller percentage position for MRS100 hardware version `7.0.0`
231
+ - Added template for MFC100 fan controller, although ignored if HK ignore list is set to true
232
+
233
+ ## v9.2.5 (2023-08-28)
234
+
235
+ ### Changed
236
+
237
+ - Update `axios` to `v1.5.0`
238
+
239
+ ## v9.2.4 (2023-08-26)
240
+
241
+ ### Changed
242
+
243
+ - Improve error logging for locally configured devices when missing the `model` config property
244
+
245
+ ## v9.2.3 (2023-08-19)
246
+
247
+ ### Changed
248
+
249
+ - Config UI: changed "Serial Number (UUID)" to "Device UUID" to prevent any confusion about what to enter
250
+ - Also added a description to these fields to explain that these appear in the Homebridge log when the plugin starts
251
+ - Bump `node` recommended versions to v16.20.2 or v18.17.1 or v20.5.1
252
+
253
+ ### Fixed
254
+
255
+ - Also use MRS100 roller positioning for hardware versions `8.0.0`
256
+
257
+ ## v9.2.2 (2023-07-24)
258
+
259
+ ### Changed
260
+
261
+ - Updated HomeKit native ignore list
262
+
263
+ ## v9.2.1 (2023-07-21)
264
+
265
+ ### Added
266
+
267
+ - Support for MSS425FC
268
+
269
+ ### Changed
270
+
271
+ - Bump `node` recommended versions to v16.20.1 or v18.17.0 or v20.5.0
272
+
273
+ ### Fixed
274
+
275
+ - Leak device status
276
+ - Initialisation issue with roller device with location devices
277
+
278
+ ## v9.2.0 (2023-07-18)
279
+
280
+ ### Added
281
+
282
+ - MSS210P, MSP843P and MSL120DA device support
283
+ - Support for MRS100 models that have % position capabilities
284
+ - Beta support for: MS400 leak sensor and MTS200 thermostat device
285
+
286
+ ### Changed
287
+
288
+ - Bump `node` recommended versions to v16.20.1 or v18.16.1 or v20.4.0
289
+ - Updated dependencies
290
+
291
+ Thanks to @ggfunnn, @Rowbby and @DeadlyVirez for help with implementing some of these new device types 🚀
292
+
293
+ ## v9.1.0 (2023-05-01)
294
+
295
+ ### Added
296
+
297
+ - MSS315 device support
298
+
299
+ ### Changed
300
+
301
+ - README updates
302
+ - Dependency updates
303
+
304
+ ## v9.0.5 (2023-04-22)
305
+
306
+ ### Changed
307
+
308
+ - Bump `node` supported versions to v16.20.0 or v18.16.0 or v20.0.0
309
+ - Updated dependencies
310
+
311
+ ## v9.0.4 (2023-04-20)
312
+
313
+ ### Fixed
314
+
315
+ - Fix to accommodate Meross API change
316
+
317
+ ## v9.0.3 (2023-04-16)
318
+
319
+ ### Changed
320
+
321
+ - Fix custom configs for cloud devices
322
+ - Reduce minimum `homebridge` version to v1.4
323
+ - Bump `node` recommended versions to v16.20.0 or v18.16.0
324
+
325
+ ## v9.0.2 (2023-04-05)
326
+
327
+ ### Changed
328
+
329
+ - Simplify log welcome messages
330
+ - Bump `node` recommended versions to v16.20.0 or v18.15.0
331
+
332
+ ## v9.0.1 (2023-03-11)
333
+
334
+ ### Fixed
335
+
336
+ - Login issue
337
+
338
+ ## v9.0.0 (2023-03-11)
339
+
340
+ ### Breaking
341
+
342
+ - Remove official support for Node 14
343
+ - Remove option to disable plugin - this is now available in the Homebridge UI
344
+ - Remove option for debug logging - this will be enabled when using a beta version of the plugin
345
+ - Remove individual accessory logging options to simplify the config
346
+
347
+ ### Added
348
+
349
+ - Support for:
350
+ - MSS305 outlet (thanks @filipef101!)
351
+ - MSS570M as a dimmer switch
352
+ - Support for custom login domain (thanks @filipef101!)
353
+
354
+ ### Changed
355
+
356
+ - Updated HomeKit native ignore list
357
+ - Bump `homebridge` recommended version to v1.6.0 or v2.0.0-beta
358
+ - Bump `node` recommended versions to v16.19.1 or v18.15.0
359
+ - Updated dependencies
360
+
361
+ ### Fixed
362
+
363
+ - Fix brightness command for MSL100D
364
+
365
+ ## v8.5.3 (2023-01-24)
366
+
367
+ ### Changed
368
+
369
+ - Remove debug (error) logging from hubs
370
+ - Updated dependencies
371
+
372
+ ## v8.5.2 (2023-01-22)
373
+
374
+ ### Fixed
375
+
376
+ - Homebridge characteristic warnings for MSH300 hub MS100 subdevices (again!)
377
+
378
+ ## v8.5.1 (2023-01-20)
379
+
380
+ ### Changed
381
+
382
+ - Updated HomeKit native ignore list
383
+ - Updated dependencies
384
+
385
+ ### Fixed
386
+
387
+ - Homebridge characteristic warnings for MSH300 hub MS100 subdevices
388
+
389
+ ## v8.5.0 (2022-12-18)
390
+
391
+ ### Added
392
+
393
+ - Support for MSS425ER and MOD150
394
+
395
+ ### Changed
396
+
397
+ - `MSH300HK` removed from native HomeKit ignore list as there may be subdevices that are not native
398
+ - If this change affects you with an unwanted subdevice appearing, please open an issue
399
+ - Allow for homebridge 2.0 beta
400
+
401
+ ### Fixed
402
+
403
+ - Fixed logic in local model check
404
+
405
+ ## v8.4.0 (2022-11-10)
406
+
407
+ ### Added
408
+
409
+ - Support for MSL450
410
+
411
+ ### Changed
412
+
413
+ - Updated HomeKit native ignore list
414
+ - Bump `node` recommended versions to v14.21.1 or v16.18.1 or v18.12.1
415
+
416
+ ## v8.3.1 (2022-09-26)
417
+
418
+ ### Fixed
419
+
420
+ - Node versions in package.json (thanks @eburairu!)
421
+
422
+ ## v8.3.0 (2022-09-25)
423
+
424
+ ### Added
425
+
426
+ - Support for MTS200B
427
+ - Work in progress support for Meross GS559AH smoke alarm
428
+
429
+ ### Changed
430
+
431
+ - Updated HomeKit native ignore list
432
+ - Correct parameters for `updatePlatformAccessories()`
433
+ - Updated `homebridge` recommended version to v1.5.0
434
+ - Bump `node` recommended versions to v14.20.1 or v16.17.1
435
+ - Updated dev dependencies
436
+
437
+ ## v8.2.0 (2022-06-08)
438
+
439
+ ### Added
440
+
441
+ - **New Devices**
442
+ - Model SP425EW
443
+
444
+ ### Fixed
445
+
446
+ - A potential issue showing errors in the logs
447
+
448
+ ## v8.1.1 (2022-06-05)
449
+
450
+ ### Changed
451
+
452
+ - Updated HomeKit native ignore list
453
+ - Bump `node` recommended versions to v14.19.3 or v16.15.1
454
+
455
+ ## v8.1.0 (2022-05-29)
456
+
457
+ ### Added
458
+
459
+ - **New Devices**
460
+ - MSL610 light device
461
+
462
+ ## v8.0.1 (2022-05-28)
463
+
464
+ ### Changed
465
+
466
+ - More fixes and refactoring
467
+
468
+ ## v8.0.0 (2022-05-28)
469
+
470
+ ### Potentially Breaking Changes
471
+
472
+ ⚠️ The minimum required version of Homebridge is now v1.4.0
473
+ ⚠️ The minimum required version of Node is now v14
474
+
475
+ ### Changed
476
+
477
+ - Changed to ESM package
478
+ - Bump `node` recommended versions to v14.19.3 or v16.15.0
479
+ - Updated HomeKit native ignore list
480
+
481
+ ## v7.10.1 (2022-04-14)
482
+
483
+ ### Fixed
484
+
485
+ - Cloud login issues
486
+
487
+ ## v7.10.0 (2022-03-29)
488
+
489
+ ### Added
490
+
491
+ - Support MSS510XR
492
+
493
+ ## v7.9.1 (2022-03-20)
494
+
495
+ ### Changed
496
+
497
+ - Bump `node` recommended versions to v14.19.1 or v16.14.2
498
+ - Bump `axios` to v0.26.1
499
+ - Bump `mqtt` to v4.3.7
500
+
501
+ ## v7.9.0 (2022-02-27)
502
+
503
+ ### Added
504
+
505
+ - Support MSS425EX
506
+ - Support MSS120BR
507
+
508
+ ### Changed
509
+
510
+ - Updated HomeKit native ignore list
511
+
512
+ ## v7.8.1 (2022-02-27)
513
+
514
+ ### Changed
515
+
516
+ - Updated HomeKit native ignore list
517
+ - Bump `axios` to v0.26.0
518
+ - Bump `mqtt` to v4.3.6
519
+ - Bump `node` recommended versions to v14.19.0 or v16.14.0
520
+
521
+ ## v7.8.0 (2022-02-08)
522
+
523
+ ### Added
524
+
525
+ - Support MSL120M
526
+ - Custom characteristics to Meross Baby Monitor to allow setting of the four light effects
527
+ - Template for MTS200 thermostat
528
+
529
+ ### Changed
530
+
531
+ - Bump `homebridge` recommended version to v1.4.0
532
+ - Bump `mqtt` to v4.3.5
533
+
534
+ ## v7.7.0 (2022-01-22)
535
+
536
+ ### Added
537
+
538
+ - **New Devices**
539
+ - MSS210R added to supported list
540
+ - **Sensor Hub Devices**
541
+ - Added option to hide/ignore individual subdevices from Homebridge/HomeKit
542
+
543
+ ### Changed
544
+
545
+ - Bump `axios` to v0.25.0
546
+ - Bump `node` recommended versions to v14.18.3 or v16.13.2
547
+
548
+ ## v7.6.1 (2022-01-08)
549
+
550
+ ### Changed
551
+
552
+ - Updated HomeKit native ignore list
553
+ - Bump `mqtt` to v4.3.4
554
+
555
+ ### Fixed
556
+
557
+ - Plugin crash for older versions of Homebridge
558
+
559
+ ## v7.6.0 (2022-01-05)
560
+
561
+ ### Added
562
+
563
+ - **New Devices**
564
+ - HP110A and HP110AHK baby light/sound devices added to supported list
565
+ - This device will be published as an external `Television` service and will need to be added separately to HomeKit
566
+ - It will let you control the on/off state of the sound, change the music and the volume
567
+ - These devices can be configured using the new `babyDevices[]` configuration item
568
+ - MSL320CR added to supported list
569
+
570
+ ### Changed
571
+
572
+ - Updated HomeKit native ignore list ([PR #390](https://github.com/homebridge-plugins/homebridge-meross/pull/390))
573
+ - Plugin will log HAPNodeJS version on startup
574
+ - Bump `mqtt` to v4.3.2
575
+ - Bump `homebridge` recommended version to v1.3.9
576
+
577
+ ## v7.5.0 (2021-12-29)
578
+
579
+ ### Added
580
+
581
+ - **New Devices**
582
+ - MSS565X added to supported list
583
+
584
+ ### Changed
585
+
586
+ - Updated HomeKit native ignore list
587
+ - Updated dependencies
588
+
589
+ ## v7.4.2 (2021-12-26)
590
+
591
+ ### Changed
592
+
593
+ - Bump `mqtt` to v4.3.1
594
+
595
+ ### Fixed
596
+
597
+ - Brightness fix for MSL100R dimmer
598
+
599
+ ## v7.4.1 (2021-12-21)
600
+
601
+ ### Changed
602
+
603
+ - Some config options rearranged for easier access
604
+
605
+ ## v7.4.0 (2021-12-21)
606
+
607
+ ### Added
608
+
609
+ - **New Devices**
610
+ - MSS310X added to supported list
611
+ - MSS426F added to supported list
612
+ - MSS510K and MSS510S added to supported list
613
+ - **Simulations**
614
+ - Expose a single-channel device as a `Heater` or `Cooler` accessory type, using the current temperature value from another Meross, eWeLink or Govee sensor (eWeLink and Govee sensors will not work with HOOBS)
615
+ - 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
616
+ - **Configuration**
617
+ - A `connection` option to globally configure which connection type to use (this does **not** take priority over any `connection` option set for an individual device)
618
+ - To clarify the connection methods:
619
+ - **`hybrid`** will attempt local connection first using the IP provided by Meross, if control fails then cloud control will be used (only available when Meross username and password are configured)
620
+ - **`cloud`** will only attempt cloud connection (useful when devices are located on a separate network, only available when Meross username and password are configured)
621
+ - **`local`** will only attempt local connection using a device IP that **must** be configured (available when meross username and password are configured **or** if the Meross userkey is configured)
622
+
623
+ ### Changed
624
+
625
+ - Plugin will show an error if local control is forced for a device which does not have a manual IP set
626
+
627
+ ### Fixed
628
+
629
+ - Verify local update for device is for correct device and not different device which has changed IP
630
+ - Brightness fix for MSS560M dimmer
631
+
632
+ ## v7.3.1 (2021-12-09)
633
+
634
+ ### Fixed
635
+
636
+ - A `disabling plugin` notice when just the userkey is configured (issue #376)
637
+
638
+ ## v7.3.0 (2021-12-08)
639
+
640
+ ### Added
641
+
642
+ - **New Devices**
643
+ - MSXH0 humidifier added to supported list
644
+
645
+ ### Changed
646
+
647
+ - Plugin will now format and check for valid user key, otherwise will ignore config entry
648
+ - Updated HomeKit native ignore list
649
+ - Bump `homebridge` recommended version to v1.3.8
650
+ - Bump `node` recommended versions to v14.18.2 or v16.13.1
651
+
652
+ ### Fixed
653
+
654
+ - `messageId` increased from 16 to 32 random characters, appears to fix local control for newer device firmware
655
+
656
+ ## v7.2.0 (2021-11-03)
657
+
658
+ ### Added
659
+
660
+ - **New Devices**
661
+ - MDL110 added to supported list
662
+ - MSL120DBR added to supported list
663
+ - MSS110NR added to supported list
664
+
665
+ ### Changed
666
+
667
+ - Updated HomeKit native ignore list
668
+
669
+ ## v7.1.2 (2021-10-31)
670
+
671
+ ### Changed
672
+
673
+ - Updated HomeKit native ignore list
674
+
675
+ ## v7.1.1 (2021-10-27)
676
+
677
+ ### Changed
678
+
679
+ - Bump `node` recommended versions to v14.18.1 or v16.13.0
680
+ - Bump `axios` to v0.24.0
681
+
682
+ ### Fixed
683
+
684
+ - Fixed an issue for HOOBS users related to the fakegato library
685
+
686
+ ## v7.1.0 (2021-10-20)
687
+
688
+ ### Added
689
+
690
+ - **New Devices**
691
+ - MSS560M added to supported list
692
+
693
+ ### Fixed
694
+
695
+ - An Eve app 'no data' gap for garage devices when restarting the plugin
696
+
697
+ ## v7.0.0 (2021-10-16)
698
+
699
+ ### Added
700
+
701
+ **See ⚠️ for breaking changes**
702
+
703
+ - **New Devices**
704
+ - MSH300HK added to supported list
705
+ - MSL320CPR added to supported list
706
+ - MSS426 added to supported list
707
+ - MSS620R added to supported list
708
+ - MTS150 added to supported list
709
+ - **Configuration**
710
+ - A `connection` option per device to choose between
711
+ - `default` (hybrid) - the plugin will attempt local control with the provided IP, and revert to cloud control if necessary
712
+ - `cloud` - local control will be skipped and the plugin will force cloud control
713
+ - `local` - the plugin will only attempt local control (the device IP must be configured)
714
+
715
+ ### Changed
716
+
717
+ - ⚠️ For devices currently using cloud control, the plugin will now first attempt to control the device locally using the network IP provided by Meross. If this local attempt fails for any reason, the plugin will revert to cloud control as before.
718
+ - Updated HomeKit native ignore list
719
+ - Supply more information to the log about an unsupported MSH300 subdevice
720
+ - Recommended node versions bumped to v14.18.1 or v16.11.1
721
+ - Recommended Homebridge bumped to v1.3.5
722
+ - Bump `axios` to v0.23.0
723
+
724
+ ### Fixed
725
+
726
+ - An issue showing Eve historical data for garage doors
727
+ - An error when trying to unregister a hidden accessory from Homebridge
728
+
729
+ ### Removed
730
+
731
+ - ⚠️ The deprecated `devices` setting has been removed
732
+ - ⚠️ `hybridMode` setting has been removed
733
+
734
+ ## v6.13.2 (2021-10-03)
735
+
736
+ ### Changed
737
+
738
+ - Small changes to RGB light devices
739
+ - Bump `axios` to v0.22.0
740
+
741
+ ## v6.13.1 (2021-09-30)
742
+
743
+ ### Changed
744
+
745
+ - Recommended node versions bumped to v14.18.0 or v16.10.0
746
+
747
+ ### Fixed
748
+
749
+ - Increased MSS426S channel count from 6 to 7
750
+ - Fixed a purifier speed mapping issue
751
+
752
+ ## v6.13.0 (2021-09-28)
753
+
754
+ ### Added
755
+
756
+ - **New Devices**
757
+ - MAP100 purifier added to supported list
758
+ - MSS426S added to supported list
759
+
760
+ ### Changed
761
+
762
+ - Updated HomeKit native ignore list
763
+
764
+ ## v6.12.0 (2021-09-14)
765
+
766
+ ### Added
767
+
768
+ - **New Devices**
769
+ - MSS620BR added to supported list
770
+ - MSS710R added to supported list
771
+
772
+ ### Fixed
773
+
774
+ - GitHub issue link for devices awaiting support
775
+
776
+ ## v6.11.0 (2021-09-09)
777
+
778
+ ### Added
779
+
780
+ - **New Devices**
781
+ - MTS100 added to supported list (MTS100V3)
782
+
783
+ ### Changed
784
+
785
+ - `configureAccessory` function simplified to reduce chance of accessory cache retrieval failing
786
+ - Bump `axios` to v0.21.4
787
+
788
+ ### Fixed
789
+
790
+ - Colour (rgb, cct) functions for supported bulbs (including response times and adaptive lighting)
791
+
792
+ ## v6.10.0 (2021-09-05)
793
+
794
+ ### Added
795
+
796
+ - **New Devices**
797
+ - MDL110M added to supported list (unconfirmed working)
798
+ - MSS110RTL added to supported list
799
+
800
+ ### Changed
801
+
802
+ - Updated HomeKit native ignore list
803
+ - Recommended node version bumped to v14.17.6
804
+ - Bump `axios` to v0.21.3
805
+
806
+ ## v6.9.2 (2021-08-30)
807
+
808
+ ### Changed
809
+
810
+ - Updated HomeKit native ignore list
811
+
812
+ ### Fixed
813
+
814
+ - An issue preventing MSG200 from polling for status
815
+
816
+ ## v6.9.1 (2021-08-27)
817
+
818
+ ### Changed
819
+
820
+ - Make timeout error logging more consistent
821
+
822
+ ### Fixed
823
+
824
+ - An issue displaying the correct status of MSG100/MSG200
825
+ - An issue that disabled the plugin when the initial http connection failed
826
+
827
+ ## v6.9.0 (2021-08-25)
828
+
829
+ ### Added
830
+
831
+ - **New Devices**
832
+ - MSS210RTL added to supported list
833
+ - MSL320CP added to supported list
834
+
835
+ ### Changed
836
+
837
+ - More understandable logging on timeout when controlling a device
838
+ - Use `p-timeout` instead of `promise-timeout` for mqtt timeout
839
+
840
+ ### Fixed
841
+
842
+ - An issue initialising a multichannel device when the main accessory has been hidden
843
+
844
+ ## v6.8.0 (2021-08-22)
845
+
846
+ ### Added
847
+
848
+ - **Configuration**
849
+ - Option to globally ignore and remove HomeKit-native devices (for a small number of models so far, work in progress)
850
+ - **New Devices**
851
+ - MSL320C added to supported list
852
+
853
+ ### Changed
854
+
855
+ - Polling errors will now only be shown in debug mode (offline/online entries will still show, as will errors when controlling a device)
856
+
857
+ ### Fixed
858
+
859
+ - Attempt to fix a couple of small issues when controlling MOD100 diffuser
860
+ - Fix a `ResetTotal` characteristic warning for single-channel outlets
861
+
862
+ ## v6.7.2 (2021-08-17)
863
+
864
+ ### Fixed
865
+
866
+ - Fixed a polling issue for the MRS100
867
+ - Fixed repeated `reported [offline]` messages for local devices
868
+
869
+ ## v6.7.1 (2021-08-17)
870
+
871
+ ### Fixed
872
+
873
+ - Fixed a `Cannot read property 'LastActivation' of undefined` issue
874
+
875
+ ## v6.7.0 (2021-08-16)
876
+
877
+ ### Added
878
+
879
+ - **Eve History**
880
+ - For single-channel outlets that have energy monitoring, historical power data is now available, along with an approximate total consumption (kWh) value
881
+ - For garage devices, history data available - last opening time and open count
882
+ - For MS100 sensors, graphs will show with historical temperature and humidity values
883
+ - **New Devices**
884
+ - MSL120J added to supported list
885
+
886
+ ## v6.6.0 (2021-08-12)
887
+
888
+ ### Added
889
+
890
+ - **Hybrid Mode**
891
+ - This mode can be turned on from the 'Optional Settings' section of the config
892
+ - If a local IP for a cloud device is provided by Meross, then the plugin will attempt to control the device locally. If this fails for any reason then the request will be sent via the cloud as before
893
+ - I would eventually like to remove this option and have this hard-coded as _the way_ the plugin works, but I don't want to make a breaking change for now
894
+ - **New Devices**
895
+ - MSL100R added to supported list
896
+ - MSL120DR added to supported list
897
+ - MSS120B added to supported list
898
+ - **All Devices**
899
+ - Set a user key _per_ device, can be useful if the device is registered to a different Meross account that defined in the 'Optional Settings'
900
+ - Initial device information will be displayed in the log when an accessory initialises and debug mode is on
901
+ - **Eve History**
902
+ - On/Off history graphs added for single and multichannel devices when exposed as `Switch`
903
+
904
+ ### Changed
905
+
906
+ - **All Devices**
907
+ - Option to disable polling has been removed in order to keep cloud device IPs up to date. Cloud and local polling now has a maximum interval of 10 minutes, and if option is set to `0` then this will be increased to 10 minutes.
908
+ - Cloud device IP will now be checked and updated if necessary on every poll run
909
+ - **Multi-Channel Devices**
910
+ - Meross channel names will be used for sub-accessories if provided by cloud
911
+ - **Garage Devices**
912
+ - ⚠️ MSG200 will now show a separate garage door accessory for the three available channels, you can use the configuration to hide any of the channels you don't use or don't want visible in Homebridge
913
+ - For local devices, when closing garage via HomeKit, the plugin will poll every 3 seconds for status update until either the garage has closed or 15 seconds after the configured operation time when the garage will be marked as open again
914
+ - **Plugin UI**
915
+ - Credentials settings moved out of 'Optional Settings' section
916
+ - Some unnecessary placeholders removed
917
+ - **Platform Versions**
918
+ - Recommended node version bumped to v14.17.5
919
+
920
+ ### Fixed
921
+
922
+ - **All Devices**
923
+ - Plugin did not use default `cloudRefreshRate` or `refreshRate` if not configured by the user
924
+ - **Multi-Channel Devices**
925
+ - Information like firmware, IP and mac address will now show properly in the Homebridge UI, sometimes this info would not be properly saved by the plugin
926
+ - Hidden sub-accessories will no longer be added as hidden Homebridge accessories
927
+
928
+ ### Removed
929
+
930
+ - **Plugin UI**
931
+ - Device URL and firmware override options for 'Sensor Devices', at least temporarily, whilst local mode is not supported for the MSH300
932
+
933
+ ## v6.5.0 (2021-08-05)
934
+
935
+ ### Added
936
+
937
+ - **New Devices**
938
+ - MSS560X added to supported list
939
+
940
+ ## v6.4.0 (2021-08-04)
941
+
942
+ ### Added
943
+
944
+ - **New Devices**
945
+ - MSS110R added to supported list
946
+ - MSS510H added to supported list
947
+
948
+ ### Changed
949
+
950
+ - Changed 'Manufacturer' from 'Meross' to 'Meross Technology'
951
+ - This should fix **future** cases of false 'firmware update' alerts
952
+ - Existing accessories will need to be removed from the cache, so they are re-added with this new manufacturer
953
+ - **Diffusers & Light Devices**
954
+ - Removed cloud polling force override as real-time updates are now available for these devices
955
+ - **Configuration**
956
+ - The `model` field in the device sections will only show for local devices (not needed for cloud devices)
957
+
958
+ ## v6.3.0 (2021-08-03)
959
+
960
+ ### Added
961
+
962
+ - **Configuration**
963
+ - The plugin settings screen now splits up the 'Device Settings' into different sections
964
+ - You should consider moving the entries from the 'Devices Settings' section (at the bottom) to the appropriate section above
965
+ - No breaking change has been made, but in a future version of the plugin I would like to remove the general 'Device Settings' section
966
+ - Extra configuration options that have been added in this release and in the future will only appear in the specific section to the device type, not the previous 'Device Settings' section
967
+ - **All Devices**
968
+ - Plugin will log the user-configurable options and values per accessory when devices are initialised on startup
969
+ - **Single-Channel Devices**
970
+ - Added option to expose as an `AirPurifier` homekit accessory type (nice to look at in the home app if by chance you have a purifier connected to an outlet)
971
+ - **Light Devices**
972
+ - Added 'Brightness Step' option to specify a step-size on the brightness slider
973
+ - Added 'Adaptive Lighting Shift' option to specify a mired-shift, also can be used to remove the adaptive lighting feature
974
+ - **Diffuser Devices**
975
+ - Added 'Brightness Step' option to specify a step-size on the brightness slider
976
+ - **New Devices**
977
+ - MSL320M added to supported list
978
+ - MSS550L added to supported list
979
+ - MPD100 (re)added to supported list as a dimmer device
980
+ - Support for MS100 sensor/humidity devices via the MSH300
981
+ - Note that cloud connection is necessary to obtain a subdevice list for the hub
982
+
983
+ ### Changed
984
+
985
+ - **Light Devices**
986
+ - Plugin will update status (when controlled externally) in real time for cloud devices
987
+ - **Diffuser Devices**
988
+ - Plugin will update status (when controlled externally) in real time for cloud devices
989
+ - Set logging level back to user-defined now that it's working
990
+
991
+ ### Fixed
992
+
993
+ - **Light Devices**
994
+ - Fixed a `this.colourUtils.mr2hk is not a function` issue
995
+
996
+ ## v6.2.0 (2021-08-01)
997
+
998
+ ### Added
999
+
1000
+ - **All Devices**
1001
+ - Device online/offline status in the Homebridge log
1002
+ - Plugin will show a local device as offline in the plugin ui if the polling has failed due to timeout or `EHOSTUNREACH` (unreachable, normally means the device has lost Wi-Fi connection)
1003
+ - **Diffusers**
1004
+ - Switch between 'colour', 'rainbow' and 'temperature' modes using Eve-only characteristics (create scenes in the Eve app that will appear in the Home app)
1005
+ - **Single-Channel Outlets**
1006
+ - Plugin will now poll every minute for power data for devices that offer this feature (plugin will attempt to check automatically)
1007
+ - Current wattage and voltage is available to see in the Eve app
1008
+ - Plugin will set the HomeKit 'In Use' status to 'Yes' if the outlet is on and the wattage is above a configurable value
1009
+ - This can be useful to set up automations in the Eve app based on whether the wattage has risen above or dropped below a certain value
1010
+
1011
+ ### Changed
1012
+
1013
+ - **Configuration**
1014
+ - Plugin will disable if neither of username & password nor user key has been configured
1015
+ - Device `connection` setting has been removed, plugin will instead check for a configured `deviceUrl` to determine connection mode
1016
+ - **Light Devices**
1017
+ - ⚠️ On/Off light switches will now be exposed as a `Switch` accessory type (you can change to show it as a light in the Home app, or a fan for the sake of it!)
1018
+
1019
+ ### Fixed
1020
+
1021
+ - **Multi-Channel Outlets**
1022
+ - An issue preventing multichannel devices from updating from polled data when exposed as outlets
1023
+ - The Homebridge UI will now show the correct status for sub-accessories of a multichannel device
1024
+ - **Light Devices**
1025
+ - Reinstate 'lost' support for MSL120B
1026
+ - **Diffusers**
1027
+ - Bugfixes for MOD-100
1028
+
1029
+ ## v6.1.1 (2021-07-29)
1030
+
1031
+ ### Fixed
1032
+
1033
+ - An issue preventing local devices from initialising
1034
+
1035
+ ## v6.1.0 (2021-07-29)
1036
+
1037
+ ### Added
1038
+
1039
+ - **Homebridge UI**
1040
+ - More information on the devices tab: connection status, IP address, MAC address and hardware & firmware version
1041
+ - **New Devices**
1042
+ - Initial support for the MOD-100 diffuser - only light control at this stage
1043
+ - **Configuration**
1044
+ - Plugin will now check for duplicate device ID entries in the config and ignore them
1045
+
1046
+ ### Changed
1047
+
1048
+ - ⚠️ **Platform Versions**
1049
+ - Recommended node version bumped to v14.17.4
1050
+ - Recommended homebridge version bumped to v1.3.4
1051
+ - **Single Channel Devices**
1052
+ - The plugin will try to auto-detect whether 'Toggle' or 'ToggleX' namespace is used
1053
+
1054
+ ## v6.0.0 (2021-07-28)
1055
+
1056
+ ### Important Note
1057
+
1058
+ - This new release changes the way that locally controlled devices are managed/configured
1059
+ - It also brings in the functionality of `homebridge-meross-cloud` plugin
1060
+ - When updating from v5, your HomeKit accessories will most likely be reset (due to config changes)
1061
+ - It is recommended to use the Homebridge/HOOBS UI to reconfigure your locally controlled devices
1062
+ - See the full change log below for more details
1063
+
1064
+ ### Added
1065
+
1066
+ - **Cloud Control**
1067
+ - Support for cloud devices (bringing the functionality of `homebridge-meross-cloud` into this plugin)
1068
+ - Device MQTT connections so any external changes to devices should be reflected in HomeKit in real time
1069
+ - This makes cloud polling no longer necessary, so is now disabled by default, you can re-enable this in the plugin settings
1070
+ - **Local Control**
1071
+ - The use of an account key for local device control
1072
+ - The key will automatically be obtained if your Meross credentials are present
1073
+ - Docs to find this account key are available in the wiki
1074
+ - The use of this account key makes the device `messageId`, `sign` and `timestamp` redundant and these options have been removed
1075
+ - It is necessary to also configure the serial number (uuid) per the device in the configuration
1076
+ - **⚠️ Your local devices will not work with this version unless you configure the account key and serial number (uuid)**
1077
+ - **New Devices**
1078
+ - MSG100 cloud support added
1079
+ - MRS100 cloud and local support added
1080
+ - **Adaptive Lighting**
1081
+ - Adaptive Lighting for supported light bulbs
1082
+ - **Logging**
1083
+ - Logging level on a per-accessory basis, which can be helpful when wanting to debug a specific accessory
1084
+ - **Configuration Validation**
1085
+ - More configuration validation, logging if you have entries that are incorrectly configured or unused
1086
+ - **No Response Label**
1087
+ - Promise-based device control, so the plugin should show a device as 'No Response' if controlling an accessory has failed
1088
+
1089
+ ### Changed
1090
+
1091
+ - ⚠️ All switch/outlet devices will be now exposed to HomeKit by default as a `Switch` (both cloud and local devices)
1092
+ - A new configuration setting has been added if you prefer for your device to be exposed as an `Outlet`
1093
+ - ⚠️ Cloud multi-channel devices will now appear as separate accessories
1094
+ - An extra 'All On/Off' accessory will be shown in HomeKit
1095
+ - You can use the 'Hide Channels' setting to hide channels you don't use, including the 'All On/Off' accessory
1096
+
1097
+ ## v5.0.3 (2021-06-15)
1098
+
1099
+ ### Changed
1100
+
1101
+ - Housekeeping and updated dependencies.
1102
+
1103
+ ## v5.0.2 (2020-03-25)
1104
+
1105
+ ### Changed
1106
+
1107
+ - Fixed an issue where MSL-120 payload fails to be read.
1108
+ - Updated dependencies.
1109
+
1110
+ ## v5.0.1 (2020-03-19)
1111
+
1112
+ ### Changed
1113
+
1114
+ - Fixed an issue with `config.schema.json` where it wouldn't save changes to `refreshRate`.
1115
+ - Added the ability to enter a custom value for `garageDoorOpeningTime`.
1116
+ - Updated dependencies.
1117
+
1118
+ ## v5.0.0 (2021-03-14)
1119
+
1120
+ ### Breaking Changes
1121
+
1122
+ - The Plugin has been changed from an `accessory` type to a `platform` type.
1123
+ - You will have to change you config completely if you update to this version.
1124
+ - You can take your current `accessory` and move it to the platform config.
1125
+ - See (Specific Model Configurations)[https://github.com/homebridge-plugins/homebridge-meross/wiki/Specific-Model-Configurations] Wiki for more examples.
1126
+ - Example:
1127
+ #### Before:
1128
+ ```json
1129
+ "accessories": [
1130
+ {
1131
+ "model": "MSS620",
1132
+ "name": "Outlet",
1133
+ "deviceUrl": "192.168.1.1",
1134
+ "channel": 0,
1135
+ "messageId": "abcdefghijklmnopqrstuvwxyz123456789",
1136
+ "timestamp": 123456789,
1137
+ "sign": "abcdefghijklmnopqrstuvwxyz123456789",
1138
+ "accessory": "Meross"
1139
+ }
1140
+ ]
1141
+ ```
1142
+ #### After:
1143
+ ```json
1144
+ "platforms": [
1145
+ {
1146
+ "name": "Meross",
1147
+ "devices": [
1148
+ <This_is_from_above>
1149
+ {
1150
+ "model": "MSS620",
1151
+ "name": "Outlet",
1152
+ "deviceUrl": "192.168.1.1",
1153
+ "channel": 0,
1154
+ "messageId": "abcdefghijklmnopqrstuvwxyz123456789",
1155
+ "timestamp": 123456789,
1156
+ "sign": "abcdefghijklmnopqrstuvwxyz123456789",
1157
+ "accessory": "Meross" <You_Can_Remove_This.>
1158
+ }
1159
+ <Ends_here_from_above>
1160
+ ],
1161
+ "platform": "Meross"
1162
+ }
1163
+ ]
1164
+ ```
1165
+ - Added Config for Refresh Rate.
1166
+ - default is 5 seconds and if updating to often can be set in the config.
1167
+
1168
+ ## v4.0.1 (2020-03-12)
1169
+
1170
+ ### Changed
1171
+
1172
+ - Fixes a bug that does not retrieve the status of an outlet device.
1173
+
1174
+ ## v4.0.0 (2021-03-02)
1175
+
1176
+ ### Major Changes
1177
+
1178
+ - Homebridge support has moved to v1.3.1
1179
+ - Homebridge v1.3.1 must be installed before updating to this version.
1180
+ - Support for the new onGet/onSet introduced in Homebridge v1.3.0.
1181
+
1182
+ ### Changed
1183
+
1184
+ - Adding in MSL-320
1185
+
1186
+ ## v3.5.0 (2021-02-13)
1187
+
1188
+ ### Changed
1189
+
1190
+ - Add support for MSL-420 (#167), Thanks @123marvin123!
1191
+ - Fixed MSS110-1 and MSS110-2 Type Error (#170), Thanks @MrJer!
1192
+ - Adds support for MSS630 device (#196), Thanks @rcoletti116!
1193
+
1194
+ ## v3.4.1 (2020-12-19)
1195
+
1196
+ ### Changed
1197
+
1198
+ - Add option to change accessory `Firmware Revision` and `Serial Number`.
1199
+ - This fixes [#121](https://github.com/homebridge-plugins/homebridge-meross/issues/121) - `HomeKit showing as "Update Available"`.
1200
+
1201
+ ## v3.4.0 (2020-11-19)
1202
+
1203
+ ### Changed
1204
+
1205
+ - Add preliminary support for MSG200.
1206
+ - Minor changes to support channels with the garage door opener, has been tested with the MSG100 and MSG200.
1207
+ - The MSG100 uses channel 0, for the single door, but the MSG200 uses channels 1, 2, and 3.
1208
+ - FWIW, setting channel 0 on the MSG200 to open or closed appears to control all doors.
1209
+
1210
+ ## v3.3.0 (2020-11-06)
1211
+
1212
+ ### Changed
1213
+
1214
+ - Added basic support for MSL-100, MSL-120.
1215
+
1216
+ ## v3.2.0 (2020-10-15)
1217
+
1218
+ ### Changed
1219
+
1220
+ - Added support for the MSS530H.
1221
+ - You set an ChannelID 1, 2 or 3.
1222
+ - Channel 1 is the Top Outlet.
1223
+ - Channel 2 the bottom left.
1224
+ - Channel 3 the bottom right.
1225
+
1226
+ ## v3.1.0 (2020-10-02)
1227
+
1228
+ ### Changed
1229
+
1230
+ - Added brightness changing support to the MSS560 switch.
1231
+
1232
+ ## v3.0.0 (2020-09-17)
1233
+
1234
+ ### Changed
1235
+
1236
+ - Converted Project to Typescript.
1237
+
1238
+ ## v2.3.1 (2020-07-21)
1239
+
1240
+ ### Changed
1241
+
1242
+ - Change garage door status check interval to 5s.
1243
+
1244
+ ## v2.3.0 (2020-06-22)
1245
+
1246
+ ### Changed
1247
+
1248
+ - Get garage door status change notification by requesting status every 2s all the time. (#41) Thanks CocoaBob!
1249
+
1250
+ ## v2.2.0 (2020-06-16)
1251
+
1252
+ ### Changed
1253
+
1254
+ - Add support for garage door opening time parameter. (#36) Thanks CocoaBob!
1255
+
1256
+ ## v2.1.0 (2020-04-13)
1257
+
1258
+ ### Changed
1259
+
1260
+ - Changed Log to only display On & Off States.
1261
+ - Compressed all other logging to debug.
1262
+ - To View This logging, turn on Homebridge Debug (-D) in Homebridge Settings of Config UI X.
1263
+
1264
+ ## v2.0.0 (2020-05-27)
1265
+
1266
+ ### Changed
1267
+
1268
+ - added Support for MSG-100 (Garage Door Opener).
1269
+
1270
+ ## vIMPORTANT
1271
+
1272
+ ### Homebridge v1.0.0
1273
+
1274
+ - Changed homebridge requirement to be v1.0.0 or higher.
1275
+
1276
+ ## v1.1.0 (2020-04-13)
1277
+
1278
+ ### Changed
1279
+
1280
+ - Update config.schema.json with specific models that are supported.
1281
+ - Changed requirements for specific models on what fields are needed.
1282
+ - Added helpful wiki links to repo
1283
+
1284
+ # IMPORTANT
1285
+
1286
+ ### Change to Config Needed!
1287
+
1288
+ - We have replaced the `hardware revision` with `model`.
1289
+ - We also changed the `deviceUrl` to only require the device IP Address.
1290
+ - You will have to change your config to match the new config.schema.json layout.
1291
+
1292
+ ## v1.0.4 (2020-04-13)
1293
+
1294
+ ### Changed
1295
+
1296
+ - fix config.schema.json
1297
+
1298
+ ## v1.0.3 (2020-04-13)
1299
+
1300
+ ### Changed
1301
+
1302
+ - fix config.schema.json
1303
+ - update engine dependencies
1304
+
1305
+ ## v1.0.2 (2020-04-11)
1306
+
1307
+ ### Changed
1308
+
1309
+ - remove devDependencies homebridge-config-ui-x and homebridge
1310
+ - update engine dependencies
1311
+
1312
+ ## v1.0.1 (2020-04-08)
1313
+
1314
+ ### Changed
1315
+
1316
+ - Update devDependencies homebridge-config-ui-x and homebridge
1317
+
1318
+ ## v1.0.0 (2020-04-06)
1319
+
1320
+ ### Changed
1321
+
1322
+ - Update Readme
1323
+
1324
+ ## v0.1.0 (2020-03-21)
1325
+
1326
+ ### Changed
1327
+
1328
+ - Bump request from 2.88.0 to 2.88.2 [#8](https://github.com/homebridge-plugins/homebridge-meross/pull/8)
1329
+
1330
+ ## v0.0.8 (2020-01-30)
1331
+
1332
+ ### Changed
1333
+
1334
+ - Fixed config.schema.json
1335
+
1336
+ ## v0.0.7 (2020-01-30)
1337
+
1338
+ ### Changed
1339
+
1340
+ - Update dependencies
1341
+
1342
+ ## v0.0.6 (2020-01-30)
1343
+
1344
+ ### Changed
1345
+
1346
+ - Allowing for multiple devices.