Thanks for 0. rench(the author of homebridge-smarthome)
- snOOrz(the author of homebridge-aqara)
- YinHangCode(the author of homebridge-mi-aqara)
- aholstenson(the author of miio)
- all other developer and testers.
Note: I have only a part of these devices, some devices do not have been tested. If you find bugs, please submit them to issues.
- Gateway(LightSensor/Lightbulb[hue])
- Magent(ContactSensor)
- TemperatureAndHumiditySensor(HumiditySensor/TemperatureSensor)
- Motion(MotionSensor)
- Switch(StatelessProgrammableSwitch)
- Plug(Outlet)
- CtrlNeutral1/CtrlNeutral2(Switch)
- CtrlLN1/CtrlLN2(Switch)
- 86SW1/86SW2(StatelessProgrammableSwitch)
- 86Plug(Outlet)
- Smoke(SmokeSensor)
- Natgas(SmokeSensor)
- Curtain(WindowCovering)
- AirPurifier(AirPurifier/AirQualitySensor/TemperatureSensor/HumiditySensor/Lightbulb)
- Vacuum(Fan)
- PowerPlug(Outlet)
- PowerStrip(Outlet)
- Yeelight(Lightbulb[hue])
- Aqara Switch(Switch)
- Aqara Magent(ContactSensor)
- Aqara TemperatureAndHumiditySensorAndPressure(HumiditySensor/TemperatureSensor/
CommunityTypes.AtmosphericPressureSensor
) - Aqara Motion(MotionSensor)
- Aqara WaterLeak(LeakSensor)
- MP1(Outlet)
- MP2(Outlet)
- Make sure you have V2 of the gateway. V1 has limited space so can't support this feature.
- Update gateway firmware to 1.4.1_141.0141 or later. You can contact @babymoney666 if your firmware is not up to date.
- Install HomeBridge, please follow it's README.
If you are using Raspberry Pi, please read Running-HomeBridge-on-a-Raspberry-Pi. - Make sure you can see HomeBridge in your iOS devices, if not, please go back to step 1.
- Download homebridge-smarthome to your local folder or
npm i homebridge-smarthome
.
- Open Aqara gateway's settings, enable local network protocol.
Please follow the steps in this thread: http://bbs.xiaomi.cn/t-13198850. It's in Chinese so you might need a translator to read it or follow the steps. - You'll need an android device or an emulator (I've used BlueStack and it works fine for me).
- Install Mi app on the Android device and set up your gateway.
- Click in the top right corner.
- Click About tab
- Click few times bottom area to open the programmer mode
- Click the LAN protocol
- Open the LAN protocol and remember the password (this goes to your config.json file)
- Click Information about the gate
- To control the devices, put gateway's MAC address (lower case without colon) and password to ~/.homebridge/config.json.
- How to get device ip and token? see miio.
Basic (enough for Gateway and ZigBee devices) config.json
{
"bridge": {
"name": "SmartHome",
"username": "CC:22:3D:E3:CE:30",
"port": 51826,
"pin": "031-45-154"
},
"platforms": [
{
"platform": "smarthome-mijia",
"web": {
"port": 8888
},
"mijia": {
"sids": [
"34ce0088faed"
],
"passwords": [
"75ED5A235C4A44D4"
],
"devices": []
}
},
{
"platform": "smarthome-broadlink",
"broadlink": {
"devices": []
}
}
]
}
Advanced (for WiFi and BroadLink devices) config.json
{
"bridge": {
"name": "SmartHome",
"username": "CC:22:3D:E3:CE:30",
"port": 51826,
"pin": "031-45-154"
},
"platforms": [
{
"platform": "smarthome-mijia",
"web": {
"port": 8888
},
"mijia": {
"sids": [
"34ce0088faed"
],
"passwords": [
"75ED5A235C4A44D4"
],
"devices": [
{
"sid": "Air Purifier 001",
"name": "Air Purifier",
"type": "wifi",
"model": "air-purifier"
},
{
"sid": "Power Plug 001",
"name": "Power Plug",
"type": "wifi",
"model": "power-plug"
},
{
"sid": "Power Strip 001",
"name": "Power Strip",
"type": "wifi",
"model": "power-strip"
},
{
"sid": "Yeelight 001",
"name": "Yeelight",
"type": "wifi",
"model": "light"
},
{
"sid": "Vacuum Cleaner 001",
"name": "Vacuum Cleaner",
"ip": "192.168.2.200",
"token": "4ac2cd21f3e9272ab21a5c1fd4053ed9",
"type": "wifi",
"model": "vacuum"
}
]
}
},
{
"platform": "smarthome-broadlink",
"broadlink": {
"devices": [
{
"name": "MP2",
"type": "MP2",
"mac": "34:EA:34:D9:FE:B3"
}
]
}
}
]
}
Debug mode:
homebridge -D
Regular mode
homebridge
- If you receive an
{"error":"Invalid key"}
in your log (in debug mode) while trying to control the gateway light, you should generate the key again using an Android Phone or alternatively an emulator such as bluestacks. In some instances there is an issue with keys being generated using the iOS application.
miija
fix & improved magnet sensorsaqara
fix & improved magnet sensorsmijia
improved motion sensorsaqara
improved motion sensorsaqara
disabling pressure form TemperatureAndHumiditySensorAndPressure as it's not supported yet by HomeKit
mijia
fix purifier type error.mijia
fix multi getways.
mijia
fix yeelight missing miio require.
mijia
fix gateway lighthub.
mijia
fix air-purifier accessory(fix multi callback).
mijia
fix air-purifier accessory(remove some duplicated code).
aqara
magnet,motion,switch,temperature-humidity-pressure accessory.mijia
change monitor.js->motion.js.mijia
update miio.
mijia
yeelight accessory(bugfix).
mijia
yeelight accessory.mijia
fix wifi device bug.
mijia
vacuum accessory.mijia
powerplug accessory.mijia
powerstrip accessory.
mijia
magnet sensor accessory.mijia
ctrln1/ctrln2 switch accessory.mijia
ctrlneutral1/ctrlneutral2 switch accessory.mijia
motion sensor accessory.mijia
plug/86plug plug accessory.mijia
86sw1/86sw2 switch accessory.mijia
switch accessory.mijia
smoke sensor accessory.mijia
natgas sensor accessory.mijia
air-purifier accessory.broadlink
mp1/mp2 plug accessory.
mijia
gateway sensor accessory.mijia
door and window sensor accessory.mijia
temperature and humidity sensor accessory.