npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

homebridge-mi-aqara-nightly

v0.69.180520

Published

Nightly build of XiaoMi Aqara plugins for HomeBridge(https://github.com/nfarina/homebridge).

Downloads

3

Readme

homebridge-mi-aqara

npm version

homebridge plugin for XiaoMi Aqara plugin.

Thanks for nfarina(the author of homebridge), snOOrz(the author of homebridge-aqara), licuhui, 攀旺智能, 瀚思彼岸论坛, magaHH, isundaylee, ileler, all other developer and testers.

Note: I have only a part of these devices, so some devices don't have tested. If you find bugs, please submit them to issues or QQ Group: 107927710.

Note: 0.5.x update to 0.6.x must be clear register accessories and update configuration file content.

Note: About AcPartner, This project only provides gateway functionality. If you want the use air conditioning function, please refer to the project for homebridge-mi-acPartner.

This repository contains the Aqara plugin for homebridge.
Aqara is a ZigBee gateway with a few sensors.

Supported Devices

||Device Name|Protocol Model Value| |:-:|:-|:-| |1|Gateway(网关)|gatewaygateway.v3| |2|ContactSensor(门磁感应)|magnet| |3|MotionSensor(人体感应)|motion| |4|Button(按钮)|switch| |5|TemperatureAndHumiditySensor(温度湿度传感器)|sensor_ht| |6|SingleSwitch(单按钮墙壁开关)|ctrl_neutral1| |7|DuplexSwitch(双按钮墙壁开关)|ctrl_neutral2| |8|SingleSwitchLN(单按钮墙壁开关零火版)|ctrl_ln1ctrl_ln1.aq1| |9|DuplexSwitchLN(双按钮墙壁开关零火版)|ctrl_ln2| |10|SingleButton86(86型无线单按钮开关)|86sw1sensor_86sw1.aq1| |11|DuplexButton86(86型无线双按钮开关)|86sw2sensor_86sw2.aq1| |12|PlugBase(插座)|plug| |13|PlugBase86(86型墙壁插座)|86plugctrl_86plug| |14|MagicSquare(魔方)|cubesensor_cube| |15|SmokeDetector(烟雾报警器)|smokesensor_smoke| |16|NatgasDetector(天然气报警器)|natgassensor_natgas| |17|ElectricCurtain(电动窗帘)|curtain| |18|ContactSensor2(门磁感应第二代)|sensor_magnetsensor_magnet.aq2| |19|MotionSensor2(人体感应第二代)|sensor_motion.aq2| |20|Button2(按钮第二代)|sensor_switchsensor_switch.aq2| |21|TemperatureAndHumiditySensor2(温度湿度传感器第二代)|weather.v1weather| |22|WaterDetector(水浸传感器)|sensor_wleak.aq1| |23|UnlockedSensor(门锁)|lock.aq1| |24|AcPartner(空调伴侣)|acpartner.v3|

Pre-Requirements

  1. Make sure your IOS version is ios11 or later.
  2. Make sure you have gateway v2 or acpartner v3. gateway v1 has limited space so can't support this feature.
  3. Update gateway firmware to 1.4.1_155.0143(gateway v2), 1.4.1_148.019(acpartner v3) or later.

Installation

  1. Install HomeBridge, please follow it's README.
    If you are using Raspberry Pi, please read Running-HomeBridge-on-a-Raspberry-Pi.
  2. Make sure you can see HomeBridge in your iOS devices, if not, please go back to step 1.
  3. Download homebridge-mi-aqara to your HomeBridge path or installation through NPM:
npm install -g homebridge-mi-aqara

Configuration

||Name|Required|Value Type|Description|Value Example| |:-:|:-|:-|:-|:-|:-| |1|platform|True|String||It must be 'MiAqaraPlatform'| |2|gateways|True|Object|set gateway information.|{ "6409802da3b3": "02i44k56zrgg578b" }| |3|bindAddress|False|String|specified network.|"10.0.0.1"| |4|defaultValue|False|Object|set device default value.||

For more information about config, Please refer to file sampleConfig.json.

gateways configuration

Open aqara gateway's settings, enable local network protocol.
Please follow the steps in this thread: http://wiki.yinhh.com/Wiki.jsp?page=Homebridge-mi-aqara or http://bbs.xiaomi.cn/t-13198850. It's in Chinese so you might need a translator to read it.
To control the devices, put gateway's MAC address (lower case without colon) and password (keep original and case sensitive) to ~/.homebridge/config.json.

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b"
        }
    }]
}

