zigbee2mqtt/devices.js

35 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-04-11 10:55:54 -07:00
const devices = {
'lumi.sensor_switch': {
model: 'WXKG01LM',
2018-04-16 12:41:24 -07:00
vendor: 'Xiaomi',
2018-04-11 10:55:54 -07:00
description: 'MiJia wireless switch',
2018-04-12 07:58:33 -07:00
supports: 'single, double, triple, quadruple, many and long click',
2018-04-11 10:55:54 -07:00
},
'lumi.sens': {
model: 'WSDCGQ01LM',
2018-04-16 12:41:24 -07:00
vendor: 'Xiaomi',
2018-04-11 10:55:54 -07:00
description: 'MiJia temperature & humidity sensor ',
2018-04-11 11:54:22 -07:00
supports: 'temperature and humidity',
2018-04-11 10:55:54 -07:00
},
'lumi.sensor_motion': {
model: 'RTCGQ01LM',
2018-04-16 12:41:24 -07:00
vendor: 'Xiaomi',
2018-04-11 10:55:54 -07:00
description: 'MiJia human body movement sensor',
2018-04-11 11:54:22 -07:00
supports: 'occupancy, motion and no motion'
2018-04-11 10:55:54 -07:00
},
'lumi.sensor_magnet': {
model: 'MCCGQ01LM',
2018-04-16 12:41:24 -07:00
vendor: 'Xiaomi',
2018-04-11 10:55:54 -07:00
description: 'MiJia door & window contact sensor',
2018-04-11 11:54:22 -07:00
supports: 'open and closed state',
2018-04-11 10:55:54 -07:00
},
2018-04-16 12:41:24 -07:00
'TRADFRI bulb E27 WS opal 980lm': {
model: 'LED1545G12',
vendor: 'IKEA',
description: 'TRADFRI LED bulb E27 980 lumen, dimmable, white spectrum, opal white',
supports: 'on/off, dimming, color temperature',
},
2018-04-11 10:55:54 -07:00
}
module.exports = devices;