zigbee-herdsman-converters
Version:
Collection of device converters to be used with zigbee-herdsman
144 lines • 6.5 kB
JavaScript
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.readColorCapabilities = readColorCapabilities;
exports.readColorTempMinMax = readColorTempMinMax;
exports.readColorAttributes = readColorAttributes;
exports.findColorTempRange = findColorTempRange;
exports.clampColorTemp = clampColorTemp;
exports.configure = configure;
const logger_1 = require("./logger");
const utils = __importStar(require("./utils"));
const NS = "zhc:light";
async function readColorCapabilities(endpoint) {
await endpoint.read("lightingColorCtrl", ["colorCapabilities"]);
}
async function readColorTempMinMax(endpoint) {
await endpoint.read("lightingColorCtrl", ["colorTempPhysicalMin", "colorTempPhysicalMax"]);
}
function readColorAttributes(entity, meta, additionalAttributes = []) {
/**
* Not all bulbs support the same features, we need to take care we read what is supported.
* `supportsHueAndSaturation` indicates support for currentHue and currentSaturation
* `supportsEnhancedHue` indicates support for enhancedCurrentHue
*
* e.g. IKEA Tådfri LED1624G9 only supports XY (https://github.com/Koenkk/zigbee-herdsman-converters/issues/1340)
*
* Additionally when we get a "get payload", only request the fields included.
*/
const attributes = ["colorMode"];
if (meta?.message) {
if (!meta.message.color || (utils.isObject(meta.message.color) && meta.message.color.x != null)) {
attributes.push("currentX");
}
if (!meta.message.color || (utils.isObject(meta.message.color) && meta.message.color.y != null)) {
attributes.push("currentY");
}
if (utils.getMetaValue(entity, meta.mapped, "supportsHueAndSaturation", "allEqual", true)) {
if (!meta.message.color || (utils.isObject(meta.message.color) && meta.message.color.hue != null)) {
if (utils.getMetaValue(entity, meta.mapped, "supportsEnhancedHue", "allEqual", true)) {
attributes.push("enhancedCurrentHue");
}
else {
attributes.push("currentHue");
}
}
if (!meta.message.color || (utils.isObject(meta.message.color) && meta.message.color.saturation != null)) {
attributes.push("currentSaturation");
}
}
}
return [...attributes, ...additionalAttributes];
}
function findColorTempRange(entity) {
// biome-ignore lint/suspicious/noImplicitAnyLet: ignored using `--suppress`
let colorTempMin;
// biome-ignore lint/suspicious/noImplicitAnyLet: ignored using `--suppress`
let colorTempMax;
if (utils.isGroup(entity)) {
const minCandidates = entity.members
.map((m) => m.getClusterAttributeValue("lightingColorCtrl", "colorTempPhysicalMin"))
.filter((v) => v != null)
.map((v) => Number(v));
if (minCandidates.length > 0) {
colorTempMin = Math.max(...minCandidates);
}
const maxCandidates = entity.members
.map((m) => m.getClusterAttributeValue("lightingColorCtrl", "colorTempPhysicalMax"))
.filter((v) => v != null)
.map((v) => Number(v));
if (maxCandidates.length > 0) {
colorTempMax = Math.min(...maxCandidates);
}
}
else {
colorTempMin = entity.getClusterAttributeValue("lightingColorCtrl", "colorTempPhysicalMin");
colorTempMax = entity.getClusterAttributeValue("lightingColorCtrl", "colorTempPhysicalMax");
}
if (colorTempMin == null || colorTempMax == null) {
const entityId = utils.isGroup(entity) ? entity.groupID : entity.deviceIeeeAddress;
logger_1.logger.debug(`Missing colorTempPhysicalMin and/or colorTempPhysicalMax for ${utils.isGroup(entity) ? "group" : "endpoint"} ${entityId}!`, NS);
}
return [colorTempMin, colorTempMax];
}
function clampColorTemp(colorTemp, colorTempMin, colorTempMax) {
if (colorTempMin != null && colorTemp < colorTempMin) {
logger_1.logger.debug(`Requested color_temp ${colorTemp} is lower than minimum supported ${colorTempMin}, using minimum!`, NS);
return colorTempMin;
}
if (colorTempMax != null && colorTemp > colorTempMax) {
logger_1.logger.debug(`Requested color_temp ${colorTemp} is higher than maximum supported ${colorTempMax}, using maximum!`, NS);
return colorTempMax;
}
return colorTemp;
}
async function configure(device, coordinatorEndpoint, readColorTempMinMaxAttribute) {
if (device.powerSource === "Unknown") {
device.powerSource = "Mains (single phase)";
device.save();
}
for (const endpoint of device.endpoints.filter((e) => e.supportsInputCluster("lightingColorCtrl"))) {
try {
await readColorCapabilities(endpoint);
if (readColorTempMinMaxAttribute) {
await readColorTempMinMax(endpoint);
}
}
catch {
/* Fails for some, e.g. https://github.com/Koenkk/zigbee2mqtt/issues/5717 */
}
}
}
//# sourceMappingURL=light.js.map
;