If you have more than one gateways, fill them in right order, like below.

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        }
    }]
}

bindAddress configuration

If your device(which running homebridge) has multiple network, please add the bindAddress configuration item to decide to listen which network, like below.

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "bindAddress": "10.0.0.1",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        }
    }]
}

defaultValue configuration

If you want to specify the default value, such as specify the name of the accessory, hide the accessory, any other configs. You can add a defaultValue mapping table to your config.json.
The config supported are as follows:

||Name|Value Type|Description|Default Value|Recommended Value|Value Example| |:-:|:-|:-|:-|:-|:-|:-| |1|name|String|set accessory name.|DeviceAccessoryType_device SID last four bits||"living room temperature"| |2|serviceType|String|set accessory type for Switch or Lightbulb. Currently only supported: SingleSwitch, DuplexSwitch, SingleSwitchLN, DuplexSwitchLN.|"Switch"|"Switch"|"Lightbulb"| |3|disable|Boolean|disable accessory|false|the accessories that do not need to be set to true, such as virtual press.|true| |4|syncValue|Boolean|accessory will synchronization value when homebridge call the get function, if it's true.|false|fasle|false| |4|ignoreWriteResult|Boolean|if set to true, the result of control is not detected.|true|If your network is awful, it's recommended to be set true.|false| |4|disableNoResponse|Boolean|use jump back the last value to replace show NoResponse, you can set it true.|false|false|true|

The rules are as follows:

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "device1 sid": {
                "DeviceAccessoryType1": {
                    "config1": "config1 value"
                }
            },
            "device2 sid": {
                "DeviceAccessoryType1": {
                    "config1": "config1 value"
                    "config2": "config2 value"
                },
                "DeviceAccessoryType2": {
                    "config1": "config1 value"
                }
            }
        }
    }]
}

examples:

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "158d0001000001": {
                "ContactSensor_ContactSensor": {
                    "name": "entrance door"
                }
            },
            "158d0001000002": {
                "MotionSensor2_MotionSensor": {
                    "name": "study room motion sensor"
                },
                "MotionSensor2_LightSensor": {
                    "name": "study room light sensor"
                }
            }
        }
    }]
}

The rules of A DeviceAccessoryType:

DeviceName_HomeBridgeAccessoryType(_ExtraMessage)

detail:

||Device Name|DeviceAccessoryType| |:-:|:-|:-| |1|Gateway(网关)|Gateway_LightbulbGateway_LightSensorGateway_Switch_JoinPermission| |2|ContactSensor(门磁感应)|ContactSensor_ContactSensor| |3|MotionSensor(人体感应)|MotionSensor_MotionSensor| |4|Button(按钮)|Button_StatelessProgrammableSwitchButton_Switch_VirtualSinglePressButton_Switch_VirtualDoublePress| |5|TemperatureAndHumiditySensor(温度湿度传感器)|TemperatureAndHumiditySensor_TemperatureSensorTemperatureAndHumiditySensor_HumiditySensor| |6|SingleSwitch(单按钮墙壁开关)|SingleSwitch_Switch| |7|DuplexSwitch(双按钮墙壁开关)|DuplexSwitch_Switch_LeftDuplexSwitch_Switch_Right| |8|SingleSwitchLN(单按钮墙壁开关零火版)|SingleSwitchLN_Switch| |9|DuplexSwitchLN(双按钮墙壁开关零火版)|DuplexSwitchLN_Switch_LeftDuplexSwitchLN_Switch_Right| |10|SingleButton86(86型无线单按钮开关)|SingleButton86_StatelessProgrammableSwitchSingleButton86_Switch_VirtualSinglePress| |11|DuplexButton86(86型无线双按钮开关)|DuplexButton86_StatelessProgrammableSwitch_LeftDuplexButton86_Switch_VirtualSinglePress_LeftDuplexButton86_StatelessProgrammableSwitch_RightDuplexButton86_Switch_VirtualSinglePress_RightDuplexButton86_StatelessProgrammableSwitch_BothDuplexButton86_Switch_VirtualSinglePress_Both| |12|PlugBase(插座)|PlugBase_Outlet| |13|PlugBase86(86型墙壁插座)|PlugBase86_Outlet| |14|MagicSquare(魔方)|MagicSquare_StatelessProgrammableSwitch_Flip90MagicSquare_StatelessProgrammableSwitch_Flip180MagicSquare_StatelessProgrammableSwitch_MoveMagicSquareStatelessProgrammableSwitchTapTwiceParserMagicSquare_StatelessProgrammableSwitch_ShakeAirMagicSquare_StatelessProgrammableSwitch_RotateMagicSquare_Switch_VirtualFlip90MagicSquare_Switch_VirtualFlip180MagicSquare_Switch_VirtualMoveMagicSquare_Switch_VirtualTapTwiceMagicSquare_Switch_VirtualShakeAir| |15|SmokeDetector(烟雾报警器)|SmokeDetector_SmokeSensor| |16|NatgasDetector(天然气报警器)|NatgasDetector_SmokeSensor| |17|ElectricCurtain(电动窗帘)|ElectricCurtain_WindowCovering| |18|ContactSensor2(门磁感应第二代)|ContactSensor2_ContactSensor| |19|MotionSensor2(人体感应第二代)|MotionSensor2_MotionSensorMotionSensor2_LightSensor| |20|Button2(按钮第二代)|Button2_StatelessProgrammableSwitchButton2_Switch_VirtualSinglePressButton2_Switch_VirtualDoublePress| |21|TemperatureAndHumiditySensor2(温度湿度传感器第二代)|TemperatureAndHumiditySensor2_TemperatureSensorTemperatureAndHumiditySensor2_HumiditySensor| |22|WaterDetector(水浸传感器)|WaterDetector_LeakSensor| |23|UnlockedSensor(门锁)|UnlockedSensor_MotionSensor| |24|AcPartner(空调伴侣)|AcPartner_Switch_JoinPermission|

