homebridge-smarthome-plus
v1.1.7
Published
this is a homebridge plugin for mijia eco-chain but also a management app provide web and restapi to manage your mijia eco-chain,you can control and monitor your accessory via apple's homekit or the webapp
Downloads
6
Maintainers
Readme
homebridge plugin and webapp for smarthome
mijia & broadlink & more...
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.
Mijia & Aqara Accessory for homebridge.
Zigbee
Wifi
Supported Devices
- 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)
- Xiaomi Philips Bulb (and Candle Bulb)
Broadlink Accessory for homebridge.
Supported Devices
- MP1(Outlet)
- MP2(Outlet)
Pre-Requirements
- 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.
Installation
- 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
.
Configuration
- 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"
}
]
}
}
]
}
To set Xiaomi Philips Bulbs you'll most likely need a token as auto-token doesn't work properly on them. To obtain a token you'll need to reset the bulb to it's factory settings (delete it from Mi Home app and tur on it off and on 5 times as it will start blinking) and connect your PC to it's WiFi called philips-light_xxx and run in your terminal command "miio discover --sync" (miio is required). When sorted all you have to do it's add it to your config.json file like follow:
"devices": [
(...)
{
"sid": "Your own light name",
"type": "wifi",
"model": "philips.light",
"device_id": "YOUR DEVICE ID",
"token": "YOUR DEVICE TOKEN"
}
(...)
]
Run it
Debug mode:
homebridge -D
Regular mode
homebridge
Troubleshooting
- 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.
Version Logs
1.1.4
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
1.1.3
mijia
fix purifier type error.mijia
fix multi getways.
1.1.2
mijia
fix yeelight missing miio require.
1.1.1
mijia
fix gateway lighthub.
1.1.0
mijia
fix air-purifier accessory(fix multi callback).
1.0.7
mijia
fix air-purifier accessory(remove some duplicated code).
1.0.6
aqara
magnet,motion,switch,temperature-humidity-pressure accessory.mijia
change monitor.js->motion.js.mijia
update miio.
1.0.5
mijia
yeelight accessory(bugfix).
1.0.4
mijia
yeelight accessory.mijia
fix wifi device bug.
1.0.3
mijia
vacuum accessory.mijia
powerplug accessory.mijia
powerstrip accessory.
1.0.2
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.
1.0.1
mijia
gateway sensor accessory.mijia
door and window sensor accessory.mijia
temperature and humidity sensor accessory.