mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-16 18:39:09 -07:00
50226d2c84
* Add dumpHomeAssistantMapping * Add exposes for lights. https://github.com/Koenkk/zigbee2mqtt/issues/4466 * Updates * Updates
27 lines
975 B
JavaScript
27 lines
975 B
JavaScript
const HomeAssistant = require('../lib/extension/homeassistant');
|
|
const stringify = require('json-stable-stringify-without-jsonify');
|
|
const homeassistant = new HomeAssistant(null, null, null, null, {on: () => {}});
|
|
const mapping = Object.entries(homeassistant._getMapping());
|
|
mapping.sort((a, b) => {
|
|
if (a[0] > b[0]) {
|
|
return -1;
|
|
}
|
|
if (b[0] > a[0]) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
});
|
|
|
|
for (const map of mapping) {
|
|
for (const entry of map[1]) {
|
|
if (entry.type === 'light') {
|
|
if (entry.discovery_payload.brightness === false) delete entry.discovery_payload.brightness;
|
|
if (entry.discovery_payload.color_temp === false) delete entry.discovery_payload.color_temp;
|
|
if (entry.discovery_payload.xy === false) delete entry.discovery_payload.xy;
|
|
if (entry.discovery_payload.hs === false) delete entry.discovery_payload.hs;
|
|
}
|
|
}
|
|
|
|
console.log(`${map[0]} - ${stringify(map[1])}`);
|
|
}
|