About Global:
Some similar configurations and repeated multiple copies are boring things. So I provided a global writing method.
The following two methods of writing are equivalent:

....
"158d0001000008": {
    "DuplexSwitch_Switch_Left": {
        "name": "master bedroom room light",
        "serviceType": "Lightbulb"
    },
    "DuplexSwitch_Switch_Right": {
        "name": "study room light",
        "serviceType": "Lightbulb"
    }
}
....
....
"158d0001000008": {
    "Global": {
        "serviceType": "Lightbulb"
    },
    "DuplexSwitch_Switch_Left": {
        "name": "master bedroom room light"
    },
    "DuplexSwitch_Switch_Right": {
        "name": "study room light"
    }
}
....

In the same way, the following two kinds of writing are alse equivalent:

....
"158d0001000003": {
    "Button_StatelessProgrammableSwitch": {
        "name": "living room button"
    },
    "Button_Switch_VirtualSinglePress": {
        "name": "living room button virtual single press",
        "disable": true
    },
    "Button_Switch_VirtualDoublePress": {
        "name": "living room button virtual double press",
        "disable": true
    }
}
....
....
"158d0001000003": {
    "Global": {
        "disable": true 
    },
    "Button_StatelessProgrammableSwitch": {
        "name": "living room button",
        "disable": false
    },
    "Button_Switch_VirtualSinglePress": {
        "name": "living room button virtual single press"
    },
    "Button_Switch_VirtualDoublePress": {
        "name": "living room button virtual double press"
    }
}
....

It also provides a higher level of way, the following three kinds of writing are alse equivalent:

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "158d0001000007": {
                "SingleSwitch_Switch": {
                    "name": "living room light",
                    "ignoreWriteResult": true
                }
            },
            "158d0001000008": {
                "DuplexSwitch_Switch_Left": {
                    "name": "master bedroom room light",
                    "ignoreWriteResult": true
                },
                "DuplexSwitch_Switch_Right": {
                    "name": "study room light",
                    "ignoreWriteResult": true
                }
            }
        }
    }]
}
{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "158d0001000007": {
                "SingleSwitch_Switch": {
                    "name": "living room light",
                    "ignoreWriteResult": true
                }
            },
            "158d0001000008": {
                "Global": {
                    "ignoreWriteResult": true
                },
                "DuplexSwitch_Switch_Left": {
                    "name": "master bedroom room light"
                },
                "DuplexSwitch_Switch_Right": {
                    "name": "study room light"
                }
            }
        }
    }]
}
{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "Global": {
                "ignoreWriteResult": true
            },
            "158d0001000007": {
                "SingleSwitch_Switch": {
                    "name": "living room light"
                }
            },
            "158d0001000008": {
                "DuplexSwitch_Switch_Left": {
                    "name": "master bedroom room light"
                },
                "DuplexSwitch_Switch_Right": {
                    "name": "study room light"
                }
            }
        }
    }]
}

