2018-04-25 11:54:41 -07:00
|
|
|
const settings = require('./util/settings');
|
|
|
|
|
|
|
|
const configurations = {
|
2018-04-23 09:29:35 -07:00
|
|
|
// Binary sensor
|
|
|
|
'binary_sensor_occupancy': {
|
|
|
|
type: 'binary_sensor',
|
|
|
|
object_id: 'occupancy',
|
|
|
|
discovery_payload: {
|
2018-04-23 12:44:06 -07:00
|
|
|
payload_on: true,
|
|
|
|
payload_off: false,
|
2018-04-23 09:29:35 -07:00
|
|
|
value_template: '{{ value_json.occupancy }}',
|
|
|
|
device_class: 'motion',
|
2018-05-17 08:20:46 -07:00
|
|
|
json_attributes: ['battery'],
|
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
},
|
2018-04-23 12:44:06 -07:00
|
|
|
'binary_sensor_contact': {
|
2018-04-23 09:29:35 -07:00
|
|
|
type: 'binary_sensor',
|
2018-04-23 12:44:06 -07:00
|
|
|
object_id: 'contact',
|
2018-04-23 09:29:35 -07:00
|
|
|
discovery_payload: {
|
2018-04-23 12:44:06 -07:00
|
|
|
payload_on: false,
|
|
|
|
payload_off: true,
|
|
|
|
value_template: '{{ value_json.contact }}',
|
2018-04-23 09:29:35 -07:00
|
|
|
device_class: 'door',
|
2018-05-17 08:20:46 -07:00
|
|
|
json_attributes: ['battery'],
|
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
},
|
|
|
|
'binary_sensor_water_leak': {
|
|
|
|
type: 'binary_sensor',
|
|
|
|
object_id: 'water_leak',
|
|
|
|
discovery_payload: {
|
|
|
|
payload_on: true,
|
|
|
|
payload_off: false,
|
|
|
|
value_template: '{{ value_json.water_leak }}',
|
|
|
|
device_class: 'moisture',
|
2018-05-17 08:20:46 -07:00
|
|
|
json_attributes: ['battery'],
|
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
},
|
2018-05-16 11:15:50 -07:00
|
|
|
'binary_sensor_smoke': {
|
|
|
|
type: 'binary_sensor',
|
|
|
|
object_id: 'smoke',
|
|
|
|
discovery_payload: {
|
|
|
|
payload_on: true,
|
|
|
|
payload_off: false,
|
|
|
|
value_template: '{{ value_json.smoke }}',
|
|
|
|
device_class: 'smoke',
|
2018-05-17 08:20:46 -07:00
|
|
|
json_attributes: ['battery'],
|
|
|
|
},
|
2018-05-16 11:15:50 -07:00
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
|
|
|
|
// Sensor
|
|
|
|
'sensor_illuminance': {
|
|
|
|
type: 'sensor',
|
|
|
|
object_id: 'illuminance',
|
|
|
|
discovery_payload: {
|
|
|
|
unit_of_measurement: 'lx',
|
|
|
|
icon: 'mdi:theme-light-dark',
|
|
|
|
value_template: '{{ value_json.illuminance }}',
|
|
|
|
json_attributes: ['battery'],
|
2018-05-17 08:20:46 -07:00
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
},
|
|
|
|
'sensor_humidity': {
|
|
|
|
type: 'sensor',
|
|
|
|
object_id: 'humidity',
|
|
|
|
discovery_payload: {
|
|
|
|
unit_of_measurement: '%',
|
|
|
|
icon: 'mdi:water-percent',
|
|
|
|
value_template: '{{ value_json.humidity }}',
|
|
|
|
json_attributes: ['battery'],
|
2018-05-17 08:20:46 -07:00
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
},
|
|
|
|
'sensor_temperature': {
|
|
|
|
type: 'sensor',
|
|
|
|
object_id: 'temperature',
|
|
|
|
discovery_payload: {
|
|
|
|
unit_of_measurement: '°C',
|
|
|
|
icon: 'mdi:temperature-celsius',
|
|
|
|
value_template: '{{ value_json.temperature }}',
|
|
|
|
json_attributes: ['battery'],
|
2018-05-17 08:20:46 -07:00
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
},
|
|
|
|
'sensor_pressure': {
|
|
|
|
type: 'sensor',
|
|
|
|
object_id: 'pressure',
|
|
|
|
discovery_payload: {
|
|
|
|
unit_of_measurement: 'Pa',
|
|
|
|
icon: 'mdi:speedometer',
|
|
|
|
value_template: '{{ value_json.pressure }}',
|
|
|
|
json_attributes: ['battery'],
|
2018-05-17 08:20:46 -07:00
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
},
|
2018-05-08 11:13:01 -07:00
|
|
|
'sensor_click': {
|
2018-04-23 09:29:35 -07:00
|
|
|
type: 'sensor',
|
2018-05-08 11:13:01 -07:00
|
|
|
object_id: 'click',
|
2018-04-23 09:29:35 -07:00
|
|
|
discovery_payload: {
|
|
|
|
icon: 'mdi:toggle-switch',
|
|
|
|
value_template: '{{ value_json.click }}',
|
|
|
|
json_attributes: ['battery'],
|
2018-05-17 08:20:46 -07:00
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
},
|
2018-04-23 13:36:30 -07:00
|
|
|
'sensor_power': {
|
|
|
|
type: 'sensor',
|
|
|
|
object_id: 'power',
|
|
|
|
discovery_payload: {
|
|
|
|
unit_of_measurement: 'Watt',
|
|
|
|
icon: 'mdi:flash',
|
|
|
|
value_template: '{{ value_json.power }}',
|
2018-05-17 08:20:46 -07:00
|
|
|
},
|
2018-04-23 13:36:30 -07:00
|
|
|
},
|
2018-05-08 11:20:57 -07:00
|
|
|
'sensor_action': {
|
|
|
|
type: 'sensor',
|
|
|
|
object_id: 'action',
|
|
|
|
discovery_payload: {
|
|
|
|
icon: 'mdi:cube',
|
|
|
|
value_template: '{{ value_json.action }}',
|
|
|
|
json_attributes: ['battery'],
|
2018-05-17 08:20:46 -07:00
|
|
|
},
|
2018-05-08 11:20:57 -07:00
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
|
|
|
|
// Light
|
|
|
|
'light_brightness_colortemp_xy': {
|
|
|
|
type: 'light',
|
|
|
|
object_id: 'light',
|
|
|
|
discovery_payload: {
|
|
|
|
brightness: true,
|
|
|
|
color_temp: true,
|
|
|
|
xy: true,
|
|
|
|
platform: 'mqtt_json',
|
2018-05-17 08:20:46 -07:00
|
|
|
command_topic: true,
|
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
},
|
|
|
|
'light_brightness_colortemp': {
|
|
|
|
type: 'light',
|
|
|
|
object_id: 'light',
|
|
|
|
discovery_payload: {
|
|
|
|
brightness: true,
|
|
|
|
color_temp: true,
|
|
|
|
platform: 'mqtt_json',
|
2018-05-17 08:20:46 -07:00
|
|
|
command_topic: true,
|
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
},
|
2018-05-06 09:08:10 -07:00
|
|
|
'light_brightness': {
|
|
|
|
type: 'light',
|
|
|
|
object_id: 'light',
|
|
|
|
discovery_payload: {
|
|
|
|
brightness: true,
|
|
|
|
platform: 'mqtt_json',
|
2018-05-17 08:20:46 -07:00
|
|
|
command_topic: true,
|
|
|
|
},
|
2018-05-06 09:08:10 -07:00
|
|
|
},
|
2018-04-23 13:36:30 -07:00
|
|
|
|
|
|
|
// Switch
|
|
|
|
'switch': {
|
|
|
|
type: 'switch',
|
|
|
|
object_id: 'switch',
|
|
|
|
discovery_payload: {
|
2018-04-24 10:03:09 -07:00
|
|
|
payload_off: 'OFF',
|
|
|
|
payload_on: 'ON',
|
2018-04-23 13:36:30 -07:00
|
|
|
value_template: '{{ value_json.state }}',
|
2018-05-17 08:20:46 -07:00
|
|
|
command_topic: true,
|
|
|
|
},
|
2018-04-24 10:30:56 -07:00
|
|
|
},
|
2018-04-29 05:09:49 -07:00
|
|
|
'switch_l1': {
|
|
|
|
type: 'switch',
|
|
|
|
object_id: 'switch_l1',
|
|
|
|
discovery_payload: {
|
|
|
|
payload_off: 'OFF',
|
|
|
|
payload_on: 'ON',
|
|
|
|
value_template: '{{ value_json.state_l1 }}',
|
|
|
|
command_topic: true,
|
2018-05-17 08:20:46 -07:00
|
|
|
command_topic_prefix: 'l1',
|
|
|
|
},
|
2018-04-29 05:09:49 -07:00
|
|
|
},
|
|
|
|
'switch_l2': {
|
|
|
|
type: 'switch',
|
|
|
|
object_id: 'switch_l2',
|
|
|
|
discovery_payload: {
|
|
|
|
payload_off: 'OFF',
|
|
|
|
payload_on: 'ON',
|
|
|
|
value_template: '{{ value_json.state_l2 }}',
|
|
|
|
command_topic: true,
|
2018-05-17 08:20:46 -07:00
|
|
|
command_topic_prefix: 'l2',
|
|
|
|
},
|
2018-04-29 05:09:49 -07:00
|
|
|
},
|
2018-04-23 09:29:35 -07:00
|
|
|
};
|
|
|
|
|
2018-05-16 10:40:05 -07:00
|
|
|
// Map homeassitant configurations to devices.
|
|
|
|
const mapping = {
|
|
|
|
'WXKG01LM': [configurations.sensor_click],
|
|
|
|
'WXKG11LM': [configurations.sensor_click],
|
|
|
|
'WXKG03LM': [configurations.sensor_click],
|
|
|
|
'WXKG02LM': [configurations.sensor_click],
|
|
|
|
'QBKG04LM': [configurations.switch],
|
|
|
|
'QBKG03LM': [configurations.switch_l1, configurations.switch_l2],
|
|
|
|
'WSDCGQ01LM': [configurations.sensor_temperature, configurations.sensor_humidity],
|
|
|
|
'WSDCGQ11LM': [configurations.sensor_temperature, configurations.sensor_humidity, configurations.sensor_pressure],
|
|
|
|
'RTCGQ01LM': [configurations.binary_sensor_occupancy],
|
|
|
|
'RTCGQ11LM': [configurations.binary_sensor_occupancy, configurations.sensor_illuminance],
|
|
|
|
'MCCGQ01LM': [configurations.binary_sensor_contact],
|
|
|
|
'MCCGQ11LM': [configurations.binary_sensor_contact],
|
|
|
|
'SJCGQ11LM': [configurations.binary_sensor_water_leak],
|
|
|
|
'MFKZQ01LM': [configurations.sensor_action],
|
|
|
|
'ZNCZ02LM': [configurations.switch, configurations.sensor_power],
|
|
|
|
'QBCZ11LM': [configurations.switch, configurations.sensor_power],
|
|
|
|
'LED1545G12': [configurations.light_brightness_colortemp],
|
|
|
|
'LED1623G12': [configurations.light_brightness],
|
|
|
|
'LED1537R6': [configurations.light_brightness_colortemp],
|
|
|
|
'LED1650R5': [configurations.light_brightness],
|
|
|
|
'LED1536G5': [configurations.light_brightness_colortemp],
|
|
|
|
'7146060PH': [configurations.light_brightness_colortemp_xy],
|
2018-05-16 10:52:44 -07:00
|
|
|
'F7C033': [configurations.light_brightness],
|
2018-05-16 11:15:50 -07:00
|
|
|
'JTYJ-GD-01LM/BW': [configurations.binary_sensor_smoke],
|
2018-05-16 10:40:05 -07:00
|
|
|
};
|
|
|
|
|
2018-04-25 11:54:41 -07:00
|
|
|
// A map of all discoverd devices
|
|
|
|
const discovered = {};
|
|
|
|
|
2018-05-16 10:40:05 -07:00
|
|
|
function discover(deviceID, model, mqtt) {
|
2018-04-25 11:54:41 -07:00
|
|
|
// Check if already discoverd and check if there are configs.
|
2018-05-16 10:40:05 -07:00
|
|
|
if (discovered[deviceID] || !mapping[model]) {
|
2018-04-25 11:54:41 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const friendlyName = settings.getDevice(deviceID).friendly_name;
|
|
|
|
|
2018-05-16 10:40:05 -07:00
|
|
|
mapping[model].forEach((config) => {
|
2018-04-25 11:54:41 -07:00
|
|
|
const topic = `${config.type}/${deviceID}/${config.object_id}/config`;
|
|
|
|
const payload = config.discovery_payload;
|
|
|
|
payload.state_topic = `${settings.get().mqtt.base_topic}/${friendlyName}`;
|
|
|
|
payload.availability_topic = `${settings.get().mqtt.base_topic}/bridge/state`;
|
|
|
|
|
|
|
|
// Set unique names in cases this device produces multiple entities in homeassistant.
|
2018-05-16 10:40:05 -07:00
|
|
|
payload.name = mapping[model].length > 1 ? `${friendlyName}_${config.object_id}` : friendlyName;
|
2018-04-25 11:54:41 -07:00
|
|
|
|
|
|
|
if (payload.command_topic) {
|
2018-04-29 05:09:49 -07:00
|
|
|
payload.command_topic = `${settings.get().mqtt.base_topic}/${friendlyName}/`;
|
|
|
|
|
|
|
|
if (payload.command_topic_prefix) {
|
|
|
|
payload.command_topic += `${payload.command_topic_prefix}/`;
|
|
|
|
}
|
|
|
|
|
|
|
|
payload.command_topic += 'set';
|
2018-04-25 11:54:41 -07:00
|
|
|
}
|
|
|
|
|
2018-05-15 09:42:26 -07:00
|
|
|
mqtt.publish(topic, JSON.stringify(payload), {retain: true, qos: 0}, null, 'homeassistant');
|
2018-04-25 11:54:41 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
discovered[deviceID] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
2018-05-16 10:40:05 -07:00
|
|
|
mapping: mapping,
|
|
|
|
discover: (deviceID, model, mqtt) => discover(deviceID, model, mqtt),
|
2018-04-25 11:54:41 -07:00
|
|
|
};
|