zigbee2mqtt/lib/devices.js

53 lines
1.6 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
},
2018-04-19 13:46:59 -07:00
'lumi.sensor_switch.aq2': {
model: 'WXKG11LM',
vendor: 'Xiaomi',
description: 'Aqara wireless switch',
supports: 'single, double, triple, quadruple 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-19 14:00:07 -07:00
'lumi.sensor_magnet.aq2': {
model: 'MCCGQ11LM',
vendor: 'Xiaomi',
description: 'Aqara door & window contact sensor',
supports: 'open and closed state',
},
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, brightness, color temperature',
2018-04-16 12:41:24 -07:00
},
2018-04-18 13:11:00 -07:00
'LLC020': {
model: '7146060PH',
vendor: 'Philips',
description: 'Hue Go',
2018-04-18 13:17:03 -07:00
supports: 'on/off, brightness, color temperature, color rgb',
2018-04-18 13:11:00 -07:00
},
2018-04-11 10:55:54 -07:00
}
module.exports = devices;