defaultValue name configuration

If you want to specify the default name of the device, add a mapping table to your config.json like this.

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "158d0001000001": {
                "ContactSensor_ContactSensor": {
                    "name": "entrance door"
                }
            },
            "158d0001000002": {
                "MotionSensor2_MotionSensor": {
                    "name": "study room motion sensor"
                },
                "MotionSensor2_LightSensor": {
                    "name": "study room light sensor"
                }
            },
            "158d0001000004": {
                "TemperatureAndHumiditySensor_TemperatureSensor": {
                    "name": "living room temperature"
                },
                "TemperatureAndHumiditySensor_HumiditySensor": {
                    "name": "living room humidity"
                }
            }
        }
    }]
}

defaultValue serviceType configuration

If you like to use Light Bulb type for Light Switch to make grandma Siri happy, like snOOrz, you can set the following in the config.
Currently only supported: SingleSwitch, DuplexSwitch, SingleSwitchLN, DuplexSwitchLN.
If you changed serviceType config, Please clear register accessories.

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "158d0001000007": {
                "SingleSwitch_Switch": {
                    "name": "living room light",
                    "serviceType": "Lightbulb"
                }
            },
            "158d0001000008": {
                "Global": {
                    "serviceType": "Lightbulb"
                },
                "DuplexSwitch_Switch_Left": {
                    "name": "master bedroom room light"
                },
                "DuplexSwitch_Switch_Right": {
                    "name": "study room light"
                }
            },
            "158d10010000001": {
                "DuplexSwitch_Switch_Left": {
                    "name": "master bedroom room light",
                    "serviceType": "Lightbulb"
                },
                "DuplexSwitch_Switch_Right": {
                    "name": "study room light"
                }
            }
        }
    }]
}

defaultValue disable configuration

If you want to disable accessories, you can add disable attribute to config.

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "158d0001000007": {
                "SingleSwitch_Switch": {
                    "name": "living room light",
                    "serviceType": "Lightbulb"
                }
            },
            "158d0001000008": {
                "DuplexSwitch_Switch_Left": {
                    "name": "master bedroom room light",
                    "serviceType": "Lightbulb",
                    "disable": false
                },
                "DuplexSwitch_Switch_Right": {
                    "name": "study room light",
                    "serviceType": "Lightbulb",
                    "disable": true
                }
            },
            "158d0001000004": {
                "TemperatureAndHumiditySensor_TemperatureSensor": {
                    "name": "living room temperature"
                },
                "TemperatureAndHumiditySensor_HumiditySensor": {
                    "name": "living room humidity",
                    "disable": true
                }
            },
            "158d0001000012": {
                "Global": {
                    "disable": true
                }
            },
            "158d0001000015": {
                "Global": {
                    "disable": true
                },
                "MagicSquare_StatelessProgrammableSwitch_Flip90": {
                    "name": "study room magic square flip90",
                    "disable": false
                }
            }
        }
    }]
}

defaultValue syncValue configuration

If you want to accessory value exact, you can set syncValue is true.
when syncValue is true, accessory will synchronization value when homebridge call the get function. At the same time, it's going to waste more time.
when syncValue is false, accessory will use the device last reported value. It's going to respond quickly.

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "158d0001000007": {
                "SingleSwitch_Switch": {
                    "name": "living room light",
                    "serviceType": "Lightbulb",
                    "syncValue": true
                }
            }
        }
    }]
}

defaultValue ignoreWriteResult configuration

If you control device always timeout, but in fact it's already working.
you can set ignoreWriteResult is true.

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "Global": {
                "ignoreWriteResult": true
            },
            "158d0001000007": {
                "SingleSwitch_Switch": {
                    "name": "living room light",
                    "serviceType": "Lightbulb",
                    "syncValue": true
                }
            }
        }
    }]
}

defaultValue disableNoResponse configuration

If you don't like "No Response", you can set disableNoResponse is true.
When the device is no pesponse and disableNoResponse is true, the accessory value will auto jump back to before the control.

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "Global": {
                "disableNoResponse": true
            },
            "158d0001000007": {
                "SingleSwitch_Switch": {
                    "name": "living room light",
                    "serviceType": "Lightbulb",
                    "syncValue": true
                }
            }
        }
    }]
}

