mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-16 18:39:09 -07:00
4fee0ff501
I did not know about the hassio addon for this project and it's not mention anywhere other than in a closed issue so I thought it made sense to reference it here.
112 lines
3.9 KiB
JavaScript
112 lines
3.9 KiB
JavaScript
/**
|
|
* This script generates the supported devices page.
|
|
* Run by executing: npm run docs
|
|
*/
|
|
|
|
const deviceMapping = require('zigbee-shepherd-converters').devices;
|
|
const fs = require('fs');
|
|
const YAML = require('json2yaml');
|
|
const homeassistant = require('../lib/homeassistant');
|
|
|
|
const outputdir = process.argv[2];
|
|
|
|
if (!outputdir) {
|
|
console.error("Please specify an output directory");
|
|
}
|
|
|
|
let file = 'Supported-devices.md';
|
|
let text = '*NOTE: Automatically generated by `npm run docgen`*\n';
|
|
text += `
|
|
In case you own a Zigbee device which is **NOT** listed here, please see [How to support new devices](https://github.com/Koenkk/zigbee2mqtt/wiki/How-to-support-new-devices).
|
|
\n`;
|
|
|
|
const logDevices = (devices) => {
|
|
let result = '';
|
|
result += '| Model | Description | Picture |\n';
|
|
result += '| ------------- | ------------- | -------------------------- |\n';
|
|
devices = new Map(devices.map((d) => [d.model, d]));
|
|
devices.forEach((device) => {
|
|
const pathFriendly = device.model.replace(new RegExp("/", "g"), '-').replace(new RegExp(":", "g"), '-').replace(new RegExp(" ", "g"), '-');
|
|
result += `| ${device.model} | ${device.vendor} ${device.description} (${device.supports}) | ![${pathFriendly}](images/devices/${pathFriendly}.jpg) |\n`;
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
const vendors = Array.from(new Set(Object.values(deviceMapping).map((d) => d.vendor)));
|
|
vendors.sort();
|
|
vendors.forEach((vendor) => {
|
|
text += `### ${vendor}\n`;
|
|
text += logDevices(Object.values(deviceMapping).filter((d) => d.vendor === vendor));
|
|
text += '\n';
|
|
})
|
|
|
|
fs.writeFileSync(outputdir + '/' + file, text);
|
|
|
|
|
|
file = 'Integrating-with-Home-Assistant.md';
|
|
text = '*NOTE: Automatically generated by `npm run docgen`*\n\n';
|
|
text += 'If you\'re hosting zigbee2mqtt using a [this hassio addon-on](https://github.com/danielwelch/hassio-zigbee2mqtt) use their documentation on how to configure.\n\n'
|
|
text += 'The easiest way to integrate zigbee2mqtt with Home Assistant is by using [MQTT discovery](https://www.home-assistant.io/docs/mqtt/discovery/).'
|
|
text += ' To enable MQTT discovery set `homeassistant: true` in your zigbee2mqtt `configuration.yaml` and add the following to your Home Assistant `configuration.yaml`.\n'
|
|
text += '```yaml\n'
|
|
text += 'mqtt:\n'
|
|
text += ' discovery: true\n'
|
|
text += '```\n'
|
|
|
|
text += '\n\n'
|
|
|
|
text += 'To respond to button clicks you can use the following Home Assistant configuration:\n'
|
|
text += '```yaml'
|
|
text += `
|
|
automation:
|
|
- alias: Respond to button clicks
|
|
trigger:
|
|
platform: mqtt
|
|
topic: 'zigbee2mqtt/<FRIENDLY_NAME'
|
|
condition:
|
|
condition: template
|
|
value_template: "{{ 'single' == trigger.payload_json.click }}"
|
|
action:
|
|
entity_id: light.bedroom
|
|
service: light.toggle
|
|
`
|
|
text += '```\n'
|
|
text += '**When changing a `friendly_name` for a device you first have to start zigbee2mqtt and after that restart Home Assistant in order to discover the new device ID.**\n\n';
|
|
text += 'In case you **dont** want to use Home Assistant MQTT discovery you can use the configuration below.\n\n'
|
|
|
|
const homeassistantConfig = (device) => {
|
|
const payload = {
|
|
platform: 'mqtt',
|
|
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>",
|
|
availability_topic: "zigbee2mqtt/bridge/state",
|
|
...device.discovery_payload,
|
|
};
|
|
|
|
if (payload.command_topic) {
|
|
payload.command_topic = `zigbee2mqtt/<FRIENDLY_NAME>/set`;
|
|
}
|
|
|
|
let yml = YAML.stringify([payload]);
|
|
yml = yml.replace(/(-) \n /g, '- ');
|
|
yml = yml.replace('---', `${device.type}:`)
|
|
return yml;
|
|
}
|
|
|
|
Object.values(deviceMapping).forEach((device) => {
|
|
text += `### ${device.model}\n`;
|
|
text += '```yaml\n'
|
|
|
|
const configurations = homeassistant.mapping[device.model]
|
|
configurations.forEach((d, i) => {
|
|
text += homeassistantConfig(d);
|
|
if (configurations.length > 1 && i < configurations.length - 1) {
|
|
text += '\n';
|
|
}
|
|
})
|
|
|
|
text += '```\n\n';
|
|
});
|
|
|
|
fs.writeFileSync(outputdir + '/' + file, text);
|