Skip to content

Releases: homebridge-plugins/homebridge-meross

Version 5.0.1

19 Mar 10:13
13a7122
Compare
Choose a tag to compare

Changes

  • Fixes an issue with config.schema.json where it wouldn't save changes to refreshRate.
  • Added the ability to enter a custom value for garageDoorOpeningTime.
  • Updated dependencies.

Version 5.0.0

15 Mar 03:37
16d61a3
Compare
Choose a tag to compare

Breaking Changes

  • The Plugin has been changed from an accessory type to a platform type.
  • You will have to change your config completely if you update to this version.
    • You can take your current accessory and move it to the platform config.
    • See (Specific Model Configurations)[https://github.com/donavanbecker/homebridge-meross/wiki/Specific-Model-Configurations] Wiki for more examples.
    • Example:

    Before:

    "accessories": [
        {
          "model": "MSS620",
          "name": "Outlet",
          "deviceUrl": "192.168.1.1",
          "channel": 0,
          "messageId": "abcdefghijklmnopqrstuvwxyz123456789",
          "timestamp": 123456789,
          "sign": "abcdefghijklmnopqrstuvwxyz123456789",
          "accessory": "Meross"
        }
    ]

    After:

    "platforms": [
        {
        "name": "Meross",
        "devices": [
            <This_is_from_above>
            {
            "model": "MSS620",
            "name": "Outlet",
            "deviceUrl": "192.168.1.1",
            "channel": 0,
            "messageId": "abcdefghijklmnopqrstuvwxyz123456789",
            "timestamp": 123456789,
            "sign": "abcdefghijklmnopqrstuvwxyz123456789",
            "accessory": "Meross" <You_Can_Remove_This.>
            }
            <Ends_here_from_above>
          ],
        "platform": "Meross"
        }
    ]
  • Added Config for Refresh Rate.
    • default is 5 seconds and if updating too often can be set in the config.

Version 4.0.1

12 Mar 15:26
ec98fdc
Compare
Choose a tag to compare

Changes

  • Fixes a bug that does not retrieve the status of an outlet device.

Version 4.0.0

02 Mar 22:30
8da0235
Compare
Choose a tag to compare

Major Changes

  • Homebridge support has moved to v1.3.1
    • Homebridge v1.3.1 must be installed before updating to this version.
    • Support for the new onGet/onSet introdcued in Homebridge v1.3.0.

Changes

  • Adding in MSL-320

Version 3.5.0

13 Feb 21:08
a72f368
Compare
Choose a tag to compare

Changes

Version 3.4.1

19 Dec 20:02
6412462
Compare
Choose a tag to compare

Changes

  • Add option to change accessory Firmware Revision and Serial Number.
    • This fixes #121 - HomeKit showing as "Update Available".

Version 3.4.0

20 Nov 05:24
dcac1de
Compare
Choose a tag to compare

Changes

  • Add preliminary support for MSG200.
    • Minor changes to support channels with the garage door opener, has been tested with the MSG100 and MSG200.
    • The MSG100 uses channel 0, for the single door, but the MSG200 uses channels 1, 2, and 3.
    • FWIW, setting channel 0 on the MSG200 to open or closed appears to control all doors.

Version 3.3.0

07 Nov 05:11
dcac1de
Compare
Choose a tag to compare

Changes

  • Added basic support for MSL-100, MSL-120.

Version 3.2.0

16 Oct 02:46
6fd7e14
Compare
Choose a tag to compare

Changes

  • Added support for the MSS530H.
    • You set an ChannelID 1, 2 or 3.
      • Channel 1 is the Top Outlet.
      • Channel 2 the bottom left.
      • Channel 3 the bottom right.

Version 3.1.0

02 Oct 13:49
8e4551b
Compare
Choose a tag to compare

Changes

  • Added brightness changing support to the MSS560 switch.