defaultValue other configuration

If you want to use Aqara lock,you need add some configuration like this

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "LockDeviceID": {
                "UserID": {
                    "name": "UserName"
                }
            }
        }
    }]
}

UserID is user identification from lock.The value can get from Aqara Lock Plugin in MIHOME APP,The user ID contains the ID type. The integer value obtained by dividing the user ID by 65536 is the ID type. The ID type value is: 1 fingerprint, 2 password, 3 proximity card, 5 check-in password.Example:

{
    "platforms": [{
        "platform": "MiAqaraPlatform",
        "gateways": {
            "6409802da3b3": "02i44k56zrgg578b",
            "f0b4299a5b2b": "2F92E7DA90C66B86",
            "f0b4299a77dd": "syu3oasva3uqd5qd"
        },
        "defaultValue": {
            "158d0001dd0289": {
                "65536": {
                    "name": "Administrator"
                },
                "65537": {
                    "name": "Finger"
                },
                "196608": {
                    "name": "Card"
                }
            }
        }
    }]
}

Some explanation

Button/Button2 StatelessProgrammableSwitch support SinglePress, DoublePress, LongPress.
SingleButton86/DuplexButton86(Left, Right, Both) StatelessProgrammableSwitch only support SinglePress.
MagicSquare(Flip90, Flip180, Move, TapTwice, ShakeAir, Rotate) StatelessProgrammableSwitch only support SinglePress.

Run it

homebridge -D

Clear register accessories

cd ~/.homebridge/accessories/
mv cachedAccessories cachedAccessories_`date '+%Y%m%d_%H%M%S'`.bak
echo [] > cachedAccessories

Version Logs

0.6.10 (coding)

0.6.9 (2018-03-26)

1.optimized some of the basic code to facilitate the subsequent support of new hardware.
2.supports aqara LAN protocol 2.0.
3.added some new devices (door locks).

0.6.8 (2018-01-21)

1.fixed bug that sometimes DuplexSwitchLN and DuplexSwitch no response.
2.fixed bug that it still show battery low power after replacing the battery.
3.fixed bug that TemperatureAndHumiditySensor and TemperatureAndHumiditySensor2 temperature sensor accessory can't show the negative number.
4.remove a duplicated function.
5.add the choice bindAddress feature.

0.6.7 (2017-12-10)

1.optimizing log content.

0.6.6 (2017-12-10)

1.fixed bug that sometimes DuplexSwitchLN and DuplexSwitch no response.
2.fixed bug that sometimes Gateway and MotionSensor2 light senor no response.
3.fixed bug that global config not work in some cases.
4.add setting "ignoreWriteResult" feature.
5.remove the SingleButton86, DuplexButton86, MagicSquare redundant event action.

0.6.5 (2017-10-31)

1.optimizing log content.
2.optimizing read/write device response timeout rules.
3.optimizing read/write device no response rules.
4.add gateway join permission switch accessory.
5.add setting disable "No Response" feature.

0.6.4 (2017-10-27)

1.add virtual switch accessory can trigger homekit click events.
2.optimizing log content.
3.optimizing HomeBridge startup read device info algorithm.

0.6.3 (2017-10-26)

1.fixed bug that ElectricCurtain can't work.
2.remove synchronization value when homebridge call the get function(only electrify device) and add setting synchronization value feature.
3.add config Global mode.

0.6.2 (2017-10-25)

1.fixed bug that MotionSensor motion sonser accessory status is error.
2.fixed bug that MotionSensor2 motion sonser accessory status is error.

0.6.1 (2017-10-23)

1.fixed bug that MotionSensor2 light sonser accessory value is error.

0.6.0 (2017-10-22)

1.refactoring code.
2.add feedback when control accessory.
3.synchronization value when homebridge call the get function. (only electrify device)
4.optimizing program structure, send fewer packets.
5.optimizing config item name, easier to read.
6.fixed some bug.
7.add Button(single press, double press) virtual switch accessory.
8.add Button2(single press, double press) virtual switch accessory.
9.add SingleButton86(single press) virtual switch accessory.
10.add DuplexButton86(left button single press, right button single press, both press) virtual switch accessory.
11.add MagicSquare(flip90, flip180, move, tapTwice, shakeAir) virtual switch accessory.

0.5.3 (2017-08-26)

1.optimized code.

0.5.2 (2017-08-23)

1.fixed bug that gateway light brightness is 100 when it light up.

0.5.1 (2017-08-14)

1.fixed bug that natgas detector is not alarm.

0.5.0 (2017-08-13)

1.add support for water detector accessory.
2.fixed bug that natgas detector is not alarm.
3.fixed bug that smoke detector is not alarm.

0.4.4 (2017-08-09)

1.add log content that show plugin version when homebridge started.
2.fixed bug that run homebridge error there is no MiAqaraPlatform in config.json file.

0.4.3 (2017-08-01)

1.fixed bug that gateway light sensor not support when value is 0;
2.fixed bug that motion sensor version 2 light sensor not support when value is 0;

0.4.2 (2017-07-29)

1.adjustment gateway light sensor value(subtract 279).
2.delete PlugBase, PlugBase86, SingleSwitch, DuplexSwitch, SingleSwitchLN, DuplexSwitchLN battery information.
3.add motion sensor version 2 light sensor battery information.
4.add setting accessory disable feature.
5.fixed bug that electric curtain can't work, but there is no current operation state information now.

0.4.1 (2017-07-26)

1.code collation.

0.4.0 (2017-07-26)

1.add support for electric curtain accessory.
2.add support for contact sensor version 2 accessory.
3.add support for motion sensor version 2 accessory.
4.add support for button version 2 accessory.
5.add support for temperature and humidity sensor version 2 accessory.
6.optimize log content.
7.add setting default name feature.
8.add setting default service type feature.
9.fixed motion sensor bug that wrong trigger when homebridge start.
10.adjustment gateway light sensor value(subtract 300).

0.3.3 (2017-06-16)

1.add single button 86 long press event.
2.add duplex button 86 long press event.
3.changed button click event value from Characteristic.ProgrammableSwitchEvent.CLICK back to Characteristic.ProgrammableSwitchEvent.SINGLE_PRESS.
4.changed single button 86 click event value from Characteristic.ProgrammableSwitchEvent.CLICK back to Characteristic.ProgrammableSwitchEvent.SINGLE_PRESS.
5.changed duplex button 86 click event value from Characteristic.ProgrammableSwitchEvent.CLICK back to Characteristic.ProgrammableSwitchEvent.SINGLE_PRESS.

0.3.2 (2017-06-15)

1.fixed bug that duplex switch LN charging state.
2.fixed bug that single switch LN charging state.
3.fixed bug that single button 86 charging state.
4.changed button click event value from Characteristic.ProgrammableSwitchEvent.SINGLE_PRESS to Characteristic.ProgrammableSwitchEvent.CLICK.
5.changed single button 86 click event value from Characteristic.ProgrammableSwitchEvent.SINGLE_PRESS to Characteristic.ProgrammableSwitchEvent.CLICK.
6.changed duplex button 86 click event value from Characteristic.ProgrammableSwitchEvent.SINGLE_PRESS to Characteristic.ProgrammableSwitchEvent.CLICK.
7.fixed bug that natgas detector is not alarm.
8.fixed bug that smoke detector is not alarm.

0.3.1 (2017-06-14)

1.code collation.

0.3.0 (2017-06-14)

1.add support for single switch LN accessory.
2.add support for duplex switch LN accessory.
3.add support for plug base 86 accessory.
4.add support for smoke detector accessory.
5.add support for natgas detector accessory.

0.2.1 (2017-06-14)

1.change accessory registration mechanism, fixed bug that new accessory can't correlate associated with gateway.

0.2.0 (2017-06-14)

1.add support for duplex switch accessory.
2.add support for single button 86 accessory.
3.add support for duplex button 86 accessory.

0.1.0 (2017-06-13)

1.add support for plug base accessory.
2.add support for magic square accessory.

0.0.6 (2017-06-12)

1.add some logs.

0.0.5 (2017-06-08)

1.fixed bug.

0.0.4 (2017-06-08)

1.fixed bug.

0.0.3 (2017-06-08)

1.add support for gateway accessory: light sensor, hue light.

0.0.2 (2017-06-07)

1.add support for single switch accessory.

0.0.1 (2017-06-07)

1.supported contact sensor accessory.
2.supported motion sensor accessory.
3.supported button accessory.
4.supported temperature and humidity sensor accessory.