UNPKG

zigbee-herdsman-converters

Version:

Collection of device converters to be used with zigbee-herdsman

10,417 lines 545 kB
"use strict";
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.definitions = void 0;
const zigbee_herdsman_1 = require("zigbee-herdsman");
const fz = __importStar(require("../converters/fromZigbee"));
const tz = __importStar(require("../converters/toZigbee"));
const constants = __importStar(require("../lib/constants"));
const ewelink_1 = require("../lib/ewelink");
const exposes = __importStar(require("../lib/exposes"));
const logger_1 = require("../lib/logger");
const m = __importStar(require("../lib/modernExtend"));
const reporting = __importStar(require("../lib/reporting"));
const sonoff_1 = require("../lib/sonoff");
const tuya = __importStar(require("../lib/tuya"));
const utils = __importStar(require("../lib/utils"));
const { ewelinkAction, ewelinkBattery } = ewelink_1.modernExtend;
const NS = "zhc:sonoff";
const manufacturerOptions = {
    manufacturerCode: zigbee_herdsman_1.Zcl.ManufacturerCode.SHENZHEN_COOLKIT_TECHNOLOGY_CO_LTD,
    disableDefaultResponse: false,
};
const defaultResponseOptions = { disableDefaultResponse: false };
const disableDefaultResponseOptions = { disableDefaultResponse: true };
const e = exposes.presets;
const ea = exposes.access;
// Legacy 0x501D/0x501F/cmd 0x06/0x09 amount unit mapping: 0 = US gallon, 1 = liter
const SWVZNELegacyIrrigationAmountUnitByCode = {
    0: "us_gallon",
    1: "liter",
};
const SWVZNELegacyIrrigationAmountUnitCodeByName = {
    us_gallon: 0,
    liter: 1,
};
// Unified 0x5021 UnitOfWaterFlow mapping: 0 = liter, 1 = US gallon, 2 = imperial gallon
const SWVZNEUnifiedWaterFlowUnitByCode = {
    0: "liter",
    1: "us_gallon",
    2: "imperial_gallon",
};
const SWVZNEUnifiedWaterFlowUnitCodeByName = {
    liter: 0,
    us_gallon: 1,
    imperial_gallon: 2,
};
// Unified amount unit mapping used by 0x501D/0x501F/cmd 0x06/0x09: 0 = US gallon, 1 = liter, 2 = imperial gallon
const SWVZNEUnifiedIrrigationAmountUnitByCode = {
    0: "us_gallon",
    1: "liter",
    2: "imperial_gallon",
};
const SWVZNEUnifiedIrrigationAmountUnitCodeByName = {
    us_gallon: 0,
    liter: 1,
    imperial_gallon: 2,
};
const SWVZNELitersPerWaterFlowUnit = {
    liter: 1,
    us_gallon: 3.785411784,
    imperial_gallon: 4.54609,
};
// Single-channel SWV-ZF* with flow meter supports unified imperial gallon from 1.1.0, while dual-channel SWV-ZF2 supports it from 1.0.9
const SWVZNEFirmwareSupportsUnifiedImperialGallon = (device) => {
    if (!device?.softwareBuildID)
        return false;
    const currentParts = device.softwareBuildID.split(".").map((part) => Number(part));
    const targetParts = (device.modelID === "SWV-ZF2" ? "1.0.9" : "1.1.0").split(".").map((part) => Number(part));
    const length = Math.max(currentParts.length, targetParts.length);
    for (let i = 0; i < length; i++) {
        const currentPart = Number.isFinite(currentParts[i]) ? currentParts[i] : 0;
        const targetPart = Number.isFinite(targetParts[i]) ? targetParts[i] : 0;
        if (currentPart > targetPart)
            return true;
        if (currentPart < targetPart)
            return false;
    }
    return true;
};
const SWVZNENormalizeWaterFlowUnit = (value) => {
    if (value === "gallon" || value === "US gallon" || value === "us_gallon")
        return "us_gallon";
    if (value === "liter" || value === "imperial_gallon")
        return value;
    return undefined;
};
const SWVZNEIrrigationAmountUnitFromDeviceCode = (code, device) => {
    if (SWVZNEFirmwareSupportsUnifiedImperialGallon(device)) {
        return SWVZNEUnifiedIrrigationAmountUnitByCode[code];
    }
    return SWVZNELegacyIrrigationAmountUnitByCode[code];
};
const SWVZNEIrrigationAmountUnitToDeviceCode = (unit, device) => {
    const normalizedUnit = SWVZNENormalizeWaterFlowUnit(unit);
    if (!normalizedUnit)
        return undefined;
    if (SWVZNEFirmwareSupportsUnifiedImperialGallon(device))
        return SWVZNEUnifiedIrrigationAmountUnitCodeByName[normalizedUnit];
    if (normalizedUnit === "imperial_gallon")
        return undefined;
    return SWVZNELegacyIrrigationAmountUnitCodeByName[normalizedUnit];
};
// SWV-ZN/ZF history request cache
const swvzfReqCache = {};
// SWV-ZN/ZF 30-day history multi-package merge
const swvzfRespCache = {};
// SWV-ZN/ZF multi-package merge cache expiration time
const swvzfCacheExpireTime = 5 * 1000; // 5s
// Build a fromZigbee converter for attributes reported as big-endian 32-bit integers.
const bigEndianNumericFzConvert = (name, attributeKey) => {
    return (model, msg, publish, options, meta) => {
        if (!(attributeKey in msg.data)) {
            return;
        }
        const rawValue = msg.data[attributeKey];
        utils.assertNumber(rawValue);
        return {
            [name]: (0, sonoff_1.toBigEndianUInt32)(rawValue),
        };
    };
};
// Endpoint-specific composite exposes keep child feature property names unchanged; only the outer object property gets the endpoint suffix.
const exposeCompositeEndpoints = (expose, endpointNames) => {
    if (!endpointNames)
        return [expose];
    return endpointNames.map((endpointName) => {
        const endpointExpose = expose.clone();
        endpointExpose.endpoint = endpointName;
        if (endpointExpose.property) {
            endpointExpose.property = `${endpointExpose.property}_${endpointName}`;
        }
        return endpointExpose;
    });
};
// **************************** SWV-ZN/ZF related ↑ ****************************
const sonoffTrvzbtScheduleDays = ["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"];
const sonoffTrvzbtTargetTemperatureRange = { min: 5, max: 30, step: 0.5 };
const sonoffTrvzbtScheduleGroupLookup = { "1": 0, "2": 1, "3": 2 };
const sonoffTrvzbtScheduleGroupInternalRange = { min: 0, max: 2 };
const sonoffTrvzbtFrostProtectionTemperatureRange = { min: 5, max: 15, step: 0.5 };
const sonoffTrvzbtLocalTemperatureCalibrationRange = { min: -10, max: 10, step: 0.2 };
const sonoffTrvzbtTemporaryModeLookup = { boost: 0, timer: 1 };
const sonoffTrvzbtTemporaryModeTemperatureScale = 100;
const sonoffTrvzbtFaultCodeLookup = {
    0: "temperature_sensor_issue_detected",
    1: "valve_adjustment_issue_detected",
    2: "battery_too_low_please_replace_the_batteries",
    3: "battery_too_low_for_firmware_upgrade",
    4: "battery_status_abnormal",
    5: "external_temperature_sensor_connection_issue",
};
const sonoffTrvzbtKnownFaultCodeMask = Object.keys(sonoffTrvzbtFaultCodeLookup).reduce((mask, bit) => mask | (1 << Number(bit)), 0);
const sonoffTrvzbtTemperatureControlHistoryValueOffset = 9;
const sonoffTrvzbtTemperatureControlHistoryCacheTimeoutMs = 30 * 1000;
const sonoffTpWgzbaScheduleGroupLookup = { "1": 0, "2": 1, "3": 2 };
const sonoffTpWgzbaScheduleGroupInternalRange = { min: 0, max: 2 };
const sonoffTpWgzbaTargetTemperatureRange = { min: 5, max: 30, step: 0.5 };
const sonoffTpWgzbaFrostProtectionTemperatureRange = { min: 5, max: 15, step: 0.5 };
const sonoffTpWgzbaLocalTemperatureCalibrationRange = { min: -10, max: 10, step: 0.2 };
const sonoffTpWgzbaTemperatureScale = 100;
const sonoffTpWgzbaRelayOutputLookup = { normally_open_no: 0, normally_closed_nc: 1 };
const sonoffTpWgzbaBrightnessRange = { min: 0, max: 8, step: 1 };
const sonoffTpWgzbaHysteresisLowRange = { min: -2.6, max: -0.2, step: 0.2 };
const sonoffTpWgzbaHysteresisHighRange = { min: 0, max: 2.6, step: 0.2 };
const sonoffTpWgzbaExternalTemperatureInputRange = { min: 0.0, max: 99.9, step: 0.1, precision: 1 };
const sonoffTpWgzbaTemperatureSensorSelectLookup = { internal: 0, external: 1, external_2: 2, external_3: 3 };
const sonoffTpWgzbaTemperatureSensorSelectValues = Object.keys(sonoffTpWgzbaTemperatureSensorSelectLookup);
const sonoffTpWgzbaDefaultTemperatureSensorSelect = "external";
const sonoffTpWgzbaTemporaryCommandModeLookup = { boost: 1, timer: 2 };
const sonoffTpWgzbaTemporaryAttributeModeLookup = { boost: 0, timer: 1 };
const sonoffTpWgzbaTemporaryModeStatusLookup = {
    0: "success",
    1: "fail",
    2: "invalid_mode",
    3: "invalid_duration",
    4: "invalid_temperature",
    5: "busy",
};
const sonoffTpWgzbaNtcTemperatureStatusLookup = {
    32768: "invalid_unknown",
    33024: "not_connected",
    33280: "short_circuit",
    33536: "adc_invalid",
};
const sonoffTpWgzbaNtcTemperatureMinimumRaw = -27315;
const sonoffTpWgzbaOverheatProtectionTemperatureRange = { min: 20, max: 50, step: 0.5 };
const sonoffTpWgzbaTemperatureControlHistoryValueOffset = 9;
const sonoffTpWgzbaTemperatureControlHistoryCacheTimeoutMs = 30 * 1000;
const formatSonoffTpWgzbaNtcTemperature = (value) => {
    utils.assertNumber(value, "currentNtcTemperature");
    const rawValue = value & 0xffff;
    const status = sonoffTpWgzbaNtcTemperatureStatusLookup[rawValue];
    if (status !== undefined)
        return status;
    const signedValue = rawValue >= 0x8000 ? rawValue - 0x10000 : rawValue;
    if (signedValue < sonoffTpWgzbaNtcTemperatureMinimumRaw)
        return sonoffTpWgzbaNtcTemperatureStatusLookup[32768];
    return `${(signedValue / sonoffTpWgzbaTemperatureScale).toFixed(2)} °C`;
};
const sonoffTrvzbtScheduleActiveNumCache = new Map();
const sonoffTrvzbtScheduleSelectedNumCache = new Map();
const sonoffTrvzbtTemperatureControlHistoryReqCache = {};
const sonoffTrvzbtTemperatureControlHistoryRespCache = {};
const sonoffTpWgzbaScheduleActiveNumCache = new Map();
const sonoffTpWgzbaScheduleSelectedNumCache = new Map();
const sonoffTpWgzbaTemperatureControlHistoryReqCache = {};
const sonoffTpWgzbaTemperatureControlHistoryRespCache = {};
const getValidSonoffTrvzbtScheduleGroupNum = (value) => {
    const scheduleGroup = Number(value);
    if (!Number.isInteger(scheduleGroup) ||
        scheduleGroup < sonoffTrvzbtScheduleGroupInternalRange.min ||
        scheduleGroup > sonoffTrvzbtScheduleGroupInternalRange.max) {
        return;
    }
    return scheduleGroup;
};
const getValidSonoffTrvzbtSchedulePublicGroup = (value) => {
    const scheduleGroup = String(value);
    if (!(scheduleGroup in sonoffTrvzbtScheduleGroupLookup)) {
        return;
    }
    return scheduleGroup;
};
const assertSonoffTrvzbtSchedulePublicGroup = (value, key) => {
    const scheduleGroup = getValidSonoffTrvzbtSchedulePublicGroup(value);
    if (scheduleGroup === undefined) {
        throw new Error(`Invalid ${key}: expected one of ${Object.keys(sonoffTrvzbtScheduleGroupLookup).join(", ")}, got ${value}`);
    }
    return scheduleGroup;
};
const toSonoffTrvzbtSchedulePublicGroup = (scheduleGroup) => {
    return String(scheduleGroup + 1);
};
const toSonoffTrvzbtScheduleInternalGroup = (scheduleGroup) => {
    return sonoffTrvzbtScheduleGroupLookup[scheduleGroup];
};
const getSonoffTrvzbtDeviceCacheKey = (endpoint, device) => {
    if (device?.ieeeAddr)
        return device.ieeeAddr;
    return endpoint?.getDevice?.()?.ieeeAddr;
};
const getSonoffTrvzbtTemperatureControlHistoryCacheKey = (endpoint, device) => {
    return getSonoffTrvzbtDeviceCacheKey(endpoint, device);
};
const getSonoffTrvzbtTemperatureControlHistoryRespCacheKey = (cacheKey, subCmd) => {
    return `${cacheKey}:${subCmd}`;
};
const clearSonoffTrvzbtTemperatureControlHistoryCache = (cacheKey, subCmd) => {
    delete sonoffTrvzbtTemperatureControlHistoryRespCache[getSonoffTrvzbtTemperatureControlHistoryRespCacheKey(cacheKey, subCmd)];
    if (sonoffTrvzbtTemperatureControlHistoryReqCache[cacheKey]) {
        delete sonoffTrvzbtTemperatureControlHistoryReqCache[cacheKey][subCmd];
    }
};
const getSonoffTrvzbtTemperatureControlHistoryDisplayOffsetSeconds = (value) => {
    if (value.endsWith("Z"))
        return 0;
    const matches = value.match(/([+-])(\d{2}):(\d{2})$/);
    if (!matches)
        return;
    const sign = matches[1] === "-" ? -1 : 1;
    return sign * (Number.parseInt(matches[2], 10) * 3600 + Number.parseInt(matches[3], 10) * 60);
};
const getSonoffTrvzbtTemperatureControlHistoryIntervalEnd = (type, startSec, offsetSeconds) => {
    if (type === "day")
        return startSec + 3600;
    if (type === "month")
        return startSec + 86400;
    return (0, sonoff_1.shiftUtcSecondsByOffsetMonths)(startSec, 1, offsetSeconds);
};
const buildSonoffTrvzbtTemperatureControlHistoryData = (type, values, request) => {
    const records = [];
    let intervalStartSec = request.startUTC;
    for (const value of values) {
        const intervalEndSec = getSonoffTrvzbtTemperatureControlHistoryIntervalEnd(type, intervalStartSec, request.displayOffsetSeconds);
        if (!Number.isNaN(value)) {
            records.push({
                value,
                startTime: (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(intervalStartSec, request.displayOffsetSeconds),
                endTime: (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(intervalEndSec, request.displayOffsetSeconds),
            });
        }
        intervalStartSec = intervalEndSec;
    }
    return records;
};
const formatSonoffTrvzbtTemperatureControlHistoryOutputData = (records) => {
    return records.map((record) => ({
        value: record.value,
        start_time: record.startTime,
        end_time: record.endTime,
    }));
};
const buildSonoffTrvzbtTemperatureControlHistoryResult = (request, state) => {
    const packets = Object.values(state.packets).sort((a, b) => a.current - b.current);
    const valuesByDataType = {};
    for (const historyPacket of packets) {
        valuesByDataType[historyPacket.dataType] ??= [];
        valuesByDataType[historyPacket.dataType].push(...historyPacket.values);
    }
    return {
        type: request.type,
        time_range: request.timeRange,
        temperature_data: formatSonoffTrvzbtTemperatureControlHistoryOutputData(buildSonoffTrvzbtTemperatureControlHistoryData(request.type, valuesByDataType[0x00] ?? [], request)),
        heat_percentage_data: formatSonoffTrvzbtTemperatureControlHistoryOutputData(buildSonoffTrvzbtTemperatureControlHistoryData(request.type, valuesByDataType[0x01] ?? [], request)),
        target_temperature_data: formatSonoffTrvzbtTemperatureControlHistoryOutputData(buildSonoffTrvzbtTemperatureControlHistoryData(request.type, valuesByDataType[0x02] ?? [], request)),
    };
};
const isSonoffTrvzbtTemperatureControlHistoryComplete = (state) => {
    return (Object.keys(state.packets).length === state.total &&
        Array.from({ length: state.total }, (_, index) => state.packets[index] !== undefined).every(Boolean));
};
const formatSonoffTrvzbtFaultCode = (value) => {
    logger_1.logger.info(`TRV-ZBT formatSonoffTrvzbtFaultCode input: value=${value} (type=${typeof value})`, NS);
    const faultCode = Number(value);
    if (!Number.isInteger(faultCode) || faultCode < 0 || faultCode > 0xffffffff) {
        logger_1.logger.info(`TRV-ZBT formatSonoffTrvzbtFaultCode result: "unknown" (invalid input)`, NS);
        return "unknown";
    }
    const rawValue = faultCode >>> 0;
    // Strip protocol header: bits 0-15 are the 2-byte fault data (V),
    // bits 16-23 are the length byte (L), bits 24-31 are the marker 0x0A.
    const faultBits = rawValue & 0xffff;
    const descriptions = Object.entries(sonoffTrvzbtFaultCodeLookup)
        .filter(([bit]) => (faultBits & (1 << Number(bit))) !== 0)
        .map(([, description]) => description);
    logger_1.logger.info(`TRV-ZBT formatSonoffTrvzbtFaultCode: rawValue=${rawValue} (0x${rawValue.toString(16).padStart(8, "0")}), faultBits=${faultBits} (0x${faultBits.toString(16).padStart(4, "0")}), matchedBits=${JSON.stringify(descriptions)}`, NS);
    if (descriptions.length === 0) {
        const result = faultBits === 0 ? "none" : "unknown";
        logger_1.logger.info(`TRV-ZBT formatSonoffTrvzbtFaultCode result: "${result}" (no known bits matched)`, NS);
        return result;
    }
    if ((faultBits & ~sonoffTrvzbtKnownFaultCodeMask) !== 0) {
        descriptions.push("unknown");
    }
    const result = descriptions.join(", ");
    logger_1.logger.info(`TRV-ZBT formatSonoffTrvzbtFaultCode result: "${result}"`, NS);
    return result;
};
const formatMotorTravelCalibrationStatus = (value) => {
    return Number(value) === 0x00 ? "success" : "fail";
};
const cacheSonoffTrvzbtScheduleActiveNum = (activeNum, endpoint, device) => {
    const cacheKey = getSonoffTrvzbtDeviceCacheKey(endpoint, device);
    if (cacheKey) {
        sonoffTrvzbtScheduleActiveNumCache.set(cacheKey, activeNum);
    }
};
const cacheSonoffTrvzbtScheduleSelectedNum = (selectedNum, endpoint, device) => {
    const cacheKey = getSonoffTrvzbtDeviceCacheKey(endpoint, device);
    if (cacheKey) {
        sonoffTrvzbtScheduleSelectedNumCache.set(cacheKey, selectedNum);
    }
};
const getCachedSonoffTrvzbtScheduleActiveNum = (endpoint, device) => {
    const cacheKey = getSonoffTrvzbtDeviceCacheKey(endpoint, device);
    return cacheKey ? sonoffTrvzbtScheduleActiveNumCache.get(cacheKey) : undefined;
};
const getCachedSonoffTrvzbtScheduleSelectedNum = (endpoint, device) => {
    const cacheKey = getSonoffTrvzbtDeviceCacheKey(endpoint, device);
    return cacheKey ? sonoffTrvzbtScheduleSelectedNumCache.get(cacheKey) : undefined;
};
const getSonoffTrvzbtScheduleSelectedNum = (endpoint, device) => {
    return getCachedSonoffTrvzbtScheduleSelectedNum(endpoint, device) ?? getCachedSonoffTrvzbtScheduleActiveNum(endpoint, device) ?? 0;
};
const getSonoffTrvzbtEndpoint = (entity) => {
    return "read" in entity && typeof entity.read === "function" ? entity : undefined;
};
const readSonoffTrvzbtScheduleActiveNum = async (entity, device, reason) => {
    const endpoint = getSonoffTrvzbtEndpoint(entity);
    if (endpoint) {
        try {
            const readResult = await endpoint.read("customSonoffTrvzbt", ["weeklyScheduleActiveNum"]);
            const activeNum = getValidSonoffTrvzbtScheduleGroupNum(readResult.weeklyScheduleActiveNum);
            if (activeNum !== undefined) {
                cacheSonoffTrvzbtScheduleActiveNum(activeNum, endpoint, device);
                logger_1.logger.info(`TRV-ZBT ${reason}: active schedule group=${toSonoffTrvzbtSchedulePublicGroup(activeNum)}`, NS);
                return activeNum;
            }
            logger_1.logger.warning(`TRV-ZBT ${reason}: invalid active schedule group=${readResult.weeklyScheduleActiveNum}`, NS);
        }
        catch (error) {
            logger_1.logger.warning(`TRV-ZBT ${reason}: read active schedule group failed, ${error}`, NS);
        }
    }
    return getCachedSonoffTrvzbtScheduleActiveNum(endpoint, device) ?? 0;
};
const getSonoffTrvzbtScheduleNumFromMessage = (entity, device, message) => {
    const endpoint = getSonoffTrvzbtEndpoint(entity);
    const selectedGroup = message?.schedule_group_to_edit;
    if (selectedGroup !== undefined) {
        const publicGroup = assertSonoffTrvzbtSchedulePublicGroup(selectedGroup, "schedule_group_to_edit");
        const selectedNum = toSonoffTrvzbtScheduleInternalGroup(publicGroup);
        cacheSonoffTrvzbtScheduleSelectedNum(selectedNum, endpoint, device);
        return selectedNum;
    }
    return getSonoffTrvzbtScheduleSelectedNum(endpoint, device);
};
const formatSonoffTrvzbtPayload = (payload) => {
    return `[${Array.from(payload)
        .map((byte) => `0x${byte.toString(16).padStart(2, "0")}`)
        .join(", ")}]`;
};
const shouldMirrorSonoffTrvzbtSelectedSchedule = (scheduleNum, meta, endpoint, device) => {
    return scheduleNum === getSonoffTrvzbtScheduleSelectedNum(endpoint, device ?? meta.device);
};
const parseSonoffTrvzbtScheduleString = (scheduleValue, dayName) => {
    const transitionRegex = /^(0[0-9]|1[0-9]|2[0-3]):([0-5][0-9])\/(\d+(?:\.\d{1,2})?)$/;
    const rawTransitions = scheduleValue.trim().split(/\s+/).sort();
    if (rawTransitions.length > 12) {
        throw new Error(`Invalid schedule for ${dayName}: days must have no more than 12 transitions`);
    }
    const transitions = [];
    for (const transition of rawTransitions) {
        const matches = transition.match(transitionRegex);
        if (!matches) {
            throw new Error(`Invalid schedule for ${dayName}: transitions must be in format HH:mm/temperature (e.g. 12:00/15.5), found: ${transition}`);
        }
        const hour = Number.parseInt(matches[1], 10);
        const mins = Number.parseInt(matches[2], 10);
        const temp = Number.parseFloat(matches[3]);
        if (temp < sonoffTrvzbtTargetTemperatureRange.min || temp > sonoffTrvzbtTargetTemperatureRange.max) {
            throw new Error(`Invalid schedule for ${dayName}: temperature value must be between ${sonoffTrvzbtTargetTemperatureRange.min}-${sonoffTrvzbtTargetTemperatureRange.max} (inclusive), found: ${temp}`);
        }
        transitions.push({
            transitionTime: hour * 60 + mins,
            heatSetpoint: Math.round(temp * 100),
        });
    }
    if (transitions[0].transitionTime !== 0) {
        throw new Error(`Invalid schedule for ${dayName}: the first transition of each day should start at 00:00`);
    }
    return { numoftrans: rawTransitions.length, transitions };
};
const isValidSonoffTrvzbtScheduleTransition = ({ transitionTime, heatSetpoint }) => {
    const temperature = heatSetpoint / 100;
    return (Number.isInteger(transitionTime) &&
        transitionTime >= 0 &&
        transitionTime < 24 * 60 &&
        temperature >= sonoffTrvzbtTargetTemperatureRange.min &&
        temperature <= sonoffTrvzbtTargetTemperatureRange.max);
};
const formatSonoffTrvzbtScheduleTransitions = (transitions) => {
    return [...transitions]
        .filter(isValidSonoffTrvzbtScheduleTransition)
        .sort((a, b) => a.transitionTime - b.transitionTime || a.heatSetpoint - b.heatSetpoint)
        .map((transition) => {
        const hours = Math.floor(transition.transitionTime / 60);
        const minutes = transition.transitionTime % 60;
        return `${hours.toString().padStart(2, "0")}:${minutes.toString().padStart(2, "0")}/${transition.heatSetpoint / 100}`;
    })
        .join(" ");
};
const getSonoffTrvzbtDayBit = (dayName) => {
    const dayKey = utils.getKey(constants.thermostatDayOfWeek, dayName, null);
    if (dayKey === null) {
        throw new Error(`Invalid schedule: invalid day name, found: ${dayName}`);
    }
    return Number(dayKey);
};
const getSonoffTrvzbtScheduleDayNames = (dayofweek) => {
    return sonoffTrvzbtScheduleDays.filter((day) => (dayofweek & (1 << getSonoffTrvzbtDayBit(day))) !== 0);
};
const buildSonoffTrvzbtSchedulePayload = (scheduleNum, dayofweek, transitions) => {
    const payload = [0x01, 0x01, scheduleNum, transitions.length, dayofweek, 0x01];
    for (const transition of transitions) {
        payload.push(transition.transitionTime & 0xff, (transition.transitionTime >> 8) & 0xff);
        payload.push(transition.heatSetpoint & 0xff, (transition.heatSetpoint >> 8) & 0xff);
    }
    return payload;
};
const sendSonoffTrvzbtScheduleReadCommand = async (entity, scheduleNum, reason) => {
    const payload = [0x01, 0x00, scheduleNum];
    logger_1.logger.info(`TRV-ZBT ${reason} scheduleGroup group=${toSonoffTrvzbtSchedulePublicGroup(scheduleNum)} payload=${formatSonoffTrvzbtPayload(payload)}`, NS);
    await entity.command("customSonoffTrvzbt", "scheduleGroup", { data: payload }, disableDefaultResponseOptions);
};
const getValidSonoffTpWgzbaScheduleGroupNum = (value) => {
    const scheduleGroup = Number(value);
    if (!Number.isInteger(scheduleGroup) ||
        scheduleGroup < sonoffTpWgzbaScheduleGroupInternalRange.min ||
        scheduleGroup > sonoffTpWgzbaScheduleGroupInternalRange.max) {
        return;
    }
    return scheduleGroup;
};
const getValidSonoffTpWgzbaSchedulePublicGroup = (value) => {
    const scheduleGroup = String(value);
    if (!(scheduleGroup in sonoffTpWgzbaScheduleGroupLookup))
        return;
    return scheduleGroup;
};
const assertSonoffTpWgzbaSchedulePublicGroup = (value, key) => {
    const scheduleGroup = getValidSonoffTpWgzbaSchedulePublicGroup(value);
    if (scheduleGroup === undefined) {
        throw new Error(`Invalid ${key}: expected one of ${Object.keys(sonoffTpWgzbaScheduleGroupLookup).join(", ")}, got ${value}`);
    }
    return scheduleGroup;
};
const toSonoffTpWgzbaSchedulePublicGroup = (scheduleGroup) => `${scheduleGroup + 1}`;
const toSonoffTpWgzbaScheduleInternalGroup = (scheduleGroup) => {
    return sonoffTpWgzbaScheduleGroupLookup[scheduleGroup];
};
const getSonoffTpWgzbaTemperatureControlHistoryCacheKey = (endpoint, device) => {
    return getSonoffTrvzbtDeviceCacheKey(endpoint, device);
};
const getSonoffTpWgzbaTemperatureControlHistoryRespCacheKey = (cacheKey, subCmd) => {
    return `${cacheKey}:${subCmd}`;
};
const clearSonoffTpWgzbaTemperatureControlHistoryCache = (cacheKey, subCmd) => {
    delete sonoffTpWgzbaTemperatureControlHistoryRespCache[getSonoffTpWgzbaTemperatureControlHistoryRespCacheKey(cacheKey, subCmd)];
    if (sonoffTpWgzbaTemperatureControlHistoryReqCache[cacheKey]) {
        delete sonoffTpWgzbaTemperatureControlHistoryReqCache[cacheKey][subCmd];
    }
};
const buildSonoffTpWgzbaTemperatureControlHistoryData = (type, values, request) => {
    const records = [];
    let intervalStartSec = request.startUTC;
    for (const value of values) {
        const intervalEndSec = getSonoffTrvzbtTemperatureControlHistoryIntervalEnd(type, intervalStartSec, request.displayOffsetSeconds);
        if (!Number.isNaN(value)) {
            records.push({
                value,
                startTime: (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(intervalStartSec, request.displayOffsetSeconds),
                endTime: (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(intervalEndSec, request.displayOffsetSeconds),
            });
        }
        intervalStartSec = intervalEndSec;
    }
    return records;
};
const buildSonoffTpWgzbaTemperatureControlHistoryResult = (request, state) => {
    const packets = Object.values(state.packets).sort((a, b) => a.current - b.current);
    const valuesByDataType = {};
    for (const historyPacket of packets) {
        valuesByDataType[historyPacket.dataType] ??= [];
        valuesByDataType[historyPacket.dataType].push(...historyPacket.values);
    }
    return {
        type: request.type,
        time_range: request.timeRange,
        temperature_data: formatSonoffTrvzbtTemperatureControlHistoryOutputData(buildSonoffTpWgzbaTemperatureControlHistoryData(request.type, valuesByDataType[0x00] ?? [], request)),
        heat_percentage_data: formatSonoffTrvzbtTemperatureControlHistoryOutputData(buildSonoffTpWgzbaTemperatureControlHistoryData(request.type, valuesByDataType[0x01] ?? [], request)),
        target_temperature_data: formatSonoffTrvzbtTemperatureControlHistoryOutputData(buildSonoffTpWgzbaTemperatureControlHistoryData(request.type, valuesByDataType[0x02] ?? [], request)),
    };
};
const cacheSonoffTpWgzbaScheduleActiveNum = (activeNum, endpoint, device) => {
    const cacheKey = getSonoffTrvzbtDeviceCacheKey(endpoint, device);
    if (cacheKey) {
        sonoffTpWgzbaScheduleActiveNumCache.set(cacheKey, activeNum);
    }
};
const cacheSonoffTpWgzbaScheduleSelectedNum = (selectedNum, endpoint, device) => {
    const cacheKey = getSonoffTrvzbtDeviceCacheKey(endpoint, device);
    if (cacheKey) {
        sonoffTpWgzbaScheduleSelectedNumCache.set(cacheKey, selectedNum);
    }
};
const getCachedSonoffTpWgzbaScheduleActiveNum = (endpoint, device) => {
    const cacheKey = getSonoffTrvzbtDeviceCacheKey(endpoint, device);
    return cacheKey ? sonoffTpWgzbaScheduleActiveNumCache.get(cacheKey) : undefined;
};
const getCachedSonoffTpWgzbaScheduleSelectedNum = (endpoint, device) => {
    const cacheKey = getSonoffTrvzbtDeviceCacheKey(endpoint, device);
    return cacheKey ? sonoffTpWgzbaScheduleSelectedNumCache.get(cacheKey) : undefined;
};
const getSonoffTpWgzbaScheduleSelectedNum = (endpoint, device) => {
    return getCachedSonoffTpWgzbaScheduleSelectedNum(endpoint, device) ?? getCachedSonoffTpWgzbaScheduleActiveNum(endpoint, device) ?? 0;
};
const readSonoffTpWgzbaScheduleActiveNum = async (entity, device, reason) => {
    const endpoint = "read" in entity && typeof entity.read === "function" ? entity : undefined;
    if (endpoint) {
        try {
            const readResult = await endpoint.read("customSonoffTpWgzba", ["weeklyScheduleActiveNum"]);
            const activeNum = getValidSonoffTpWgzbaScheduleGroupNum(readResult.weeklyScheduleActiveNum);
            if (activeNum !== undefined) {
                cacheSonoffTpWgzbaScheduleActiveNum(activeNum, endpoint, device);
                logger_1.logger.info(`TP-WGZBA ${reason}: active schedule group=${toSonoffTpWgzbaSchedulePublicGroup(activeNum)}`, NS);
                return activeNum;
            }
            logger_1.logger.warning(`TP-WGZBA ${reason}: invalid active schedule group=${readResult.weeklyScheduleActiveNum}`, NS);
        }
        catch (error) {
            logger_1.logger.warning(`TP-WGZBA ${reason}: read active schedule group failed, ${error}`, NS);
        }
    }
    return getCachedSonoffTpWgzbaScheduleActiveNum(endpoint, device) ?? 0;
};
const getSonoffTpWgzbaScheduleNumFromMessage = (entity, device, message) => {
    const endpoint = "read" in entity && typeof entity.read === "function" ? entity : undefined;
    const selectedGroup = message?.schedule_group_to_edit;
    if (selectedGroup !== undefined) {
        const publicGroup = assertSonoffTpWgzbaSchedulePublicGroup(selectedGroup, "schedule_group_to_edit");
        const selectedNum = toSonoffTpWgzbaScheduleInternalGroup(publicGroup);
        cacheSonoffTpWgzbaScheduleSelectedNum(selectedNum, endpoint, device);
        return selectedNum;
    }
    return getSonoffTpWgzbaScheduleSelectedNum(endpoint, device);
};
const shouldMirrorSonoffTpWgzbaSelectedSchedule = (scheduleNum, meta, endpoint, device) => {
    return scheduleNum === getSonoffTpWgzbaScheduleSelectedNum(endpoint, device ?? meta.device);
};
const getSonoffStructNumber = (value, index, elmType) => {
    if (!Array.isArray(value))
        return;
    const element = value[index];
    if (!element || (elmType !== undefined && element.elmType !== elmType))
        return;
    if (typeof element.elmVal !== "number")
        return;
    return element.elmVal;
};
const buildSonoffStruct = (elmType, values) => {
    return values.map((elmVal) => ({ elmType, elmVal }));
};
const parseSonoffTpWgzbaTimeValue = (value, key) => {
    if (!utils.isString(value)) {
        throw new Error(`Invalid ${key}: expected HH:mm`);
    }
    const matches = value.match(/^([01][0-9]|2[0-3]):([0-5][0-9])$/);
    if (!matches) {
        throw new Error(`Invalid ${key}: expected HH:mm between 00:00 and 23:59`);
    }
    return Number.parseInt(matches[1], 10) * 60 + Number.parseInt(matches[2], 10);
};
const formatSonoffTpWgzbaTimeValue = (value) => {
    const minutes = Math.max(0, Math.min(1439, value));
    const hours = Math.floor(minutes / 60);
    const mins = minutes % 60;
    return `${hours.toString().padStart(2, "0")}:${mins.toString().padStart(2, "0")}`;
};
const getSonoffTpWgzbaOutputBit = (value, key) => {
    if (value === undefined)
        return;
    if (typeof value === "string" && value in sonoffTpWgzbaRelayOutputLookup) {
        return sonoffTpWgzbaRelayOutputLookup[value];
    }
    throw new Error(`Invalid ${key}: expected ${Object.keys(sonoffTpWgzbaRelayOutputLookup).join(" or ")}`);
};
const isSonoffTpWgzbaExternalTemperatureInput = (value) => {
    return (utils.isNumber(value) &&
        Number.isFinite(value) &&
        value >= sonoffTpWgzbaExternalTemperatureInputRange.min &&
        value <= sonoffTpWgzbaExternalTemperatureInputRange.max);
};
const assertSonoffTpWgzbaExternalTemperatureInput = (value, key) => {
    if (!isSonoffTpWgzbaExternalTemperatureInput(value)) {
        throw new Error(`Invalid ${key}: expected number between ${sonoffTpWgzbaExternalTemperatureInputRange.min}-${sonoffTpWgzbaExternalTemperatureInputRange.max} °C (inclusive), got ${value}`);
    }
    return value;
};
const assertSonoffTpWgzbaTemperatureSensorSelect = (value, key) => {
    if (!utils.isString(value) || !sonoffTpWgzbaTemperatureSensorSelectValues.includes(value)) {
        throw new Error(`Invalid ${key}: expected ${sonoffTpWgzbaTemperatureSensorSelectValues.join(", ")}, got ${value}`);
    }
    return value;
};
const getSonoffTpWgzbaTemperatureSensorSelect = (status) => {
    for (const sensorSelect of sonoffTpWgzbaTemperatureSensorSelectValues) {
        if (sonoffTpWgzbaTemperatureSensorSelectLookup[sensorSelect] === status)
            return sensorSelect;
    }
};
const sonoffTpWgzbaExternalTemperatureInputToRaw = (value) => {
    return Math.round(value * sonoffTpWgzbaTemperatureScale);
};
const sonoffTpWgzbaRemoteTemperatureRawToExternalInput = (value) => {
    return utils.precisionRound(value / sonoffTpWgzbaTemperatureScale, sonoffTpWgzbaExternalTemperatureInputRange.precision);
};
const parseSonoffTpWgzbaRemoteAttributeLinkage = (value) => {
    const bytes = (0, sonoff_1.zclArrayValueToBytes)(value);
    if (bytes === undefined)
        return;
    const hasNoRemoteConfig = bytes.length >= 3 && bytes[0] === 0 && bytes.slice(3).every((byte) => byte === 0);
    if (bytes.length > 0 && (bytes.every((byte) => byte === 0) || hasNoRemoteConfig))
        return { temperature_sensor_select: "internal" };
    if (bytes.length < 3)
        return;
    const result = {};
    const remoteCfgNum = bytes[0] ?? 0;
    let offset = 3;
    let parsed = 0;
    while (offset + 1 < bytes.length && parsed < remoteCfgNum) {
        const type = bytes[offset];
        const length = bytes[offset + 1] ?? 0;
        offset += 2;
        const data = bytes.slice(offset, offset + length);
        offset += length;
        parsed++;
        if (type !== 0x01 || length !== 0x03 || data.length !== 0x03)
            continue;
        const temperatureSensorSelect = getSonoffTpWgzbaTemperatureSensorSelect(data[0] ?? -1);
        if (temperatureSensorSelect === undefined)
            continue;
        result.temperature_sensor_select = temperatureSensorSelect;
        result.external_temperature_input = sonoffTpWgzbaRemoteTemperatureRawToExternalInput(Buffer.from(data.slice(1, 3)).readInt16LE(0));
    }
    return Object.keys(result).length > 0 ? result : undefined;
};
const buildSonoffTpWgzbaRemoteAttributeLinkage = (temperatureSensorStatus, remoteTemperature) => {
    const payload = new Uint8Array(8);
    payload[0] = 0x01;
    payload[1] = 0x01;
    payload[2] = 0x00;
    payload[3] = 0x01;
    payload[4] = 0x03;
    payload[5] = temperatureSensorStatus;
    const temp = Buffer.alloc(2);
    temp.writeInt16LE(remoteTemperature, 0);
    payload[6] = temp[0];
    payload[7] = temp[1];
    return payload;
};
const sendSonoffTpWgzbaScheduleReadCommand = async (entity, scheduleNum, reason) => {
    const payload = [0x01, 0x00, scheduleNum];
    logger_1.logger.info(`TP-WGZBA ${reason} scheduleGroup group=${toSonoffTpWgzbaSchedulePublicGroup(scheduleNum)} payload=${formatSonoffTrvzbtPayload(payload)}`, NS);
    await entity.command("customSonoffTpWgzba", "scheduleGroup", { data: payload }, disableDefaultResponseOptions);
};
const fzLocal = {
    key_action_event: {
        cluster: "customSonoffSnzb01m",
        type: ["attributeReport", "readResponse"],
        convert: (model, msg, publish, options, meta) => {
            if ("keyActionEvent" in msg.data) {
                const event = utils.getFromLookup(msg.data.keyActionEvent, { 1: "single", 2: "double", 3: "long", 4: "triple" });
                return { action: `${event}_button_${msg.endpoint.ID}` };
            }
        },
    },
    router_config: {
        cluster: "genLevelCtrl",
        type: ["attributeReport", "readResponse"],
        convert: (model, msg, publish, options, meta) => {
            const result = {};
            if (msg.data.currentLevel !== undefined) {
                result.light_indicator_level = msg.data.currentLevel;
            }
        },
    },
    on_off_clear_electricity: {
        cluster: "genOnOff",
        type: ["attributeReport", "readResponse"],
        options: [exposes.options.state_action()],
        convert: (model, msg, publish, options, meta) => {
            // Device keeps reporting a acCurrentPowerValue after turning OFF.
            // Make sure power = 0 when turned OFF
            // https://github.com/Koenkk/zigbee2mqtt/issues/28470
            let result = fz.on_off.convert(model, msg, publish, options, meta);
            if (msg.data.onOff === 0) {
                result = { ...result, power: 0, current: 0 };
            }
            return result;
        },
    },
    snzb_09p_alert: {
        cluster: "customClusterEwelink",
        type: ["commandAlertCommand", "raw"],
        convert: (model, msg, publish, options, meta) => {
            let data;
            if (msg.type === "raw") {
                if (!(msg.data instanceof Buffer) || msg.data.length < 5 || msg.data[2] !== 0x0f) {
                    return;
                }
                data = msg.data.subarray(3);
            }
            else {
                if (!("data" in msg.data)) {
                    return;
                }
                data = Buffer.isBuffer(msg.data.data) ? msg.data.data : Buffer.from(msg.data.data);
            }
            if (!data || data.length < 2 || data[0] !== 4) {
                return;
            }
            const alarmType = { 0: "none", 1: "manual", 2: "scene" }[data[1]];
            if (alarmType == null) {
                return;
            }
            return { alarm_type: alarmType, siren_on: alarmType === "none" ? "OFF" : "ON" };
        },
    },
    // biome-ignore lint/style/useNamingConvention: ignored using `--suppress`
    SNZB02_temperature: {
        cluster: "msTemperatureMeasurement",
        type: ["attributeReport", "readResponse"],
        convert: (model, msg, publish, options, meta) => {
            const temperature = msg.data.measuredValue / 100.0;
            // https://github.com/Koenkk/zigbee2mqtt/issues/13640
            // SNZB-02 reports stranges values sometimes
            if (temperature > -33 && temperature < 100) {
                const property = utils.postfixWithEndpointName("temperature", msg, model, meta);
                return { [property]: temperature };
            }
        },
    },
    // Implement special battery handling for the SNZB-09P.
    snzb_09p_battery: {
        cluster: "genPowerCfg",
        type: ["attributeReport", "readResponse"],
        convert: (model, msg, publish, options, meta) => {
            const rawPercentage = msg.data.batteryPercentageRemaining;
            if (rawPercentage === undefined || rawPercentage >= 255) {
                return;
            }
            const battery = utils.precisionRound(rawPercentage / 2, 2);
            if (meta.state.power_supply_mode === "external" && battery !== 100) {
                // External power mode only accepts a 100% battery report.
                // Returning nothing preserves the existing battery state.
                return;
            }
            return { battery };
        },
    },
};
const tzLocal = {
    on_off_fixed_on_time: {
        ...tz.on_off,
        convertSet: async (entity, key, value, meta) => {
            // https://github.com/Koenkk/zigbee2mqtt/issues/27980
            const localMeta = meta;
            if (localMeta.message.on_time != null) {
                utils.assertNumber(localMeta.message.on_time, "on_time");
                localMeta.message = { ...localMeta.message, on_time: localMeta.message.on_time / 10 };
            }
            return await tz.on_off.convertSet(entity, key, value, localMeta);
        },
    },
    snzb_09p_alert: {
        key: ["siren_on"],
        convertSet: async (entity, key, value, meta) => {
            const device = meta.device;
            const message = meta.message;
            if (!device)
                return;
            const endpoint = device.getEndpoint(1);
            if (!endpoint)
                return;
            let payload;
            if (message.siren_on === "ON") {
                payload = Buffer.from([0]);
            }
            else {
                payload = Buffer.from([1]);
            }
            await endpoint.command("customClusterEwelink", "alertCommand", { data: payload }, { disableDefaultResponse: true });
            if (key === "siren_on") {
                return { state: { siren_on: value === "ON" || value === true ? "ON" : "OFF" } };
            }
            return {};
        },
    },
};
const sonoffExtend = {
    addCustomClusterEwelink: () => {
        return m.deviceAddCustomCluster("customClusterEwelink", {
            name: "customClusterEwelink",
            ID: 0xfc11,
            attributes: {
                networkLed: { name: "networkLed", ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                backLight: { name: "backLight", ID: 0x0002, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                faultCode: { name: "faultCode", ID: 0x0010, type: zigbee_herdsman_1.Zcl.DataType.INT32, write: true, min: -2147483648 },
                radioPower: { name: "radioPower", ID: 0x0012, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                radioPowerWithManuCode: {
                    name: "radioPowerWithManuCode",
                    ID: 0x0012,
                    type: zigbee_herdsman_1.Zcl.DataType.INT16,
                    manufacturerCode: zigbee_herdsman_1.Zcl.ManufacturerCode.SHENZHEN_COOLKIT_TECHNOLOGY_CO_LTD,
                    write: true,
                    min: -32768,
                },
                delayedPowerOnState: { name: "delayedPowerOnState", ID: 0x0014, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                delayedPowerOnTime: { name: "delayedPowerOnTime", ID: 0x0015, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                externalTriggerMode: { name: "externalTriggerMode", ID: 0x0016, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                detachRelayMode: { name: "detachRelayMode", ID: 0x0017, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                deviceWorkMode: { name: "deviceWorkMode", ID: 0x0018, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                detachRelayMode2: { name: "detachRelayMode2", ID: 0x0019, type: zigbee_herdsman_1.Zcl.DataType.BITMAP8, write: true },
                motorTravelCalibrationAction: { name: "motorTravelCalibrationAction", ID: 0x5001, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                lackWaterCloseValveTimeout: { name: "lackWaterCloseValveTimeout", ID: 0x5011, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                motorTravelCalibrationStatus: { name: "motorTravelCalibrationStatus", ID: 0x5012, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                motorRunStatus: { name: "motorRunStatus", ID: 0x5013, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                acCurrentCurrentValue: { name: "acCurrentCurrentValue", ID: 0x7004, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                acCurrentVoltageValue: { name: "acCurrentVoltageValue", ID: 0x7005, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                acCurrentPowerValue: { name: "acCurrentPowerValue", ID: 0x7006, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                outlet_control_protect: { name: "outlet_control_protect", ID: 0x7007, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                energyToday: { name: "energyToday", ID: 0x7009, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                energyMonth: { name: "energyMonth", ID: 0x700a, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                energyYesterday: { name: "energyYesterday", ID: 0x700b, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                setCalibrationAction: { name: "setCalibrationAction", ID: 0x001d, type: zigbee_herdsman_1.Zcl.DataType.CHAR_STR, write: true },
                calibrationStatus: { name: "calibrationStatus", ID: 0x001e, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                calibrationProgress: { name: "calibrationProgress", ID: 0x0020, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                minBrightnessThreshold: { name: "minBrightnessThreshold", ID: 0x4001, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                maxBrightnessThreshold: { name: "maxBrightnessThreshold", ID: 0x4002, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                dimmingLightRate: { name: "dimmingLightRate", ID: 0x4003, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                transitionTime: { name: "transitionTime", ID: 0x001f, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                levelForCalibration: { name: "levelForCalibration", ID: 0x4006, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
                programmableStepperSequence: { name: "programmableStepperSequence", ID: 0x0022, type: zigbee_herdsman_1.Zcl.DataType.ARRAY, write: true },
            },
            commands: {
                protocolData: { name: "protocolData", ID: 0x01, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
            },
            commandsResponse: {},
        });
    },
    occupancyZoneEnable(deviceZoneCount, zoneStep, mergeFirstTwoZone = false) {
        const exposedZoneCount = mergeFirstTwoZone ? deviceZoneCount - 1 : deviceZoneCount;
        // Generate interval distance description
        const getZoneRange = (zoneIndex) => {
            if (mergeFirstTwoZone) {
                if (zoneIndex === 0) {
                    return `0m-${zoneStep * 2}m`;
                }
                const start = zoneStep * 2 + (zoneIndex - 1) * zoneStep;
                const end = start + zoneStep;
                return `${start}m-${end}m`;
            }
            const start = zoneIndex * zoneStep;
            const end = start + zoneStep;
            return `${start}m-${end}m`;
        };
        const exposes = Array.from({ length: exposedZoneCount }, (_, i) => e
            .binary(`enable_occupancy_zone_${i + 1}`, ea.ALL, true, false)
            .withLabel(`Zone ${i + 1} (${getZoneRange(i)})`)
            .withCategory("config"));
        const toZigbee = [
            {
                key: Array.from({ length: exposedZoneCount }, (_, i) => `enable_occupancy_zone_${i + 1}`),
                convertSet: async (entity, key, value, meta) => {
                    const zone = Number.parseInt(key.split("_").at(-1) ?? "0", 10);
                    // Rebuild bitmap from current states
                    let bitmap = 0;
                    for (let z = 1; z <= exposedZoneCount; z++) {
                        if (meta.state[`enable_occupancy_zone_${z}`]) {
                            if (mergeFirstTwoZone && z === 1) {
                                bitmap |= 0b11; // bit0 + bit1
                            }
                            else {
                                const bitIndex = mergeFirstTwoZone ? z : z - 1;
                                bitmap |= 1 << bitIndex;
                            }
                        }
                    }
                    // Apply current change to bitmap
                    if (mergeFirstTwoZone && zone === 1) {
                        if (value) {
                            bitmap |= 0b11;
                        }
                        else {
                            bitmap &= ~0b11;
                        }
                    }
                    else {
                        const bitIndex = mergeFirstTwoZone ? zone : zone - 1;
                        if (value) {
                            bitmap |= 1 << bitIndex;
                        }
                        else {
                            bitmap &= ~(1 << bitIndex);
                        }
                    }
                    await entity.write("customClusterEwelink", {
                        [0x2016]: {
                            value: bitmap,
                            type: zigbee_herdsman_1.Zcl.DataType.BITMAP16,
                        },
                    }, utils.getOptions(meta.mapped, entity));
                    return {
                        state: {
                            [key]: value,
                        },
                    };
                },
            },
        ];
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (!msg.data.occupancyZoneEnable) {
                        return;
                    }
                    const bitmap = msg.data.occupancyZoneEnable;
                    const result = {};
                    if (mergeFirstTwoZone) {
                        // zone 1
                        result["enable_occupancy_zone_1"] = (bitmap & 0b11) !== 0;
                        // zone 2~N
                        for (let i = 2; i <= deviceZoneCount; i++) {
                            result[`enable_occupancy_zone_${i}`] = (bitmap & (1 << i)) !== 0;
                        }
                    }
                    else {
                        for (let i = 0; i < deviceZoneCount; i++) {
                            result[`enable_occupancy_zone_${i + 1}`] = (bitmap & (1 << i)) !== 0;
                        }
                    }
                    return result;
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    spatialLearning() {
        const commandName = "spatialLearning";
        const exposes = [
            e.enum("spatial_learning", ea.SET, ["start_learning"]).withDescription("Start space learning calibration").withCategory("config"),
            e.enum("spatial_learning_state", ea.STATE, ["Clear", "Learning", "Failed"]).withDescription("Current state of space learning"),
        ];
        const toZigbee = [
            {
                key: ["spatial_learning"],
                convertSet: async (entity, key, value, meta) => {
                    if (value === "start_learning") {
                        const payloadValue = [];
                        payloadValue[0] = 0x00; // Sub cmd = 0
                        // sequence (uint64_t) - timestamp
                        const seqBuffer = Buffer.alloc(8);
                        seqBuffer.writeBigUInt64LE(BigInt(Date.now()));
                        for (let i = 0; i < seqBuffer.length; i++) {
                            payloadValue[1 + i] = seqBuffer[i];
                        }
                        const payload = { data: payloadValue };
                        await entity.command("customClusterEwelink", commandName, payload, defaultResponseOptions);
                    }
                    return {
                        state: {
                            spatial_learning_state: "Learning",
                        },
                    };
                },
            },
        ];
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["raw"],
                convert: (model, msg, publish, options, meta) => {
                    const buffer = Buffer.from(msg.data);
                    const cmd = buffer[2];
                    if (![0x04].includes(cmd))
                        return;
                    logger_1.logger.warning(`spatialLearning: received msg=${JSON.stringify(msg)}`, NS);
                    const subCmd = buffer[3];
                    // Respond to start learning
                    if (subCmd === 0x01) {
                        if (buffer.length < 20) {
                            logger_1.logger.warning(`spatialLearning: subCmd=0x01 invalid payload len=${buffer.length}`, NS);
                            return;
                        }
                        const sequence = buffer.readBigUInt64LE(4);
                        const expectEndTime = buffer.readBigUInt64LE(12);
                        logger_1.logger.info(`spatialLearning: start response seq=${sequence.toString()} expect_end_time=${expectEndTime.toString()} === ${expectEndTime.toLocaleString()}`, NS);
                        return {
                            spatial_learning_state: "Learning",
                        };
                    }
                    // Result of learning
                    if (subCmd === 0x02) {
                        if (buffer.length < 14) {
                            logger_1.logger.warning(`spatialLearning: subCmd=0x02 invalid payload len=${buffer.length}`, NS);
                            return;
                        }
                        const sequence = buffer.readBigUInt64LE(4);
                        const state = buffer[12];
                        const reason = buffer[13];
                        logger_1.logger.info(`spatialLearning: result seq=${sequence.toString()} state=${state} reason=${reason}`, NS);
                        if (state === 0x00 && reason === 0x00) {
                            return { spatial_learning_state: "Clear" };
                        }
                        return { spatial_learning_state: "Failed" };
                    }
                    logger_1.logger.warning(`spatialLearning: unknown subCmd=0x${subCmd.toString(16).padStart(2, "0")}`, NS);
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    programmableStepperSequence(sequences) {
        const stepComposite = (n) => {
            return e
                .composite(`step_${n}`, `step_${n}`, ea.ALL)
                .withFeature(e.binary("enable_step", ea.ALL, true, false).withDescription("Enable/disable this step."))
                .withFeature(e.binary("relay_outlet_1", ea.ALL, true, false).withDescription("Outlet 1 relay state."))
                .withFeature(e.binary("relay_outlet_2", ea.ALL, true, false).withDescription("Outlet 2 relay state."));
        };
        const exposes = sequences.map((seq) => {
            return e
                .composite(`programmable_stepper_seq${seq}`, `programmable_stepper_seq${seq}`, ea.ALL)
                .withDescription(`Configure programmable stepper sequence ${seq}.`)
                .withFeature(e.binary("enable_stepper", ea.ALL, true, false).withDescription("Enable/disable the stepper sequence."))
                .withFeature(e
                .numeric("switch_outlet", ea.ALL)
                .withValueMin(1)
                .withValueMax(2)
                .withValueStep(1)
                .withDescription("The outlet channel of the external trigger switch bound to this sequence."))
                .withFeature(e.binary("enable_double_press", ea.ALL, true, false).withDescription("Enable/disable double press to switch steps."))
                .withFeature(e
                .numeric("double_press_interval", ea.ALL)
                .withValueMin(0)
                .withValueMax(32767)
                .withValueStep(1)
                .withUnit("ms")
                .withDescription("Set the double press interval for step switching."))
                .withFeature(stepComposite(1))
                .withFeature(stepComposite(2))
                .withFeature(stepComposite(3))
                .withFeature(stepComposite(4));
        });
        const toZigbee = [
            {
                key: [...sequences.map((seq) => `programmable_stepper_seq${seq}`)],
                convertSet: async (entity, key, value, meta) => {
                    utils.assertObject(value, key);
                    const array = new Uint8Array(11);
                    // ZCL Array
                    array[0] = 0x01;
                    array[1] = 9;
                    array[2] = 1;
                    // Sequence configs
                    const seqStr = key.replace("programmable_stepper_seq", "");
                    const seqIndex = Number.parseInt(seqStr, 10) - 1;
                    array[3] = (value.enable_stepper ? 0x80 : 0x00) | (seqIndex & 0x7f);
                    array[4] = (value.switch_outlet - 1) & 0xff;
                    array[5] = (value.enable_double_press ? 0x80 : 0x00) | ((value.double_press_interval >> 8) & 0x7f);
                    array[6] = value.double_press_interval & 0xff;
                    // Steps
                    for (let i = 0; i < 4; i++) {
                        const step = value[`step_${i + 1}`] ?? {};
                        array[7 + i] = (step.enable_step ? 0x80 : 0x00) | (step.relay_outlet_1 ? 0x01 : 0x00) | (step.relay_outlet_2 ? 0x02 : 0x00);
                    }
                    await entity.write("customClusterEwelink", {
                        [0x0022]: {
                            value: {
                                elementType: 0x20,
                                elements: array,
                            },
                            type: 0x48,
                        },
                    }, utils.getOptions(meta.mapped, entity));
                    return {
                        state: {
                            [key]: value,
                        },
                    };
                },
            },
        ];
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport"],
                convert: (model, msg) => {
                    if (!msg.data?.programmableStepperSequence) {
                        return;
                    }
                    const array = new Uint8Array(msg.data.programmableStepperSequence);
                    if (array[0] !== 0x01) {
                        return;
                    }
                    const seqCount = array[2];
                    const seqDataOffset = 3;
                    const result = {};
                    for (let i = 0; i < seqCount; i++) {
                        const offset = seqDataOffset + i * 8;
                        // Steps
                        const steps = {};
                        for (let j = 0; j < 4; j++) {
                            const currentBuffer = array[offset + 4 + j];
                            steps[`step_${j + 1}`] = {
                                enable_step: !!(currentBuffer & 0x80),
                                relay_outlet_1: !!(currentBuffer & 0x01),
                                relay_outlet_2: !!(currentBuffer & 0x02),
                            };
                        }
                        // Sequence configs
                        const seqNum = (array[offset] & 0x7f) + 1;
                        result[`programmable_stepper_seq${seqNum}`] = {
                            enable_stepper: !!(array[offset] & 0x80),
                            switch_outlet: array[offset + 1] + 1,
                            enable_double_press: !!(array[offset + 2] & 0x80),
                            double_press_interval: ((array[offset + 2] & 0x7f) << 8) | array[offset + 3],
                            ...steps,
                        };
                    }
                    return result;
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    inchingControlSet: (args = {}, maxTime = 3599.5) => {
        const { endpointNames = undefined } = args;
        const clusterName = "customClusterEwelink";
        const commandName = "protocolData";
        const exposes = utils.exposeEndpoints(e
            .composite("inching_control_set", "inching_control_set", ea.SET)
            .withDescription("Device Inching function Settings. The device will automatically turn off (turn on) " +
            "after each turn on (turn off) for a specified period of time.")
            .withFeature(e.binary("inching_control", ea.SET, "ENABLE", "DISABLE").withDescription("Enable/disable inching function."))
            .withFeature(e
            .numeric("inching_time", ea.SET)
            .withDescription("Delay time for executing a inching action.")
            .withUnit("seconds")
            .withValueMin(0.5)
            .withValueMax(maxTime)
            .withValueStep(0.5))
            .withFeature(e.binary("inching_mode", ea.SET, "ON", "OFF").withDescription("Set inching off or inching on mode.").withValueToggle("ON")), endpointNames);
        const toZigbee = [
            {
                key: ["inching_control_set"],
                convertSet: async (entity, key, value, meta) => {
                    let inchingControl = "inching_control";
                    let inchingTime = "inching_time";
                    let inchingMode = "inching_mode";
                    if (meta.endpoint_name) {
                        inchingControl = `inching_control_${meta.endpoint_name}`;
                        inchingTime = `inching_time_${meta.endpoint_name}`;
                        inchingMode = `inching_mode_${meta.endpoint_name}`;
                    }
                    const tmpTime = Number(Math.round(Number((value[inchingTime] * 2).toFixed(1))).toFixed(1));
                    const payloadValue = [];
                    payloadValue[0] = 0x01; // Cmd
                    payloadValue[1] = 0x17; // SubCmd
                    payloadValue[2] = 0x07; // Length
                    payloadValue[3] = 0x80; // SeqNum
                    payloadValue[4] = 0x00; // Mode
                    if (value[inchingControl] !== "DISABLE") {
                        payloadValue[4] |= 0x80;
                    }
                    if (value[inchingMode] !== "OFF") {
                        payloadValue[4] |= 0x01;
                    }
                    if (meta.endpoint_name === "l2") {
                        payloadValue[5] = 0x01; // Channel 2
                    }
                    else {
                        payloadValue[5] = 0x00; // Channel 1
                    }
                    payloadValue[6] = tmpTime & 0xff; // Timeout
                    payloadValue[7] = (tmpTime >> 8) & 0xff;
                    payloadValue[8] = 0x00; // Reserve
                    payloadValue[9] = 0x00;
                    payloadValue[10] = 0x00; // CheckCode
                    for (let i = 0; i < payloadValue[2] + 3; i++) {
                        payloadValue[10] ^= payloadValue[i];
                    }
                    await entity.command(clusterName, commandName, { data: payloadValue }, { manufacturerCode: zigbee_herdsman_1.Zcl.ManufacturerCode.SHENZHEN_COOLKIT_TECHNOLOGY_CO_LTD });
                    return { state: { [key]: value } };
                },
            },
        ];
        return {
            exposes: exposes,
            fromZigbee: [],
            toZigbee,
            isModernExtend: true,
        };
    },
    weeklySchedule: () => {
        const scheduleDescription = 'The preset heating schedule to use when the system mode is set to "auto" (indicated with ⏲ on the TRV). ' +
            "Up to 6 transitions can be defined per day, where a transition is expressed in the format 'HH:mm/temperature', each " +
            "separated by a space. The first transition for each day must start at 00:00 and the valid temperature range is 4-35°C " +
            "(in 0.5°C steps). The temperature will be set at the time of the first transition until the time of the next transition, " +
            "e.g. '04:00/20 10:00/25' will result in the temperature being set to 20°C at 04:00 until 10:00, when it will change to 25°C.";
        const days = ["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"];
        const exposes = days.map((day) => e.text(`weekly_schedule_${day}`, ea.STATE_SET).withCategory("config").withDescription(scheduleDescription));
        const fromZigbee = [
            {
                cluster: "hvacThermostat",
                type: ["commandGetWeeklyScheduleRsp"],
                convert: (model, msg, publish, options, meta) => {
                    const day = Object.entries(constants.thermostatDayOfWeek).find((d) => msg.data.dayofweek & (1 << +d[0]))[1];
                    const transitions = msg.data.transitions
                        // TODO: heatSetpoint is optional, that possibly affects the return
                        .map((t) => {
                        const totalMinutes = t.transitionTime;
                        const hours = totalMinutes / 60;
                        const rHours = Math.floor(hours);
                        const minutes = (hours - rHours) * 60;
                        const rMinutes = Math.round(minutes);
                        const strHours = rHours.toString().padStart(2, "0");
                        const strMinutes = rMinutes.toString().padStart(2, "0");
                        return `${strHours}:${strMinutes}/${t.heatSetpoint / 100}`;
                    })
                        .sort()
                        .join(" ");
                    return {
                        [`weekly_schedule_${day}`]: transitions,
                    };
                },
            },
        ];
        // Helper function to parse and validate a schedule string
        const parseScheduleString = (scheduleValue, dayName) => {
            // Transition format: HH:mm/temperature
            const transitionRegex = /^(0[0-9]|1[0-9]|2[0-3]):([0-5][0-9])\/(\d+(\.5)?)$/;
            const rawTransitions = scheduleValue.split(" ").sort();
            if (rawTransitions.length > 6) {
                throw new Error(`Invalid schedule for ${dayName}: days must have no more than 6 transitions`);
            }
            const transitions = [];
            for (const transition of rawTransitions) {
                const matches = transition.match(transitionRegex);
                if (!matches) {
                    throw new Error(`Invalid schedule for ${dayName}: transitions must be in format HH:mm/temperature (e.g. 12:00/15.5), found: ${transition}`);
                }
                const hour = Number.parseInt(matches[1], 10);
                const mins = Number.parseInt(matches[2], 10);
                const temp = Number.parseFloat(matches[3]);
                if (temp < 4 || temp > 35) {
                    throw new Error(`Invalid schedule for ${dayName}: temperature value must be between 4-35 (inclusive), found: ${temp}`);
                }
                transitions.push({
                    transitionTime: hour * 60 + mins,
                    heatSetpoint: Math.round(temp * 100),
                });
            }
            if (transitions[0].transitionTime !== 0) {
                throw new Error(`Invalid schedule for ${dayName}: the first transition of each day should start at 00:00`);
            }
            return {
                numoftrans: rawTransitions.length,
                transitions,
            };
        };
        // Helper function to get day bit from day name
        const getDayBit = (dayName) => {
            const dayKey = utils.getKey(constants.thermostatDayOfWeek, dayName, null);
            if (dayKey === null) {
                throw new Error(`Invalid schedule: invalid day name, found: ${dayName}`);
            }
            return Number(dayKey);
        };
        // Helper function to send setWeeklySchedule command
        const sendScheduleCommand = async (entity, dayofweek, numoftrans, transitions, meta) => {
            await entity.command("hvacThermostat", "setWeeklySchedule", {
                dayofweek,
                numoftrans,
                mode: 1 << 0, // heat
                transitions,
            }, utils.getOptions(meta.mapped, entity));
        };
        const toZigbee = [
            // Single/multi day converter with batching support
            {
                key: days.map((day) => `weekly_schedule_${day}`),
                convertSet: async (entity, key, value, meta) => {
                    utils.assertString(value, key);
                    // Extract all weekly_schedule keys from the message (if message exists)
                    const message = meta.message;
                    const scheduleKeys = message
                        ? Object.keys(message).filter((k) => k.startsWith("weekly_schedule_") && days.includes(k.replace("weekly_schedule_", "")))
                        : [];
                    // For single-key messages or when message is not available, process normally (original behavior)
                    if (scheduleKeys.length <= 1) {
                        const dayName = key.replace("weekly_schedule_", "");
                        const dayBit = getDayBit(dayName);
                        const parsed = parseScheduleString(value, dayName);
                        await sendScheduleCommand(entity, 1 << dayBit, parsed.numoftrans, parsed.transitions, meta);
                        return { state: { [key]: value } };
                    }
                    // Process all schedule keys from the message with batching
                    // Group days by their schedule string to optimize Zigbee commands
                    const scheduleGroups = new Map();
                    for (const scheduleKey of scheduleKeys) {
                        const dayName = scheduleKey.replace("weekly_schedule_", "");
                        const schedule = message[scheduleKey];
                        utils.assertString(schedule, scheduleKey);
                        const existing = scheduleGroups.get(schedule);
                        if (existing) {
                            existing.push(dayName);
                        }
                        else {
                            scheduleGroups.set(schedule, [dayName]);
                        }
                    }
                    const stateUpdates = {};
                    // Send one command per unique schedule, combining days with identical schedules
                    for (const [schedule, daysWithSchedule] of scheduleGroups) {
                        // Parse and validate the schedule (only need to do once per unique schedule)
                        const parsed = parseScheduleString(schedule, daysWithSchedule.join(", "));
                        // Build dayofweek bitmask for all days with this schedule
                        let dayofweek = 0;
                        for (const dayName of daysWithSchedule) {
                            dayofweek |= 1 << getDayBit(dayName);
                            stateUpdates[`weekly_schedule_${dayName}`] = schedule;
                        }
                        await sendScheduleCommand(entity, dayofweek, parsed.numoftrans, parsed.transitions, meta);
                    }
                    return { state: stateUpdates };
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    trvzbtWeeklySchedule: () => {
        const clusterName = "customSonoffTrvzbt";
        const scheduleGroupCommandName = "scheduleGroup";
        const activeGroupKey = "schedule_active_group";
        const selectedGroupKey = "schedule_group_to_edit";
        const scheduleDescription = 'The preset heating schedule to use when the system mode is set to "auto" (indicated with ⏲ on the TRV). ' +
            "Up to 12 transitions can be defined per day, where a transition is expressed in the format 'HH:mm/temperature', each " +
            "separated by a space. The first transition for each day must start at 00:00 and the valid temperature range is 5-30°C " +
            "(in 0.5°C steps). The temperature will be set at the time of the first transition until the time of the next transition, " +
            "e.g. '04:00/20 10:00/25' will result in the temperature being set to 20°C at 04:00 until 10:00, when it will change to 25°C.";
        const scheduleKeysFromMessage = (message) => {
            return message
                ? Object.keys(message).filter((key) => key.startsWith("weekly_schedule_") &&
                    sonoffTrvzbtScheduleDays.includes(key.replace("weekly_schedule_", "")))
                : [];
        };
        const exposes = [
            e
                .enum(activeGroupKey, ea.ALL, Object.keys(sonoffTrvzbtScheduleGroupLookup))
                .withCategory("config")
                .withDescription("The schedule group currently used in Auto mode."),
            e
                .enum(selectedGroupKey, ea.ALL, Object.keys(sonoffTrvzbtScheduleGroupLookup))
                .withCategory("config")
                .withDescription("Select the schedule group to view or edit its weekly schedule settings."),
            ...sonoffTrvzbtScheduleDays.map((day) => e.text(`weekly_schedule_${day}`, ea.ALL).withCategory("config").withDescription(scheduleDescription)),
        ];
        const sendScheduleCommand = async (entity, scheduleNum, dayofweek, transitions) => {
            const payload = buildSonoffTrvzbtSchedulePayload(scheduleNum, dayofweek, transitions);
            logger_1.logger.info(`TRV-ZBT send scheduleGroup group=${toSonoffTrvzbtSchedulePublicGroup(scheduleNum)} ` +
                `dayofweek=0x${dayofweek.toString(16).padStart(2, "0")} transitions=${JSON.stringify(transitions)} ` +
                `payload=${formatSonoffTrvzbtPayload(payload)}`, NS);
            await entity.command(clusterName, scheduleGroupCommandName, { data: payload }, disableDefaultResponseOptions);
        };
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (msg.data.weeklyScheduleActiveNum === undefined)
                        return;
                    const activeNum = getValidSonoffTrvzbtScheduleGroupNum(msg.data.weeklyScheduleActiveNum);
                    if (activeNum === undefined) {
                        logger_1.logger.warning(`TRV-ZBT received invalid weeklyScheduleActiveNum=${msg.data.weeklyScheduleActiveNum}`, NS);
                        return;
                    }
                    cacheSonoffTrvzbtScheduleActiveNum(activeNum, msg.endpoint, msg.device);
                    const publicGroup = toSonoffTrvzbtSchedulePublicGroup(activeNum);
                    logger_1.logger.info(`TRV-ZBT received weeklyScheduleActiveNum=${publicGroup}`, NS);
                    const result = { [activeGroupKey]: publicGroup };
                    if (getCachedSonoffTrvzbtScheduleSelectedNum(msg.endpoint, msg.device) === undefined) {
                        cacheSonoffTrvzbtScheduleSelectedNum(activeNum, msg.endpoint, msg.device);
                        result[selectedGroupKey] = publicGroup;
                    }
                    return result;
                },
            },
            {
                cluster: clusterName,
                type: ["raw"],
                convert: (model, msg, publish, options, meta) => {
                    if (!(msg.data instanceof Buffer))
                        return;
                    const parsedRawCommand = (0, sonoff_1.parseSWVZFRawZclCommand)(msg.data);
                    if (parsedRawCommand?.commandId !== 0x13)
                        return;
                    const payload = parsedRawCommand.payload;
                    logger_1.logger.info(`TRV-ZBT received scheduleGroup payload=${formatSonoffTrvzbtPayload(payload)}`, NS);
                    if (payload.length < 4 || payload[0] !== 0x01)
                        return;
                    const readOrWrite = payload[1];
                    const scheduleNum = payload[2];
                    if (getValidSonoffTrvzbtScheduleGroupNum(scheduleNum) === undefined)
                        return;
                    if (readOrWrite === 0x01) {
                        const status = payload[3];
                        const statusText = status === 0x00 ? "success" : "fail";
                        logger_1.logger.info(`TRV-ZBT parsed scheduleGroup write response group=${toSonoffTrvzbtSchedulePublicGroup(scheduleNum)} ` +
                            `status=${statusText} rawStatus=0x${status.toString(16).padStart(2, "0")}`, NS);
                        if (shouldMirrorSonoffTrvzbtSelectedSchedule(scheduleNum, meta, msg.endpoint, msg.device)) {
                            return { weekly_schedule_status: statusText };
                        }
                        return;
                    }
                    if (readOrWrite !== 0x00 || payload.length < 6)
                        return;
                    const numoftrans = payload[3];
                    const dayofweek = payload[4];
                    const mode = payload[5];
                    const hasHeatSetpoint = (mode & 0x01) !== 0;
                    const hasCoolSetpoint = (mode & 0x02) !== 0;
                    let offset = 6;
                    const transitions = [];
                    for (let i = 0; i < numoftrans; i++) {
                        if (offset + 2 > payload.length)
                            return;
                        const transitionTime = payload.readUInt16LE(offset);
                        offset += 2;
                        let heatSetpoint = 0;
                        if (hasHeatSetpoint) {
                            if (offset + 2 > payload.length)
                                return;
                            heatSetpoint = payload.readInt16LE(offset);
                            offset += 2;
                        }
                        if (hasCoolSetpoint) {
                            if (offset + 2 > payload.length)
                                return;
                            offset += 2;
                        }
                        transitions.push({ transitionTime, heatSetpoint });
                    }
                    const schedule = formatSonoffTrvzbtScheduleTransitions(transitions);
                    logger_1.logger.info(`TRV-ZBT parsed scheduleGroup read response group=${toSonoffTrvzbtSchedulePublicGroup(scheduleNum)} ` +
                        `dayofweek=0x${dayofweek.toString(16).padStart(2, "0")} mode=0x${mode.toString(16).padStart(2, "0")} ` +
                        `transitions=${JSON.stringify(transitions)} schedule=${schedule}`, NS);
                    if (!shouldMirrorSonoffTrvzbtSelectedSchedule(scheduleNum, meta, msg.endpoint, msg.device))
                        return;
                    cacheSonoffTrvzbtScheduleSelectedNum(scheduleNum, msg.endpoint, msg.device);
                    const result = { [selectedGroupKey]: toSonoffTrvzbtSchedulePublicGroup(scheduleNum) };
                    for (const day of getSonoffTrvzbtScheduleDayNames(dayofweek)) {
                        result[`weekly_schedule_${day}`] = schedule;
                    }
                    return result;
                },
            },
        ];
        const toZigbee = [
            {
                key: [activeGroupKey],
                convertSet: async (entity, key, value, meta) => {
                    const publicGroup = assertSonoffTrvzbtSchedulePublicGroup(value, key);
                    const activeNum = toSonoffTrvzbtScheduleInternalGroup(publicGroup);
                    await entity.write(clusterName, { weeklyScheduleActiveNum: activeNum }, undefined);
                    cacheSonoffTrvzbtScheduleActiveNum(activeNum, getSonoffTrvzbtEndpoint(entity), meta.device);
                    return { state: { [key]: publicGroup } };
                },
                convertGet: async (entity) => {
                    await entity.read(clusterName, ["weeklyScheduleActiveNum"]);
                },
            },
            {
                key: [selectedGroupKey],
                convertSet: async (entity, key, value, meta) => {
                    const publicGroup = assertSonoffTrvzbtSchedulePublicGroup(value, key);
                    const selectedNum = toSonoffTrvzbtScheduleInternalGroup(publicGroup);
                    cacheSonoffTrvzbtScheduleSelectedNum(selectedNum, getSonoffTrvzbtEndpoint(entity), meta.device);
                    const message = meta.message;
                    if (scheduleKeysFromMessage(message).length === 0) {
                        await sendSonoffTrvzbtScheduleReadCommand(entity, selectedNum, "selected group read");
                    }
                    return { state: { [key]: publicGroup } };
                },
                convertGet: async (entity, key, meta) => {
                    const selectedNum = getSonoffTrvzbtScheduleSelectedNum(getSonoffTrvzbtEndpoint(entity), meta.device);
                    await sendSonoffTrvzbtScheduleReadCommand(entity, selectedNum, "selected group get");
                },
            },
            {
                key: sonoffTrvzbtScheduleDays.map((day) => `weekly_schedule_${day}`),
                convertSet: async (entity, key, value, meta) => {
                    utils.assertString(value, key);
                    const message = meta.message;
                    const selectedNum = getSonoffTrvzbtScheduleNumFromMessage(entity, meta.device, message);
                    const scheduleKeys = scheduleKeysFromMessage(message);
                    if (scheduleKeys.length <= 1) {
                        const dayName = key.replace("weekly_schedule_", "");
                        const parsed = parseSonoffTrvzbtScheduleString(value, dayName);
                        await sendScheduleCommand(entity, selectedNum, 1 << getSonoffTrvzbtDayBit(dayName), parsed.transitions);
                        return { state: { [selectedGroupKey]: toSonoffTrvzbtSchedulePublicGroup(selectedNum), [key]: value } };
                    }
                    const scheduleGroups = new Map();
                    for (const scheduleKey of scheduleKeys) {
                        const dayName = scheduleKey.replace("weekly_schedule_", "");
                        const schedule = message[scheduleKey];
                        utils.assertString(schedule, scheduleKey);
                        scheduleGroups.set(schedule, [...(scheduleGroups.get(schedule) ?? []), dayName]);
                    }
                    const stateUpdates = { [selectedGroupKey]: toSonoffTrvzbtSchedulePublicGroup(selectedNum) };
                    for (const [schedule, daysWithSchedule] of scheduleGroups) {
                        const parsed = parseSonoffTrvzbtScheduleString(schedule, daysWithSchedule.join(", "));
                        let dayofweek = 0;
                        for (const dayName of daysWithSchedule) {
                            dayofweek |= 1 << getSonoffTrvzbtDayBit(dayName);
                            stateUpdates[`weekly_schedule_${dayName}`] = schedule;
                        }
                        await sendScheduleCommand(entity, selectedNum, dayofweek, parsed.transitions);
                    }
                    return { state: stateUpdates };
                },
                convertGet: async (entity, key, meta) => {
                    const selectedNum = getSonoffTrvzbtScheduleSelectedNum(getSonoffTrvzbtEndpoint(entity), meta.device);
                    await sendSonoffTrvzbtScheduleReadCommand(entity, selectedNum, "send read");
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    trvzbtReadScheduleOnConfigure: () => {
        const configure = [
            async (device) => {
                const endpoint = device.getEndpoint(1);
                if (!endpoint)
                    return;
                const activeScheduleGroupId = await readSonoffTrvzbtScheduleActiveNum(endpoint, device, "configure");
                await sendSonoffTrvzbtScheduleReadCommand(endpoint, activeScheduleGroupId, "configure read");
            },
        ];
        return { configure, isModernExtend: true };
    },
    trvzbtFaultCode: () => {
        const clusterName = "customSonoffTrvzbt";
        const key = "fault_code";
        const exposes = [
            e.text(key, ea.STATE_GET).withCategory("diagnostic").withDescription("Device fault code decoded from the TRV-ZBT fault bitmask."),
        ];
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (msg.data.faultCode === undefined)
                        return;
                    return { [key]: formatSonoffTrvzbtFaultCode(msg.data.faultCode) };
                },
            },
        ];
        const toZigbee = [
            {
                key: [key],
                convertGet: async (entity) => {
                    await entity.read(clusterName, ["faultCode"]);
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    motorTravelCalibrationStatus: () => {
        const clusterName = "customSonoffTrvzbt";
        const key = "motor_travel_calibration_status";
        const exposes = [e.text(key, ea.STATE_GET).withCategory("diagnostic").withDescription("Motor travel calibration status")];
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (msg.data.motorTravelCalibrationStatus === undefined)
                        return;
                    return { [key]: formatMotorTravelCalibrationStatus(msg.data.motorTravelCalibrationStatus) };
                },
            },
        ];
        const toZigbee = [
            {
                key: [key],
                convertGet: async (entity) => {
                    await entity.read(clusterName, ["motorTravelCalibrationStatus"]);
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    trvzbtHvacNotification: () => {
        const clusterName = "customSonoffTrvzbt";
        const exposes = [
            e.binary("open_window_detected", ea.STATE, true, false).withDescription("Indicates whether open window detection was triggered."),
        ];
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (msg.data.hvacMessageNotification === undefined)
                        return;
                    const data = Buffer.from(Array.from(msg.data.hvacMessageNotification));
                    if (data.length < 3 || data[0] !== 0x00 || data[1] < 1)
                        return;
                    return { open_window_detected: data[2] === 0x01 };
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee: [], isModernExtend: true };
    },
    trvzbtBluetoothPairing: () => {
        const clusterName = "customSonoffTrvzbt";
        const commandName = "bluetoothPairing";
        const exposes = [
            e.enum("bluetooth_pairing", ea.SET, ["start", "stop"]).withDescription("Start or stop TRV-ZBT Bluetooth pairing mode."),
            e.enum("bluetooth_pairing_status", ea.STATE, ["success", "fail"]).withDescription("Result of the Bluetooth pairing command."),
        ];
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["raw"],
                convert: (model, msg) => {
                    if (!(msg.data instanceof Buffer))
                        return;
                    const parsedRawCommand = (0, sonoff_1.parseSWVZFRawZclCommand)(msg.data);
                    if (parsedRawCommand?.commandId !== 0x10)
                        return;
                    const payload = parsedRawCommand.payload;
                    if (payload.length < 2 || payload[0] !== 0x03)
                        return;
                    return { bluetooth_pairing_status: payload[1] === 0x00 ? "success" : "fail" };
                },
            },
        ];
        const toZigbee = [
            {
                key: ["bluetooth_pairing"],
                convertSet: async (entity, key, value) => {
                    utils.assertString(value, key);
                    const eventType = value === "start" ? 0x01 : value === "stop" ? 0x02 : undefined;
                    if (eventType === undefined) {
                        throw new Error(`Invalid ${key}: expected start or stop`);
                    }
                    await entity.command(clusterName, commandName, { data: [0x03, 0x01, eventType] }, disableDefaultResponseOptions);
                    return { state: { [key]: value } };
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    trvzbtTemporaryMode: () => {
        const clusterName = "customSonoffTrvzbt";
        const key = "temporary_mode";
        const exposes = [
            e
                .composite(key, key, ea.ALL)
                .withCategory("config")
                .withDescription("Temporary temperature mode settings.")
                .withFeature(e.enum("mode", ea.ALL, Object.keys(sonoffTrvzbtTemporaryModeLookup)).withDescription("Temporary mode."))
                .withFeature(e
                .numeric("duration", ea.ALL)
                .withValueMin(0)
                .withValueMax(1440)
                .withValueStep(1)
                .withUnit("minutes")
                .withDescription("Boost Mode: Sets maximum TRV temperature for up to 180 minutes.Timer Mode: Customizes temperature and duration, up to 24 hours."))
                .withFeature(e
                .numeric("target_temperature", ea.ALL)
                .withValueMin(sonoffTrvzbtTargetTemperatureRange.min)
                .withValueMax(sonoffTrvzbtTargetTemperatureRange.max)
                .withValueStep(sonoffTrvzbtTargetTemperatureRange.step)
                .withUnit("°C")
                .withDescription("Target temperature used in timer mode.")),
        ];
        const validateRange = (value, name, min, max) => {
            if (value < min || value > max) {
                throw new Error(`Invalid ${name}: expected value between ${min}-${max} (inclusive), got ${value}`);
            }
        };
        const isValidTargetTemperature = (value) => {
            return typeof value === "number" && value >= sonoffTrvzbtTargetTemperatureRange.min && value <= sonoffTrvzbtTargetTemperatureRange.max;
        };
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (msg.data.temporaryMode === undefined &&
                        msg.data.temporaryModeTime === undefined &&
                        msg.data.temporaryModeTemp === undefined) {
                        return;
                    }
                    const temporaryMode = utils.isObject(meta.state.temporary_mode) ? { ...meta.state.temporary_mode } : {};
                    if (!isValidTargetTemperature(temporaryMode.target_temperature)) {
                        delete temporaryMode.target_temperature;
                    }
                    if (msg.data.temporaryMode !== undefined) {
                        temporaryMode.mode = utils.getFromLookupByValue(msg.data.temporaryMode, sonoffTrvzbtTemporaryModeLookup, null);
                    }
                    if (msg.data.temporaryModeTime !== undefined) {
                        utils.assertNumber(msg.data.temporaryModeTime);
                        temporaryMode.duration = msg.data.temporaryModeTime / 60;
                    }
                    if (msg.data.temporaryModeTemp !== undefined) {
                        utils.assertNumber(msg.data.temporaryModeTemp);
                        const targetTemperature = msg.data.temporaryModeTemp / sonoffTrvzbtTemporaryModeTemperatureScale;
                        if (isValidTargetTemperature(targetTemperature)) {
                            temporaryMode.target_temperature = targetTemperature;
                        }
                        else {
                            delete temporaryMode.target_temperature;
                        }
                    }
                    return { [key]: temporaryMode };
                },
            },
        ];
        const toZigbee = [
            {
                key: [key],
                convertSet: async (entity, key, value) => {
                    utils.assertObject(value, key);
                    utils.assertString(value.mode, `${key}.mode`);
                    const mode = value.mode;
                    const temporaryMode = sonoffTrvzbtTemporaryModeLookup[mode];
                    if (temporaryMode === undefined) {
                        throw new Error(`Invalid ${key}.mode: expected boost or timer`);
                    }
                    utils.assertNumber(value.duration, `${key}.duration`);
                    validateRange(value.duration, `${key}.duration`, 1, 1440);
                    const temporaryModeTime = Math.round(value.duration * 60);
                    await entity.write(clusterName, { temporaryModeTime }, undefined);
                    if (mode === "timer") {
                        utils.assertNumber(value.target_temperature, `${key}.target_temperature`);
                        validateRange(value.target_temperature, `${key}.target_temperature`, sonoffTrvzbtTargetTemperatureRange.min, sonoffTrvzbtTargetTemperatureRange.max);
                        const temporaryModeTemp = Math.round(value.target_temperature * sonoffTrvzbtTemporaryModeTemperatureScale);
                        await entity.write(clusterName, { temporaryModeTemp }, undefined);
                    }
                    await entity.write(clusterName, { temporaryMode }, undefined);
                    const state = { mode, duration: value.duration };
                    if (mode === "timer") {
                        state.target_temperature = value.target_temperature;
                    }
                    return { state: { [key]: state } };
                },
                convertGet: async (entity) => {
                    await entity.read(clusterName, ["temporaryMode", "temporaryModeTime", "temporaryModeTemp"]);
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    trvzbtTemperatureControlHistory: () => {
        const clusterName = "customSonoffTrvzbt";
        const commandName = "readTemperatureControlHistory";
        const typeLookup = { day: 0x00, month: 0x01, half_year: 0x02 };
        const typeBySubCommand = { 0: "day", 1: "month", 2: "half_year" };
        const exposes = [
            e
                .composite("read_temperature_control_history", "read_temperature_control_history", ea.STATE_SET)
                .withDescription("Read TRV-ZBT temperature control history.")
                .withFeature(e.enum("type", ea.SET, Object.keys(typeLookup)))
                .withFeature(e
                .composite("time_range", "time_range", ea.SET)
                .withFeature(e.text("start", ea.SET).withDescription("Start time in ISO format with timezone."))
                .withFeature(e.text("end", ea.SET).withDescription("End time in ISO format with timezone."))),
            e.text("temperature_control_history", ea.STATE).withDescription("Last decoded TRV-ZBT temperature control history response."),
        ];
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["raw"],
                convert: (model, msg, publish, options, meta) => {
                    if (!(msg.data instanceof Buffer))
                        return;
                    const parsedRawCommand = (0, sonoff_1.parseSWVZFRawZclCommand)(msg.data);
                    if (parsedRawCommand?.commandId !== 0x0e)
                        return;
                    const payload = parsedRawCommand.payload;
                    logger_1.logger.info(`TRV-ZBT received temperature control history payload=${formatSonoffTrvzbtPayload(payload)}`, NS);
                    if (payload.length < 2)
                        return;
                    const subCmd = payload[0];
                    const type = typeBySubCommand[subCmd];
                    if (!type)
                        return;
                    const status = payload[1];
                    const cacheKey = getSonoffTrvzbtTemperatureControlHistoryCacheKey(msg.endpoint, msg.device ?? meta?.device);
                    const respCacheKey = cacheKey ? getSonoffTrvzbtTemperatureControlHistoryRespCacheKey(cacheKey, subCmd) : undefined;
                    if (status !== 0x00) {
                        if (cacheKey) {
                            clearSonoffTrvzbtTemperatureControlHistoryCache(cacheKey, subCmd);
                        }
                        logger_1.logger.error(`TRV-ZBT read temperature control history failed status=${status} subCmd=${subCmd}`, NS);
                        return;
                    }
                    if (payload.length < sonoffTrvzbtTemperatureControlHistoryValueOffset)
                        return;
                    if (!cacheKey || !respCacheKey) {
                        logger_1.logger.error(`TRV-ZBT missing temperature control history request context for subCmd=${subCmd}; it may have timed out, please try again`, NS);
                        return;
                    }
                    const now = Date.now();
                    const request = sonoffTrvzbtTemperatureControlHistoryReqCache[cacheKey]?.[subCmd];
                    if (request && now - request.updatedAt > sonoffTrvzbtTemperatureControlHistoryCacheTimeoutMs) {
                        clearSonoffTrvzbtTemperatureControlHistoryCache(cacheKey, subCmd);
                    }
                    const currentRequest = sonoffTrvzbtTemperatureControlHistoryReqCache[cacheKey]?.[subCmd];
                    if (!currentRequest) {
                        logger_1.logger.error(`TRV-ZBT missing temperature control history request context for subCmd=${subCmd}; it may have timed out, please try again`, NS);
                        return;
                    }
                    const total = payload.readUInt16LE(2);
                    const current = payload.readUInt16LE(4);
                    const dataType = payload[6];
                    if (total === 0 || current >= total) {
                        logger_1.logger.error(`TRV-ZBT invalid temperature control history total=${total} current=${current} subCmd=${subCmd}`, NS);
                        return;
                    }
                    currentRequest.updatedAt = now;
                    const values = [];
                    for (let offset = sonoffTrvzbtTemperatureControlHistoryValueOffset; offset + 1 < payload.length; offset += 2) {
                        const raw = payload.readInt16LE(offset);
                        values.push(raw === -1 ? Number.NaN : raw / 10);
                    }
                    let state = sonoffTrvzbtTemperatureControlHistoryRespCache[respCacheKey];
                    if (!state || state.total !== total || now - state.updatedAt > sonoffTrvzbtTemperatureControlHistoryCacheTimeoutMs) {
                        state = { total, packets: {}, updatedAt: now };
                        sonoffTrvzbtTemperatureControlHistoryRespCache[respCacheKey] = state;
                    }
                    state.packets[current] = { current, dataType, values };
                    state.updatedAt = now;
                    if (!isSonoffTrvzbtTemperatureControlHistoryComplete(state)) {
                        return;
                    }
                    const result = buildSonoffTrvzbtTemperatureControlHistoryResult(currentRequest, state);
                    clearSonoffTrvzbtTemperatureControlHistoryCache(cacheKey, subCmd);
                    logger_1.logger.info(`TRV-ZBT parsed temperature control history ${JSON.stringify(result)}`, NS);
                    return { temperature_control_history: result };
                },
            },
        ];
        const toZigbee = [
            {
                key: ["read_temperature_control_history"],
                convertSet: async (entity, key, value, meta) => {
                    utils.assertObject(value, key);
                    const type = String(value.type);
                    const subCmd = typeLookup[type];
                    if (subCmd === undefined) {
                        throw new Error(`Invalid ${key}.type: expected day, month or half_year`);
                    }
                    const timeRange = utils.isObject(value.time_range) ? value.time_range : undefined;
                    const timeStart = utils.isString(timeRange?.start) ? timeRange.start : undefined;
                    const timeEnd = utils.isString(timeRange?.end) ? timeRange.end : undefined;
                    if (!timeStart || !timeEnd) {
                        throw new Error(`Invalid ${key}: time_range.start and time_range.end are required ISO datetimes with timezone`);
                    }
                    const startUtcSec = (0, sonoff_1.parseIsoWithOffsetToUtcSeconds)(timeStart);
                    const endUtcSec = (0, sonoff_1.parseIsoWithOffsetToUtcSeconds)(timeEnd);
                    if (startUtcSec === undefined || endUtcSec === undefined) {
                        throw new Error(`Invalid ${key}: expected ISO 8601 datetimes with timezone offset`);
                    }
                    const offsetSeconds = (0, sonoff_1.getRuntimeLocalOffsetSeconds)(Math.floor(Date.now() / 1000));
                    const startDeviceSec = (0, sonoff_1.utcToDeviceLocal2000Seconds)(startUtcSec, offsetSeconds);
                    const endDeviceSec = (0, sonoff_1.utcToDeviceLocal2000Seconds)(endUtcSec, offsetSeconds);
                    if (startDeviceSec < 0 || startDeviceSec > 0xffffffff || endDeviceSec < 0 || endDeviceSec > 0xffffffff) {
                        throw new Error(`Invalid ${key}: converted device time is out of range`);
                    }
                    if (endDeviceSec < startDeviceSec) {
                        throw new Error(`Invalid ${key}: time_range.end earlier than time_range.start`);
                    }
                    const displayOffsetSeconds = getSonoffTrvzbtTemperatureControlHistoryDisplayOffsetSeconds(timeStart) ?? offsetSeconds;
                    const payload = Buffer.alloc(11);
                    payload[0] = subCmd;
                    payload.writeUInt32LE(startDeviceSec, 1);
                    payload.writeUInt32LE(endDeviceSec, 5);
                    payload.writeUInt16LE(0xffff, 9);
                    const cacheKey = getSonoffTrvzbtTemperatureControlHistoryCacheKey(entity, meta?.device);
                    if (cacheKey) {
                        sonoffTrvzbtTemperatureControlHistoryReqCache[cacheKey] ??= {};
                        sonoffTrvzbtTemperatureControlHistoryReqCache[cacheKey][subCmd] = {
                            type,
                            startDevice: startDeviceSec,
                            endDevice: endDeviceSec,
                            startUTC: startUtcSec,
                            endUTC: endUtcSec,
                            displayOffsetSeconds,
                            offsetSeconds,
                            timeRange: { start: timeStart, end: timeEnd },
                            updatedAt: Date.now(),
                        };
                        delete sonoffTrvzbtTemperatureControlHistoryRespCache[getSonoffTrvzbtTemperatureControlHistoryRespCacheKey(cacheKey, subCmd)];
                    }
                    logger_1.logger.info(`TRV-ZBT send temperature control history read type=${type} timeStart=${timeStart} timeEnd=${timeEnd} deviceStart=${startDeviceSec} deviceEnd=${endDeviceSec} payload=${formatSonoffTrvzbtPayload(payload)}`, NS);
                    await entity.command(clusterName, commandName, { data: Array.from(payload) }, disableDefaultResponseOptions);
                    return { state: { [key]: { type, time_range: { start: timeStart, end: timeEnd } } } };
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    tpWgzbaTemperatureControlHistory: () => {
        const clusterName = "customSonoffTpWgzba";
        const commandName = "readTemperatureControlHistory";
        const typeLookup = { day: 0x00, month: 0x01, half_year: 0x02 };
        const typeBySubCommand = { 0: "day", 1: "month", 2: "half_year" };
        const exposes = [
            e
                .composite("read_temperature_control_history", "read_temperature_control_history", ea.STATE_SET)
                .withDescription("Read TP-WGZBA temperature control history.")
                .withFeature(e.enum("type", ea.SET, Object.keys(typeLookup)))
                .withFeature(e
                .composite("time_range", "time_range", ea.SET)
                .withFeature(e.text("start", ea.SET).withDescription("Start time in ISO format with timezone."))
                .withFeature(e.text("end", ea.SET).withDescription("End time in ISO format with timezone."))),
            e.text("temperature_control_history", ea.STATE).withDescription("Last decoded TP-WGZBA temperature control history response."),
        ];
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["raw"],
                convert: (model, msg, publish, options, meta) => {
                    if (!(msg.data instanceof Buffer))
                        return;
                    const parsedRawCommand = (0, sonoff_1.parseSWVZFRawZclCommand)(msg.data);
                    if (parsedRawCommand?.commandId !== 0x0e)
                        return;
                    const payload = parsedRawCommand.payload;
                    logger_1.logger.info(`TP-WGZBA received temperature control history payload=${formatSonoffTrvzbtPayload(payload)}`, NS);
                    if (payload.length < 2)
                        return;
                    const subCmd = payload[0];
                    const type = typeBySubCommand[subCmd];
                    if (!type)
                        return;
                    const status = payload[1];
                    const cacheKey = getSonoffTpWgzbaTemperatureControlHistoryCacheKey(msg.endpoint, msg.device ?? meta?.device);
                    const respCacheKey = cacheKey ? getSonoffTpWgzbaTemperatureControlHistoryRespCacheKey(cacheKey, subCmd) : undefined;
                    if (status !== 0x00) {
                        if (cacheKey) {
                            clearSonoffTpWgzbaTemperatureControlHistoryCache(cacheKey, subCmd);
                        }
                        logger_1.logger.error(`TP-WGZBA read temperature control history failed status=${status} subCmd=${subCmd}`, NS);
                        return;
                    }
                    if (payload.length < sonoffTpWgzbaTemperatureControlHistoryValueOffset)
                        return;
                    if (!cacheKey || !respCacheKey) {
                        logger_1.logger.error(`TP-WGZBA missing temperature control history request context for subCmd=${subCmd}; it may have timed out, please try again`, NS);
                        return;
                    }
                    const now = Date.now();
                    const request = sonoffTpWgzbaTemperatureControlHistoryReqCache[cacheKey]?.[subCmd];
                    if (request && now - request.updatedAt > sonoffTpWgzbaTemperatureControlHistoryCacheTimeoutMs) {
                        clearSonoffTpWgzbaTemperatureControlHistoryCache(cacheKey, subCmd);
                    }
                    const currentRequest = sonoffTpWgzbaTemperatureControlHistoryReqCache[cacheKey]?.[subCmd];
                    if (!currentRequest) {
                        logger_1.logger.error(`TP-WGZBA missing temperature control history request context for subCmd=${subCmd}; it may have timed out, please try again`, NS);
                        return;
                    }
                    const total = payload.readUInt16LE(2);
                    const current = payload.readUInt16LE(4);
                    const dataType = payload[6];
                    if (total === 0 || current >= total) {
                        logger_1.logger.error(`TP-WGZBA invalid temperature control history total=${total} current=${current} subCmd=${subCmd}`, NS);
                        return;
                    }
                    currentRequest.updatedAt = now;
                    const values = [];
                    for (let offset = sonoffTpWgzbaTemperatureControlHistoryValueOffset; offset + 1 < payload.length; offset += 2) {
                        const raw = payload.readInt16LE(offset);
                        values.push(raw === -1 ? Number.NaN : raw / 10);
                    }
                    let state = sonoffTpWgzbaTemperatureControlHistoryRespCache[respCacheKey];
                    if (!state || state.total !== total || now - state.updatedAt > sonoffTpWgzbaTemperatureControlHistoryCacheTimeoutMs) {
                        state = { total, packets: {}, updatedAt: now };
                        sonoffTpWgzbaTemperatureControlHistoryRespCache[respCacheKey] = state;
                    }
                    state.packets[current] = { current, dataType, values };
                    state.updatedAt = now;
                    if (!isSonoffTrvzbtTemperatureControlHistoryComplete(state)) {
                        return;
                    }
                    const result = buildSonoffTpWgzbaTemperatureControlHistoryResult(currentRequest, state);
                    clearSonoffTpWgzbaTemperatureControlHistoryCache(cacheKey, subCmd);
                    logger_1.logger.info(`TP-WGZBA parsed temperature control history ${JSON.stringify(result)}`, NS);
                    return { temperature_control_history: result };
                },
            },
        ];
        const toZigbee = [
            {
                key: ["read_temperature_control_history"],
                convertSet: async (entity, key, value, meta) => {
                    utils.assertObject(value, key);
                    const type = String(value.type);
                    const subCmd = typeLookup[type];
                    if (subCmd === undefined) {
                        throw new Error(`Invalid ${key}.type: expected day, month or half_year`);
                    }
                    const timeRange = utils.isObject(value.time_range) ? value.time_range : undefined;
                    const timeStart = utils.isString(timeRange?.start) ? timeRange.start : undefined;
                    const timeEnd = utils.isString(timeRange?.end) ? timeRange.end : undefined;
                    if (!timeStart || !timeEnd) {
                        throw new Error(`Invalid ${key}: time_range.start and time_range.end are required ISO datetimes with timezone`);
                    }
                    const startUtcSec = (0, sonoff_1.parseIsoWithOffsetToUtcSeconds)(timeStart);
                    const endUtcSec = (0, sonoff_1.parseIsoWithOffsetToUtcSeconds)(timeEnd);
                    if (startUtcSec === undefined || endUtcSec === undefined) {
                        throw new Error(`Invalid ${key}: expected ISO 8601 datetimes with timezone offset`);
                    }
                    const offsetSeconds = (0, sonoff_1.getRuntimeLocalOffsetSeconds)(Math.floor(Date.now() / 1000));
                    const startDeviceSec = (0, sonoff_1.utcToDeviceLocal2000Seconds)(startUtcSec, offsetSeconds);
                    const endDeviceSec = (0, sonoff_1.utcToDeviceLocal2000Seconds)(endUtcSec, offsetSeconds);
                    if (startDeviceSec < 0 || startDeviceSec > 0xffffffff || endDeviceSec < 0 || endDeviceSec > 0xffffffff) {
                        throw new Error(`Invalid ${key}: converted device time is out of range`);
                    }
                    if (endDeviceSec < startDeviceSec) {
                        throw new Error(`Invalid ${key}: time_range.end earlier than time_range.start`);
                    }
                    const displayOffsetSeconds = getSonoffTrvzbtTemperatureControlHistoryDisplayOffsetSeconds(timeStart) ?? offsetSeconds;
                    const payload = Buffer.alloc(11);
                    payload[0] = subCmd;
                    payload.writeUInt32LE(startDeviceSec, 1);
                    payload.writeUInt32LE(endDeviceSec, 5);
                    payload.writeUInt16LE(0xffff, 9);
                    const cacheKey = getSonoffTpWgzbaTemperatureControlHistoryCacheKey(entity, meta?.device);
                    if (cacheKey) {
                        sonoffTpWgzbaTemperatureControlHistoryReqCache[cacheKey] ??= {};
                        sonoffTpWgzbaTemperatureControlHistoryReqCache[cacheKey][subCmd] = {
                            type,
                            startDevice: startDeviceSec,
                            endDevice: endDeviceSec,
                            startUTC: startUtcSec,
                            endUTC: endUtcSec,
                            displayOffsetSeconds,
                            offsetSeconds,
                            timeRange: { start: timeStart, end: timeEnd },
                            updatedAt: Date.now(),
                        };
                        delete sonoffTpWgzbaTemperatureControlHistoryRespCache[getSonoffTpWgzbaTemperatureControlHistoryRespCacheKey(cacheKey, subCmd)];
                    }
                    logger_1.logger.info(`TP-WGZBA send temperature control history read type=${type} timeStart=${timeStart} timeEnd=${timeEnd} deviceStart=${startDeviceSec} deviceEnd=${endDeviceSec} payload=${formatSonoffTrvzbtPayload(payload)}`, NS);
                    await entity.command(clusterName, commandName, { data: Array.from(payload) }, disableDefaultResponseOptions);
                    return { state: { [key]: { type, time_range: { start: timeStart, end: timeEnd } } } };
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    tpWgzbaWeeklySchedule: () => {
        const clusterName = "customSonoffTpWgzba";
        const commandName = "scheduleGroup";
        const activeGroupKey = "schedule_active_group";
        const selectedGroupKey = "schedule_group_to_edit";
        const scheduleDescription = 'The preset heating schedule to use when the system mode is set to "auto". ' +
            "Up to 12 transitions can be defined per day, where a transition is expressed in the format 'HH:mm/temperature'. " +
            "The first transition for each day must start at 00:00 and the valid temperature range is 5-30°C.";
        const scheduleKeysFromMessage = (message) => {
            return message
                ? Object.keys(message).filter((key) => key.startsWith("weekly_schedule_") &&
                    sonoffTrvzbtScheduleDays.includes(key.replace("weekly_schedule_", "")))
                : [];
        };
        const exposes = [
            e
                .enum(activeGroupKey, ea.ALL, Object.keys(sonoffTpWgzbaScheduleGroupLookup))
                .withCategory("config")
                .withDescription("The schedule group currently used in Auto mode."),
            e
                .enum(selectedGroupKey, ea.ALL, Object.keys(sonoffTpWgzbaScheduleGroupLookup))
                .withCategory("config")
                .withDescription("Select the schedule group to view or edit."),
            ...sonoffTrvzbtScheduleDays.map((day) => e.text(`weekly_schedule_${day}`, ea.ALL).withCategory("config").withDescription(scheduleDescription)),
        ];
        const sendScheduleCommand = async (entity, scheduleNum, dayofweek, transitions) => {
            const payload = buildSonoffTrvzbtSchedulePayload(scheduleNum, dayofweek, transitions);
            logger_1.logger.info(`TP-WGZBA send scheduleGroup group=${toSonoffTpWgzbaSchedulePublicGroup(scheduleNum)} dayofweek=0x${dayofweek.toString(16).padStart(2, "0")} transitions=${JSON.stringify(transitions)} payload=${formatSonoffTrvzbtPayload(payload)}`, NS);
            await entity.command(clusterName, commandName, { data: payload }, disableDefaultResponseOptions);
        };
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (msg.data.weeklyScheduleActiveNum === undefined)
                        return;
                    const activeNum = getValidSonoffTpWgzbaScheduleGroupNum(msg.data.weeklyScheduleActiveNum);
                    if (activeNum === undefined) {
                        logger_1.logger.warning(`TP-WGZBA received invalid weeklyScheduleActiveNum=${msg.data.weeklyScheduleActiveNum}`, NS);
                        return;
                    }
                    cacheSonoffTpWgzbaScheduleActiveNum(activeNum, msg.endpoint, msg.device);
                    const publicGroup = toSonoffTpWgzbaSchedulePublicGroup(activeNum);
                    logger_1.logger.info(`TP-WGZBA received weeklyScheduleActiveNum=${publicGroup}`, NS);
                    const result = { [activeGroupKey]: publicGroup };
                    if (getCachedSonoffTpWgzbaScheduleSelectedNum(msg.endpoint, msg.device) === undefined) {
                        cacheSonoffTpWgzbaScheduleSelectedNum(activeNum, msg.endpoint, msg.device);
                        result[selectedGroupKey] = publicGroup;
                    }
                    return result;
                },
            },
            {
                cluster: clusterName,
                type: ["raw"],
                convert: (model, msg, publish, options, meta) => {
                    if (!(msg.data instanceof Buffer))
                        return;
                    const parsedRawCommand = (0, sonoff_1.parseSWVZFRawZclCommand)(msg.data);
                    if (parsedRawCommand?.commandId !== 0x13)
                        return;
                    const payload = parsedRawCommand.payload;
                    logger_1.logger.info(`TP-WGZBA received scheduleGroup payload=${formatSonoffTrvzbtPayload(payload)}`, NS);
                    if (payload.length < 4 || payload[0] !== 0x01)
                        return;
                    const readOrWrite = payload[1];
                    const scheduleNum = getValidSonoffTpWgzbaScheduleGroupNum(payload[2]);
                    if (scheduleNum === undefined)
                        return;
                    if (readOrWrite === 0x01) {
                        const status = payload[3];
                        logger_1.logger.info(`TP-WGZBA parsed scheduleGroup write response group=${toSonoffTpWgzbaSchedulePublicGroup(scheduleNum)} rawStatus=0x${status.toString(16).padStart(2, "0")}`, NS);
                        return;
                    }
                    if (readOrWrite !== 0x00 || payload.length < 6)
                        return;
                    const numoftrans = payload[3];
                    const dayofweek = payload[4];
                    const mode = payload[5];
                    const hasHeatSetpoint = (mode & 0x01) !== 0;
                    const hasCoolSetpoint = (mode & 0x02) !== 0;
                    let offset = 6;
                    const transitions = [];
                    for (let i = 0; i < numoftrans; i++) {
                        if (offset + 2 > payload.length)
                            return;
                        const transitionTime = payload.readUInt16LE(offset);
                        offset += 2;
                        let heatSetpoint = 0;
                        if (hasHeatSetpoint) {
                            if (offset + 2 > payload.length)
                                return;
                            heatSetpoint = payload.readInt16LE(offset);
                            offset += 2;
                        }
                        if (hasCoolSetpoint) {
                            if (offset + 2 > payload.length)
                                return;
                            offset += 2;
                        }
                        transitions.push({ transitionTime, heatSetpoint });
                    }
                    const schedule = formatSonoffTrvzbtScheduleTransitions(transitions);
                    logger_1.logger.info(`TP-WGZBA parsed scheduleGroup read response group=${toSonoffTpWgzbaSchedulePublicGroup(scheduleNum)} dayofweek=0x${dayofweek.toString(16).padStart(2, "0")} mode=0x${mode.toString(16).padStart(2, "0")} transitions=${JSON.stringify(transitions)} schedule=${schedule}`, NS);
                    if (!shouldMirrorSonoffTpWgzbaSelectedSchedule(scheduleNum, meta, msg.endpoint, msg.device))
                        return;
                    cacheSonoffTpWgzbaScheduleSelectedNum(scheduleNum, msg.endpoint, msg.device);
                    const result = { [selectedGroupKey]: toSonoffTpWgzbaSchedulePublicGroup(scheduleNum) };
                    for (const day of getSonoffTrvzbtScheduleDayNames(dayofweek)) {
                        result[`weekly_schedule_${day}`] = schedule;
                    }
                    return result;
                },
            },
        ];
        const toZigbee = [
            {
                key: [activeGroupKey],
                convertSet: async (entity, key, value, meta) => {
                    const publicGroup = assertSonoffTpWgzbaSchedulePublicGroup(value, key);
                    const scheduleNum = toSonoffTpWgzbaScheduleInternalGroup(publicGroup);
                    const endpoint = "read" in entity && typeof entity.read === "function" ? entity : undefined;
                    cacheSonoffTpWgzbaScheduleActiveNum(scheduleNum, endpoint, meta.device);
                    await entity.write(clusterName, { weeklyScheduleActiveNum: scheduleNum }, undefined);
                    return { state: { [key]: publicGroup } };
                },
                convertGet: async (entity) => {
                    await entity.read(clusterName, ["weeklyScheduleActiveNum"]);
                },
            },
            {
                key: [selectedGroupKey],
                convertSet: async (entity, key, value, meta) => {
                    const publicGroup = assertSonoffTpWgzbaSchedulePublicGroup(value, key);
                    const scheduleNum = toSonoffTpWgzbaScheduleInternalGroup(publicGroup);
                    const endpoint = "read" in entity && typeof entity.read === "function" ? entity : undefined;
                    cacheSonoffTpWgzbaScheduleSelectedNum(scheduleNum, endpoint, meta.device);
                    const message = meta.message;
                    if (scheduleKeysFromMessage(message).length === 0) {
                        await sendSonoffTpWgzbaScheduleReadCommand(entity, scheduleNum, "read selected group");
                    }
                    return { state: { [key]: publicGroup } };
                },
                convertGet: async (entity, key, meta) => {
                    const endpoint = "read" in entity && typeof entity.read === "function" ? entity : undefined;
                    await sendSonoffTpWgzbaScheduleReadCommand(entity, getSonoffTpWgzbaScheduleSelectedNum(endpoint, meta.device), "read selected group");
                },
            },
            {
                key: sonoffTrvzbtScheduleDays.map((day) => `weekly_schedule_${day}`),
                convertSet: async (entity, key, value, meta) => {
                    utils.assertString(value, key);
                    const message = meta.message;
                    const scheduleNum = getSonoffTpWgzbaScheduleNumFromMessage(entity, meta.device, message);
                    const scheduleKeys = scheduleKeysFromMessage(message);
                    if (scheduleKeys.length <= 1) {
                        const dayName = key.replace("weekly_schedule_", "");
                        const parsed = parseSonoffTrvzbtScheduleString(value, dayName);
                        await sendScheduleCommand(entity, scheduleNum, 1 << getSonoffTrvzbtDayBit(dayName), parsed.transitions);
                        return { state: { [key]: value, [selectedGroupKey]: toSonoffTpWgzbaSchedulePublicGroup(scheduleNum) } };
                    }
                    const scheduleGroups = new Map();
                    for (const scheduleKey of scheduleKeys) {
                        const dayName = scheduleKey.replace("weekly_schedule_", "");
                        const schedule = message[scheduleKey];
                        utils.assertString(schedule, scheduleKey);
                        scheduleGroups.set(schedule, [...(scheduleGroups.get(schedule) ?? []), dayName]);
                    }
                    const stateUpdates = { [selectedGroupKey]: toSonoffTpWgzbaSchedulePublicGroup(scheduleNum) };
                    for (const [schedule, daysWithSchedule] of scheduleGroups) {
                        const parsed = parseSonoffTrvzbtScheduleString(schedule, daysWithSchedule.join(", "));
                        let dayofweek = 0;
                        for (const dayName of daysWithSchedule) {
                            dayofweek |= 1 << getSonoffTrvzbtDayBit(dayName);
                            stateUpdates[`weekly_schedule_${dayName}`] = schedule;
                        }
                        await sendScheduleCommand(entity, scheduleNum, dayofweek, parsed.transitions);
                    }
                    return { state: stateUpdates };
                },
                convertGet: async (entity, key, meta) => {
                    const endpoint = "read" in entity && typeof entity.read === "function" ? entity : undefined;
                    await sendSonoffTpWgzbaScheduleReadCommand(entity, getSonoffTpWgzbaScheduleSelectedNum(endpoint, meta.device), "send read");
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    tpWgzbaReadScheduleOnConfigure: () => {
        const configure = [
            async (device) => {
                const endpoint = device.getEndpoint(1);
                if (!endpoint)
                    return;
                const activeScheduleGroupId = await readSonoffTpWgzbaScheduleActiveNum(endpoint, device, "configure");
                await sendSonoffTpWgzbaScheduleReadCommand(endpoint, activeScheduleGroupId, "configure read");
            },
        ];
        return { configure, isModernExtend: true };
    },
    tpWgzbaRemoteTemperatureSource: () => {
        const clusterName = "customSonoffTpWgzba";
        const temperatureSensorSelectKey = "temperature_sensor_select";
        const externalTemperatureInputKey = "external_temperature_input";
        const exposes = [
            e
                .enum(temperatureSensorSelectKey, ea.ALL, sonoffTpWgzbaTemperatureSensorSelectValues)
                .withLabel("Temperature sensor")
                .withDescription("Whether to use the value of the internal temperature sensor or an external temperature sensor for the perceived local temperature. Using an external sensor does not require local temperature calibration."),
            e
                .numeric(externalTemperatureInputKey, ea.ALL)
                .withLabel("External temperature")
                .withValueMin(sonoffTpWgzbaExternalTemperatureInputRange.min)
                .withValueMax(sonoffTpWgzbaExternalTemperatureInputRange.max)
                .withValueStep(sonoffTpWgzbaExternalTemperatureInputRange.step)
                .withUnit("°C")
                .withCategory("config")
                .withDescription("The value of an external temperature sensor. Note: synchronisation of this value with the external temperature sensor needs to happen outside of Zigbee2MQTT."),
        ];
        const writeRemoteAttributeLinkage = async (entity, temperatureSensorSelect, externalTemperatureInput) => {
            const payload = buildSonoffTpWgzbaRemoteAttributeLinkage(sonoffTpWgzbaTemperatureSensorSelectLookup[temperatureSensorSelect], sonoffTpWgzbaExternalTemperatureInputToRaw(externalTemperatureInput));
            await entity.write(clusterName, {
                [0x601e]: {
                    value: {
                        elementType: zigbee_herdsman_1.Zcl.DataType.UINT8,
                        elements: payload,
                    },
                    type: zigbee_herdsman_1.Zcl.DataType.ARRAY,
                },
            }, undefined);
        };
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (msg.data.remoteAttributeLinkage === undefined)
                        return;
                    return parseSonoffTpWgzbaRemoteAttributeLinkage(msg.data.remoteAttributeLinkage);
                },
            },
        ];
        const toZigbee = [
            {
                key: [temperatureSensorSelectKey, externalTemperatureInputKey],
                convertSet: async (entity, key, value, meta) => {
                    const state = meta.state ?? {};
                    const cachedExternalTemperatureInput = state[externalTemperatureInputKey];
                    const cachedTemperatureSensorSelect = state[temperatureSensorSelectKey];
                    let temperatureSensorSelect = cachedTemperatureSensorSelect === undefined
                        ? sonoffTpWgzbaDefaultTemperatureSensorSelect
                        : assertSonoffTpWgzbaTemperatureSensorSelect(cachedTemperatureSensorSelect, temperatureSensorSelectKey);
                    let externalTemperatureInput = isSonoffTpWgzbaExternalTemperatureInput(cachedExternalTemperatureInput)
                        ? cachedExternalTemperatureInput
                        : undefined;
                    if (key === externalTemperatureInputKey) {
                        externalTemperatureInput = assertSonoffTpWgzbaExternalTemperatureInput(value, key);
                    }
                    else if (key === temperatureSensorSelectKey) {
                        temperatureSensorSelect = assertSonoffTpWgzbaTemperatureSensorSelect(value, key);
                        if (externalTemperatureInput === undefined) {
                            if (temperatureSensorSelect !== "internal") {
                                throw new Error(`Invalid ${key}: external_temperature_input must be set before non-internal temperature_sensor_select`);
                            }
                            externalTemperatureInput = 0;
                        }
                    }
                    else {
                        throw new Error(`Unsupported TP-WGZBA remote temperature source key: ${key}`);
                    }
                    await writeRemoteAttributeLinkage(entity, temperatureSensorSelect, externalTemperatureInput);
                    return { state: { [key]: value } };
                },
                convertGet: async (entity) => {
                    await entity.read(clusterName, ["remoteAttributeLinkage"]);
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    tpWgzbaTemperatureHysteresis: () => {
        const clusterName = "customSonoffTpWgzba";
        const key = "temperature_hysteresis";
        const lowKey = "low_threshold";
        const highKey = "high_threshold";
        const exposes = [
            e
                .composite(key, key, ea.ALL)
                .withCategory("config")
                .withDescription("Temperature hysteresis thresholds.")
                .withFeature(e
                .numeric(lowKey, ea.ALL)
                .withLabel("Minimum heating start threshold")
                .withUnit("°C")
                .withValueMin(sonoffTpWgzbaHysteresisLowRange.min)
                .withValueMax(sonoffTpWgzbaHysteresisLowRange.max)
                .withValueStep(sonoffTpWgzbaHysteresisLowRange.step)
                .withDescription("Heating starts when the room temperature falls below the target temperature plus this offset."))
                .withFeature(e
                .numeric(highKey, ea.ALL)
                .withLabel("Maximum heating stop threshold")
                .withUnit("°C")
                .withValueMin(sonoffTpWgzbaHysteresisHighRange.min)
                .withValueMax(sonoffTpWgzbaHysteresisHighRange.max)
                .withValueStep(sonoffTpWgzbaHysteresisHighRange.step)
                .withDescription("Heating stops when the room temperature rises above the target temperature plus this offset.")),
        ];
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    const value = msg.data.temperatureControlThreshold;
                    if (value === undefined)
                        return;
                    const low = getSonoffStructNumber(value, 0, zigbee_herdsman_1.Zcl.DataType.INT16);
                    const high = getSonoffStructNumber(value, 1, zigbee_herdsman_1.Zcl.DataType.INT16);
                    if (low === undefined || high === undefined)
                        return;
                    return { [key]: { [lowKey]: low / 100, [highKey]: high / 100 } };
                },
            },
        ];
        const toZigbee = [
            {
                key: [key],
                convertSet: async (entity, key, value) => {
                    utils.assertObject(value, key);
                    utils.assertNumber(value[lowKey], `${key}.${lowKey}`);
                    utils.assertNumber(value[highKey], `${key}.${highKey}`);
                    await entity.write(clusterName, {
                        temperatureControlThreshold: buildSonoffStruct(zigbee_herdsman_1.Zcl.DataType.INT16, [
                            Math.round(value[lowKey] * 100),
                            Math.round(value[highKey] * 100),
                        ]),
                    });
                    return { state: { [key]: { [lowKey]: value[lowKey], [highKey]: value[highKey] } } };
                },
                convertGet: async (entity) => {
                    await entity.read(clusterName, ["temperatureControlThreshold"]);
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    tpWgzbaTimePeriod: (key, attribute, description) => {
        const clusterName = "customSonoffTpWgzba";
        const exposes = [
            e
                .composite(key, key, ea.ALL)
                .withCategory("config")
                .withDescription(description)
                .withFeature(e.text("start", ea.ALL).withDescription("Start time in HH:mm."))
                .withFeature(e.text("end", ea.ALL).withDescription("End time in HH:mm.")),
        ];
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    const value = msg.data[attribute];
                    if (value === undefined)
                        return;
                    const start = getSonoffStructNumber(value, 0, zigbee_herdsman_1.Zcl.DataType.UINT16);
                    const end = getSonoffStructNumber(value, 1, zigbee_herdsman_1.Zcl.DataType.UINT16);
                    if (start === undefined || end === undefined)
                        return;
                    return { [key]: { start: formatSonoffTpWgzbaTimeValue(start), end: formatSonoffTpWgzbaTimeValue(end) } };
                },
            },
        ];
        const toZigbee = [
            {
                key: [key],
                convertSet: async (entity, key, value) => {
                    utils.assertObject(value, key);
                    const start = parseSonoffTpWgzbaTimeValue(value.start, `${key}.start`);
                    const end = parseSonoffTpWgzbaTimeValue(value.end, `${key}.end`);
                    const period = buildSonoffStruct(zigbee_herdsman_1.Zcl.DataType.UINT16, [start, end]);
                    const payload = attribute === "radarDoNotDisturbPeriod" ? { radarDoNotDisturbPeriod: period } : { screenNightModePeriod: period };
                    await entity.write(clusterName, payload);
                    return { state: { [key]: { start: value.start, end: value.end } } };
                },
                convertGet: async (entity) => {
                    await entity.read(clusterName, [attribute]);
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    tpWgzbaRelayOutput: () => {
        const clusterName = "customSonoffTpWgzba";
        const underfloorKey = "hydronic_underfloor_heating_relay_output";
        const boilerKey = "boiler_dry_contact_output";
        const relayOutputKeys = Object.keys(sonoffTpWgzbaRelayOutputLookup);
        const relayOutputValueForBit = (bit) => {
            const key = utils.getFromLookupByValue(bit, sonoffTpWgzbaRelayOutputLookup);
            return key ?? "normally_open_no";
        };
        const exposes = [
            e
                .enum(underfloorKey, ea.ALL, relayOutputKeys)
                .withCategory("config")
                .withDescription("Select how the 3 A relay operates. Normally open (NO): The output is powered during heating and unpowered when heating stops. Normally closed (NC): The output is unpowered during heating and powered when heating stops."),
            e
                .enum(boilerKey, ea.ALL, relayOutputKeys)
                .withCategory("config")
                .withDescription("Select how the boiler dry-contact relay operates. Normally open (NO): The contact closes during heating and opens when heating stops. Normally closed (NC): The contact opens during heating and closes when heating stops."),
        ];
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (msg.data.relayOutputType === undefined)
                        return;
                    utils.assertNumber(msg.data.relayOutputType);
                    return {
                        [underfloorKey]: relayOutputValueForBit(msg.data.relayOutputType & 0x01),
                        [boilerKey]: relayOutputValueForBit((msg.data.relayOutputType >> 1) & 0x01),
                    };
                },
            },
        ];
        const toZigbee = [
            {
                key: [underfloorKey, boilerKey],
                convertSet: async (entity, key, value, meta) => {
                    const selectedBit = getSonoffTpWgzbaOutputBit(value, key);
                    const currentUnderfloorBit = getSonoffTpWgzbaOutputBit(meta.state?.[underfloorKey], underfloorKey) ?? 0;
                    const currentBoilerBit = getSonoffTpWgzbaOutputBit(meta.state?.[boilerKey], boilerKey) ?? 0;
                    const underfloorBit = key === underfloorKey ? selectedBit : currentUnderfloorBit;
                    const boilerBit = key === boilerKey ? selectedBit : currentBoilerBit;
                    const relayOutputType = (underfloorBit ?? 0) | ((boilerBit ?? 0) << 1);
                    await entity.write(clusterName, { relayOutputType }, undefined);
                    return { state: { [key]: value } };
                },
                convertGet: async (entity) => {
                    await entity.read(clusterName, ["relayOutputType"]);
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    tpWgzbaTemporaryMode: () => {
        const clusterName = "customSonoffTpWgzba";
        const commandName = "setTemporaryMode";
        const key = "temporary_mode";
        const exposes = [
            e
                .composite(key, key, ea.ALL)
                .withCategory("config")
                .withDescription("Temporary temperature mode settings.")
                .withFeature(e
                .enum("mode", ea.ALL, Object.keys(sonoffTpWgzbaTemporaryCommandModeLookup))
                .withDescription("Boost Mode: Runs the heating at the maximum set temperature for a user-defined duration to quickly warm the room.Timer Mode: Runs the heating at a user-defined temperature for a specified duration. When the timer ends, the thermostat returns to its previous mode and set temperature."))
                .withFeature(e
                .numeric("duration", ea.ALL)
                .withValueMin(0)
                .withValueMax(1440)
                .withValueStep(5)
                .withUnit("minutes")
                .withDescription("Boost Mode: Runs the heating at the maximum set temperature for up to 180 minutes.Timer Mode: Runs the heating at a custom temperature for a specified duration of up to 24 hours."))
                .withFeature(e
                .numeric("target_temperature", ea.ALL)
                .withValueMin(sonoffTpWgzbaTargetTemperatureRange.min)
                .withValueMax(sonoffTpWgzbaTargetTemperatureRange.max)
                .withValueStep(sonoffTpWgzbaTargetTemperatureRange.step)
                .withUnit("°C")
                .withDescription("In timer mode,the temperature can be set to 5-30°C.")),
        ];
        const isValidTargetTemperature = (value) => {
            return typeof value === "number" && value >= sonoffTpWgzbaTargetTemperatureRange.min && value <= sonoffTpWgzbaTargetTemperatureRange.max;
        };
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (msg.data.temporaryMode === undefined &&
                        msg.data.temporaryModeTime === undefined &&
                        msg.data.temporaryModeTemp === undefined) {
                        return;
                    }
                    const temporaryMode = utils.isObject(meta.state.temporary_mode) ? { ...meta.state.temporary_mode } : {};
                    if (msg.data.temporaryMode !== undefined) {
                        temporaryMode.mode = utils.getFromLookupByValue(msg.data.temporaryMode, sonoffTpWgzbaTemporaryAttributeModeLookup, null);
                        if (temporaryMode.mode === "boost") {
                            delete temporaryMode.target_temperature;
                        }
                    }
                    if (msg.data.temporaryModeTime !== undefined) {
                        utils.assertNumber(msg.data.temporaryModeTime);
                        temporaryMode.duration = msg.data.temporaryModeTime / 60;
                    }
                    if (msg.data.temporaryModeTemp !== undefined) {
                        utils.assertNumber(msg.data.temporaryModeTemp);
                        const targetTemperature = msg.data.temporaryModeTemp / sonoffTpWgzbaTemperatureScale;
                        if (temporaryMode.mode !== "boost" && isValidTargetTemperature(targetTemperature)) {
                            temporaryMode.target_temperature = targetTemperature;
                        }
                        else {
                            delete temporaryMode.target_temperature;
                        }
                    }
                    return { [key]: temporaryMode };
                },
            },
            {
                cluster: clusterName,
                type: ["raw"],
                convert: (model, msg, publish, options, meta) => {
                    if (!(msg.data instanceof Buffer))
                        return;
                    const parsedRawCommand = (0, sonoff_1.parseSWVZFRawZclCommand)(msg.data);
                    if (parsedRawCommand?.commandId !== 0x11)
                        return;
                    const payload = parsedRawCommand.payload;
                    if (payload.length < 6)
                        return;
                    const status = payload[0];
                    const statusText = sonoffTpWgzbaTemporaryModeStatusLookup[status] ?? "unknown";
                    logger_1.logger.info(`TP-WGZBA temporary mode response status=${statusText} payload=${formatSonoffTrvzbtPayload(payload)}`, NS);
                    if (status !== 0x00)
                        return;
                    const temporaryMode = utils.isObject(meta.state.temporary_mode) ? { ...meta.state.temporary_mode } : {};
                    temporaryMode.mode = utils.getFromLookupByValue(payload[1], sonoffTpWgzbaTemporaryCommandModeLookup, null);
                    temporaryMode.duration = payload.readUInt32LE(2) / 60;
                    if (temporaryMode.mode === "boost") {
                        delete temporaryMode.target_temperature;
                    }
                    return { [key]: temporaryMode };
                },
            },
        ];
        const toZigbee = [
            {
                key: [key],
                convertSet: async (entity, key, value) => {
                    utils.assertObject(value, key);
                    utils.assertString(value.mode, `${key}.mode`);
                    const mode = value.mode;
                    const temporaryMode = sonoffTpWgzbaTemporaryCommandModeLookup[mode];
                    if (temporaryMode === undefined) {
                        throw new Error(`Invalid ${key}.mode: expected off, boost or timer`);
                    }
                    let durationSeconds = 0;
                    let targetTemperature;
                    utils.assertNumber(value.duration, `${key}.duration`);
                    const maxDuration = mode === "boost" ? 180 : 1440;
                    if (value.duration < 0 || value.duration > maxDuration) {
                        throw new Error(`Invalid ${key}.duration: expected value between 0-${maxDuration} (inclusive), got ${value.duration}`);
                    }
                    if (mode === "boost") {
                        targetTemperature = targetTemperature = Math.round(30 * sonoffTpWgzbaTemperatureScale);
                    }
                    if (mode === "timer") {
                        utils.assertNumber(value.target_temperature, `${key}.target_temperature`);
                        if (!isValidTargetTemperature(value.target_temperature)) {
                            throw new Error(`Invalid ${key}.target_temperature: expected value between ${sonoffTpWgzbaTargetTemperatureRange.min}-${sonoffTpWgzbaTargetTemperatureRange.max} (inclusive), got ${value.target_temperature}`);
                        }
                        targetTemperature = Math.round(value.target_temperature * sonoffTpWgzbaTemperatureScale);
                    }
                    durationSeconds = Math.round(value.duration * 60);
                    const payload = Buffer.alloc(targetTemperature === undefined ? 5 : 7);
                    payload[0] = temporaryMode;
                    payload.writeUInt32LE(durationSeconds, 1);
                    if (targetTemperature !== undefined) {
                        payload.writeInt16LE(targetTemperature, 5);
                    }
                    await entity.command(clusterName, commandName, { data: Array.from(payload) }, disableDefaultResponseOptions);
                    const state = { mode };
                    state.duration = value.duration;
                    if (mode !== "boost") {
                        state.target_temperature = value.target_temperature;
                    }
                    return { state: { [key]: state } };
                },
                convertGet: async (entity) => {
                    await entity.command(clusterName, commandName, { data: [0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00] }, disableDefaultResponseOptions);
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee, isModernExtend: true };
    },
    tpWgzbaHvacNotification: () => {
        const clusterName = "customSonoffTpWgzba";
        const exposes = [
            e.binary("open_window_detected", ea.STATE, true, false).withDescription("Indicates whether open window detection was triggered."),
        ];
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (msg.data.hvacMessageNotification === undefined)
                        return;
                    const data = Buffer.from(Array.from(msg.data.hvacMessageNotification));
                    if (data.length < 3 || data[0] !== 0x00 || data[1] < 1)
                        return;
                    return { open_window_detected: data[2] === 0x01 };
                },
            },
        ];
        return { exposes, fromZigbee, toZigbee: [], isModernExtend: true };
    },
    tpWgzbaFactoryReset: () => {
        const key = "factory_reset";
        const exposes = e
            .enum(key, ea.SET, ["reset"])
            .withCategory("config")
            .withDescription("Resetting the device will restore its factory settings and erase all device data. Please proceed with caution.");
        const toZigbee = [
            {
                key: [key],
                convertSet: async (entity, key, value) => {
                    utils.validateValue(value, ["reset"]);
                    await entity.command("genBasic", "resetFactDefault", {}, disableDefaultResponseOptions);
                },
            },
        ];
        return { exposes: [exposes], toZigbee, isModernExtend: true };
    },
    tpWgzbaNtcTemperature: () => {
        const clusterName = "customSonoffTpWgzba";
        const key = "ntc_temperature";
        const exposes = e
            .text(key, ea.STATE)
            .withLabel("NTC temperature")
            .withCategory("diagnostic")
            .withDescription("Current external NTC temperature or sensor status.");
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (msg.data.currentNtcTemperature === undefined)
                        return;
                    return { [key]: formatSonoffTpWgzbaNtcTemperature(msg.data.currentNtcTemperature) };
                },
            },
        ];
        return { exposes: [exposes], fromZigbee, isModernExtend: true };
    },
    cyclicTimedIrrigation: () => {
        const exposes = e
            .composite("cyclic_timed_irrigation", "cyclic_timed_irrigation", ea.ALL)
            .withDescription("Smart water valve cycle timing irrigation")
            .withFeature(e.numeric("current_count", ea.STATE).withDescription("Number of times it has been executed").withUnit("times"))
            .withFeature(e
            .numeric("total_number", ea.STATE_SET)
            .withDescription("Total times of circulating irrigation")
            .withUnit("times")
            .withValueMin(0)
            .withValueMax(100))
            .withFeature(e
            .numeric("irrigation_duration", ea.STATE_SET)
            .withDescription("Single irrigation duration")
            .withUnit("seconds")
            .withValueMin(0)
            .withValueMax(86400))
            .withFeature(e
            .numeric("irrigation_interval", ea.STATE_SET)
            .withDescription("Time interval between two adjacent irrigation")
            .withUnit("seconds")
            .withValueMin(0)
            .withValueMax(86400));
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    const attributeKey = 0x5008; // attr
                    if (attributeKey in msg.data) {
                        // logger.debug(` from zigbee 0x5008 cluster ${msg.data[attributeKey]} `, NS);
                        // logger.debug(msg.data[attributeKey]);
                        //logger.debug(`meta.rawData details:`, NS);
                        //logger.debug(`  - Hex: ${msg.meta.rawData.toString('hex')}`, NS);
                        const rawData = msg.meta.rawData;
                        /*eg:raw data: 082b0a0850420a0101000000ef00000064*/
                        /*zcl frame: 082b0a  attrid: 0850  data type :42   data payload:0a0101000000ef00000064*/
                        /*0a:data len 01:currentCount 01:totalNumber 00 00 00 ef:irrigationDurationBuffer 00 00 00 64:irrigationIntervalBuffer*/
                        const dataStartIndex = 7; /*data payload start index*/
                        //logger.debug(`rawData====> ${rawData[0+dataStartIndex]} ${rawData[1+dataStartIndex]} ${rawData[2+dataStartIndex]} ${rawData[3+dataStartIndex]} ${rawData[4+dataStartIndex]} ${rawData[5+dataStartIndex]} `, NS);
                        //logger.debug(`rawData====> ${rawData[6+dataStartIndex]} ${rawData[7+dataStartIndex]} ${rawData[8+dataStartIndex]} ${rawData[9+dataStartIndex]} `, NS);
                        const currentCountBuffer = rawData.readUInt8(0 + dataStartIndex);
                        const totalNumberBuffer = rawData.readUInt8(1 + dataStartIndex);
                        const irrigationDurationBuffer = rawData.readUInt32BE(2 + dataStartIndex);
                        const irrigationIntervalBuffer = rawData.readUInt32BE(6 + dataStartIndex);
                        //logger.debug(`currentCountBuffer ${currentCountBuffer}`, NS);
                        //logger.debug(`totalNumberOfTimesBuffer ${totalNumberBuffer}`, NS);
                        //logger.debug(`irrigationDurationBuffer ${irrigationDurationBuffer}`, NS);
                        //logger.debug(`irrigationIntervalBuffer ${irrigationIntervalBuffer}`, NS);
                        return {
                            cyclic_timed_irrigation: {
                                current_count: currentCountBuffer,
                                total_number: totalNumberBuffer,
                                irrigation_duration: irrigationDurationBuffer,
                                irrigation_interval: irrigationIntervalBuffer,
                            },
                        };
                    }
                },
            },
        ];
        const toZigbee = [
            {
                key: ["cyclic_timed_irrigation"],
                convertSet: async (entity, key, value, meta) => {
                    // logger.debug(`to zigbee cyclic_timed_irrigation ${key}`, NS);
                    // const currentCount:string = 'current_count';
                    // logger.debug(`to zigbee cyclic_timed_irrigation ${value[currentCount as keyof typeof value]}`, NS);
                    const totalNumber = "total_number";
                    // logger.debug(`to zigbee cyclic_timed_irrigation ${value[totalNumber as keyof typeof value]}`, NS);
                    const irrigationDuration = "irrigation_duration";
                    // logger.debug(`to zigbee cyclic_timed_irrigation ${value[irrigationDuration as keyof typeof value]}`, NS);
                    const irrigationInterval = "irrigation_interval";
                    // logger.debug(`to zigbee cyclic_timed_irrigation ${value[irrigationInterval as keyof typeof value]}`, NS);
                    // const payloadValue = [];
                    const payloadValue = new Uint8Array(11);
                    payloadValue[0] = 0x0a;
                    payloadValue[1] = 0x00;
                    payloadValue[2] = value[totalNumber] & 0xff;
                    payloadValue[3] = (value[irrigationDuration] >> 24) & 0xff;
                    payloadValue[4] = (value[irrigationDuration] >> 16) & 0xff;
                    payloadValue[5] = (value[irrigationDuration] >> 8) & 0xff;
                    payloadValue[6] = value[irrigationDuration] & 0xff;
                    payloadValue[7] = (value[irrigationInterval] >> 24) & 0xff;
                    payloadValue[8] = (value[irrigationInterval] >> 16) & 0xff;
                    payloadValue[9] = (value[irrigationInterval] >> 8) & 0xff;
                    payloadValue[10] = value[irrigationInterval] & 0xff;
                    const payload = { [0x5008]: { value: payloadValue, type: 0x42 } };
                    await entity.write("customClusterEwelink", payload, defaultResponseOptions);
                    return { state: { [key]: value } };
                },
                convertGet: async (entity, key, meta) => {
                    await entity.read("customClusterEwelink", [0x5008], defaultResponseOptions);
                },
            },
        ];
        return {
            exposes: [exposes],
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    cyclicQuantitativeIrrigation: () => {
        const exposes = e
            .composite("cyclic_quantitative_irrigation", "cyclic_quantitative_irrigation", ea.ALL)
            .withDescription("Smart water valve circulating quantitative irrigation")
            .withFeature(e.numeric("current_count", ea.STATE).withDescription("Number of times it has been executed").withUnit("times"))
            .withFeature(e
            .numeric("total_number", ea.STATE_SET)
            .withDescription("Total times of circulating irrigation")
            .withUnit("times")
            .withValueMin(0)
            .withValueMax(100))
            .withFeature(e
            .numeric("irrigation_capacity", ea.STATE_SET)
            .withDescription("Single irrigation capacity")
            .withUnit("liter")
            .withValueMin(0)
            .withValueMax(6500))
            .withFeature(e
            .numeric("irrigation_interval", ea.STATE_SET)
            .withDescription("Time interval between two adjacent irrigation")
            .withUnit("seconds")
            .withValueMin(0)
            .withValueMax(86400));
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    const attributeKey = 0x5009; // attr
                    if (attributeKey in msg.data) {
                        // logger.debug(` from zigbee 0x5009 cluster ${msg.data[attributeKey]} `, NS);
                        // logger.debug(msg.data[attributeKey]);
                        const rawData = msg.meta.rawData;
                        /*eg:raw data: 082b0a0850420a0101000000ef00000064*/
                        /*zcl frame: 082b0a  attrid: 0850  data type :42   data payload:0a0101000000ef00000064*/
                        /*0a:data len 01:currentCount 01:totalNumber 00 00 00 ef:irrigationCapacityBuffer 00 00 00 64:irrigationIntervalBuffer*/
                        const dataStartIndex = 7; /*data payload start index*/
                        //logger.debug(`rawData====> ${rawData[0+dataStartIndex]} ${rawData[1+dataStartIndex]} ${rawData[2+dataStartIndex]} ${rawData[3+dataStartIndex]} ${rawData[4+dataStartIndex]} ${rawData[5+dataStartIndex]} `, NS);
                        //logger.debug(`rawData====> ${rawData[6+dataStartIndex]} ${rawData[7+dataStartIndex]} ${rawData[8+dataStartIndex]} ${rawData[9+dataStartIndex]} `, NS);
                        const currentCountBuffer = rawData.readUInt8(0 + dataStartIndex);
                        const totalNumberBuffer = rawData.readUInt8(1 + dataStartIndex);
                        const irrigationCapacityBuffer = rawData.readUInt32BE(2 + dataStartIndex);
                        const irrigationIntervalBuffer = rawData.readUInt32BE(6 + dataStartIndex);
                        //logger.debug(`currentCountBuffer ${currentCountBuffer}`, NS);
                        //logger.debug(`totalNumberBuffer ${totalNumberBuffer}`, NS);
                        //logger.debug(`irrigationCapacityBuffer ${irrigationCapacityBuffer}`, NS);
                        //logger.debug(`irrigationIntervalBuffer ${irrigationIntervalBuffer}`, NS);
                        return {
                            cyclic_quantitative_irrigation: {
                                current_count: currentCountBuffer,
                                total_number: totalNumberBuffer,
                                irrigation_capacity: irrigationCapacityBuffer,
                                irrigation_interval: irrigationIntervalBuffer,
                            },
                        };
                    }
                },
            },
        ];
        const toZigbee = [
            {
                key: ["cyclic_quantitative_irrigation"],
                convertSet: async (entity, key, value, meta) => {
                    // logger.debug(`to zigbee cyclic_Quantitative_irrigation ${key}`, NS);
                    // const currentCount:string = 'current_count';
                    // logger.debug(`to zigbee cyclic_Quantitative_irrigation ${value[currentCount as keyof typeof value]}`, NS);
                    const totalNumber = "total_number";
                    // logger.debug(`to zigbee cyclic_Quantitative_irrigation ${value[totalNumber as keyof typeof value]}`, NS);
                    const irrigationCapacity = "irrigation_capacity";
                    // logger.debug(`to zigbee cyclic_Quantitative_irrigation ${value[irrigationCapacity as keyof typeof value]}`, NS);
                    const irrigationInterval = "irrigation_interval";
                    // logger.debug(`to zigbee cyclic_Quantitative_irrigation ${value[irrigationInterval as keyof typeof value]}`, NS);
                    const payloadValue = new Uint8Array(11);
                    payloadValue[0] = 0x0a;
                    payloadValue[1] = 0x00;
                    payloadValue[2] = value[totalNumber] & 0xff;
                    payloadValue[3] = (value[irrigationCapacity] >> 24) & 0xff;
                    payloadValue[4] = (value[irrigationCapacity] >> 16) & 0xff;
                    payloadValue[5] = (value[irrigationCapacity] >> 8) & 0xff;
                    payloadValue[6] = value[irrigationCapacity] & 0xff;
                    payloadValue[7] = (value[irrigationInterval] >> 24) & 0xff;
                    payloadValue[8] = (value[irrigationInterval] >> 16) & 0xff;
                    payloadValue[9] = (value[irrigationInterval] >> 8) & 0xff;
                    payloadValue[10] = value[irrigationInterval] & 0xff;
                    const payload = { [0x5009]: { value: payloadValue, type: 0x42 } };
                    await entity.write("customClusterEwelink", payload, defaultResponseOptions);
                    return { state: { [key]: value } };
                },
                convertGet: async (entity, key, meta) => {
                    await entity.read("customClusterEwelink", [0x5009], defaultResponseOptions);
                },
            },
        ];
        return {
            exposes: [exposes],
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    externalSwitchTriggerMode: (args = {}) => {
        const clusterName = "customClusterEwelink";
        const attributeName = "externalTriggerMode";
        const { endpointNames = undefined } = args;
        const description = "External trigger mode, which can be one of edge, pulse, " +
            "following(off), following(on). The appropriate triggering mode can be selected according to the type of " +
            "external switch to achieve a better use experience.";
        const exposes = utils.exposeEndpoints(e
            .enum("external_trigger_mode", ea.ALL, ["edge", "pulse", "following(off)", "following(on)"])
            .withDescription(description)
            .withCategory("config"), endpointNames);
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    const lookup = { edge: 0, pulse: 1, "following(off)": 2, "following(on)": 130 };
                    // logger.debug(`from zigbee msg.data['externalTriggerMode'] ${msg.data['externalTriggerMode']}`, NS);
                    if (msg.data.externalTriggerMode !== undefined) {
                        let switchType = "edge";
                        for (const name in lookup) {
                            if (lookup[name] === msg.data.externalTriggerMode) {
                                switchType = name;
                                break;
                            }
                        }
                        // logger.debug(`form zigbee switchType ${switchType}`, NS);
                        return { external_trigger_mode: switchType };
                    }
                },
            },
        ];
        const toZigbee = [
            {
                key: ["external_trigger_mode"],
                convertSet: async (entity, key, value, meta) => {
                    utils.assertString(value, key);
                    value = value.toLowerCase();
                    const lookup = { edge: 0, pulse: 1, "following(off)": 2, "following(on)": 130 };
                    const tmpValue = utils.getFromLookup(value, lookup);
                    await entity.write(clusterName, { [attributeName]: tmpValue }, defaultResponseOptions);
                    return { state: { [key]: value } };
                },
                convertGet: async (entity, key, meta) => {
                    await entity.read(clusterName, [attributeName], defaultResponseOptions);
                },
            },
        ];
        return {
            exposes: exposes,
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    detachRelayModeControl: (relayCount) => {
        const clusterName = "customClusterEwelink";
        const attributeName = "detachRelayMode2";
        const exposes = e.composite("detach_relay_mode", "detach_relay_mode", ea.ALL);
        if (1 === relayCount) {
            exposes
                .withDescription("Relay separation mode. Can be used when the load is a smart device (such as smart light), " +
                "when we control the wall switch, do not want to turn off the power of the smart light, but through " +
                "a scene command to control the smart light on or off, then we can enable the relay separation mode.")
                .withFeature(e.binary("detach_relay_outlet1", ea.SET, "ENABLE", "DISABLE").withDescription("Enable/disable detach relay."));
        }
        else if (2 === relayCount) {
            exposes
                .withDescription("Relay separation mode. Can be used when the load is a smart device (such as smart light), " +
                "when we control the wall switch, do not want to turn off the power of the smart light, but through " +
                "a scene command to control the smart light on or off, then we can enable the relay separation mode.")
                .withFeature(e.binary("detach_relay_outlet1", ea.SET, "ENABLE", "DISABLE").withDescription("Enable/disable detach relay."))
                .withFeature(e.binary("detach_relay_outlet2", ea.SET, "ENABLE", "DISABLE").withDescription("Enable/disable detach relay."));
        }
        else if (3 === relayCount) {
            exposes
                .withDescription("Relay separation mode. Can be used when the load is a smart device (such as smart light), " +
                "when we control the wall switch, do not want to turn off the power of the smart light, but through " +
                "a scene command to control the smart light on or off, then we can enable the relay separation mode.")
                .withFeature(e.binary("detach_relay_outlet1", ea.SET, "ENABLE", "DISABLE").withDescription("Enable/disable detach relay."))
                .withFeature(e.binary("detach_relay_outlet2", ea.SET, "ENABLE", "DISABLE").withDescription("Enable/disable detach relay."))
                .withFeature(e.binary("detach_relay_outlet3", ea.SET, "ENABLE", "DISABLE").withDescription("Enable/disable detach relay."));
        }
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (msg.data.detachRelayMode2 !== undefined) {
                        const detachMode = msg.data.detachRelayMode2;
                        logger_1.logger.debug(`form zigbee detachRelayMode2 ${detachMode}`, NS);
                        const datachRelayStatus = {
                            detach_relay_outlet1: "DISABLE",
                            detach_relay_outlet2: "DISABLE",
                            detach_relay_outlet3: "DISABLE",
                        };
                        if ((detachMode & 0x01) !== 0) {
                            datachRelayStatus.detach_relay_outlet1 = "ENABLE";
                        }
                        if ((detachMode & 0x02) !== 0) {
                            datachRelayStatus.detach_relay_outlet2 = "ENABLE";
                        }
                        if ((detachMode & 0x04) !== 0) {
                            datachRelayStatus.detach_relay_outlet3 = "ENABLE";
                        }
                        return { detach_relay_mode: datachRelayStatus };
                    }
                },
            },
        ];
        const toZigbee = [
            {
                key: ["detach_relay_mode"],
                convertSet: async (entity, key, value, meta) => {
                    // logger.debug(`from zigbee 'key' ${key}`, NS);
                    const detachRelay1 = "detach_relay_outlet1";
                    // logger.debug(`from zigbee detachRelay1: ${value[detachRelay1 as keyof typeof value]}`, NS);
                    const detachRelay2 = "detach_relay_outlet2";
                    // logger.debug(`from zigbee detachRelay2: ${value[detachRelay2 as keyof typeof value]}`, NS);
                    const detachRelay3 = "detach_relay_outlet3";
                    // logger.debug(`from zigbee detachRelay3: ${value[detachRelay3 as keyof typeof value]}`, NS);
                    let detachRelayMask = 0;
                    if (value[detachRelay1] === "ENABLE") {
                        detachRelayMask |= 0x01;
                    }
                    else {
                        detachRelayMask &= ~0x01;
                    }
                    if (value[detachRelay2] === "ENABLE") {
                        detachRelayMask |= 0x02;
                    }
                    else {
                        detachRelayMask &= ~0x02;
                    }
                    if (value[detachRelay3] === "ENABLE") {
                        detachRelayMask |= 0x04;
                    }
                    else {
                        detachRelayMask &= ~0x04;
                    }
                    // logger.info(`from zigbee detachRelayMask: ${detachRelayMask}`, NS);
                    await entity.write(clusterName, { [attributeName]: detachRelayMask }, defaultResponseOptions);
                    return { state: { [key]: value } };
                },
                convertGet: async (entity, key, meta) => {
                    await entity.read(clusterName, [attributeName], defaultResponseOptions);
                },
            },
        ];
        return {
            exposes: [exposes],
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    buildOverloadProtectionPayload: (value, powerMaxLimit, currentMaxLimit) => {
        let maxCurrent = 1000 * Number(value.max_current ?? 0);
        const minCurrent = 1000 * Number(value.min_current ?? 0);
        const maxVoltage = 1000 * Number(value.max_voltage ?? 0);
        const minVoltage = 1000 * Number(value.min_voltage ?? 0);
        let maxPower = 1000 * Number(value.max_power ?? 0);
        const minPower = 1000 * Number(value.min_power ?? 0);
        const enableMinCurrent = value.enable_min_current;
        const enableMaxVoltage = value.enable_max_voltage;
        const enableMinVoltage = value.enable_min_voltage;
        const enableMinPower = value.enable_min_power;
        const payloadValue = new Uint8Array(30);
        let index = 0;
        payloadValue[index++] = 0;
        payloadValue[index++] = 0x04;
        payloadValue[index++] = 27;
        payloadValue[index++] = 1;
        payloadValue[index++] = 0;
        payloadValue[index++] = 1;
        if (maxCurrent === 0) {
            maxCurrent = currentMaxLimit * 1000;
        }
        payloadValue[index++] = maxCurrent & 0xff;
        payloadValue[index++] = (maxCurrent >> 8) & 0xff;
        payloadValue[index++] = (maxCurrent >> 16) & 0xff;
        payloadValue[index++] = (maxCurrent >> 24) & 0xff;
        if (enableMinCurrent === "ENABLE") {
            payloadValue[3] |= 2;
            payloadValue[index++] = minCurrent & 0xff;
            payloadValue[index++] = (minCurrent >> 8) & 0xff;
            payloadValue[index++] = (minCurrent >> 16) & 0xff;
            payloadValue[index++] = (minCurrent >> 24) & 0xff;
        }
        if (enableMaxVoltage === "ENABLE") {
            payloadValue[4] |= 1;
            payloadValue[index++] = maxVoltage & 0xff;
            payloadValue[index++] = (maxVoltage >> 8) & 0xff;
            payloadValue[index++] = (maxVoltage >> 16) & 0xff;
            payloadValue[index++] = (maxVoltage >> 24) & 0xff;
        }
        if (enableMinVoltage === "ENABLE") {
            payloadValue[4] |= 2;
            payloadValue[index++] = minVoltage & 0xff;
            payloadValue[index++] = (minVoltage >> 8) & 0xff;
            payloadValue[index++] = (minVoltage >> 16) & 0xff;
            payloadValue[index++] = (minVoltage >> 24) & 0xff;
        }
        if (maxPower === 0) {
            maxPower = powerMaxLimit * 1000;
        }
        payloadValue[index++] = maxPower & 0xff;
        payloadValue[index++] = (maxPower >> 8) & 0xff;
        payloadValue[index++] = (maxPower >> 16) & 0xff;
        payloadValue[index++] = (maxPower >> 24) & 0xff;
        if (enableMinPower === "ENABLE") {
            payloadValue[5] |= 2;
            payloadValue[index++] = minPower & 0xff;
            payloadValue[index++] = (minPower >> 8) & 0xff;
            payloadValue[index++] = (minPower >> 16) & 0xff;
            payloadValue[index++] = (minPower >> 24) & 0xff;
        }
        payloadValue[0] = index - 1;
        payloadValue[2] = payloadValue[0] - 2;
        if (payloadValue[3] === 3 && minCurrent >= maxCurrent) {
            throw new Error("Invalid input: maximum current must be greater than the minimum current ");
        }
        if (payloadValue[4] === 3 && minVoltage >= maxVoltage) {
            throw new Error("Invalid input: maximum voltage must be greater than the minimum voltage ");
        }
        if (payloadValue[5] === 3 && minPower >= maxPower) {
            throw new Error("Invalid input: maximum power must be greater than the minimum power ");
        }
        return payloadValue.slice(0, index);
    },
    overloadProtection: (powerMaxLimit, currentMaxLimit) => {
        const exposes = e
            .composite("overload_protection", "overload_protection", ea.ALL)
            .withDescription("Over load protection, max power and max current are required,other is optional")
            .withFeature(e
            .numeric("max_power", ea.SET)
            .withDescription("max power")
            .withUnit("W")
            .withValueMin(0.1)
            .withValueMax(powerMaxLimit)
            .withValueStep(0.1))
            .withFeature(e.binary("enable_min_power", ea.SET, "ENABLE", "DISABLE").withDescription("Enable/disable lower limit of power overload protection."))
            .withFeature(e
            .numeric("min_power", ea.SET)
            .withDescription("Lower limit of power overload protection")
            .withUnit("W")
            .withValueMin(0.1)
            .withValueMax(powerMaxLimit)
            .withValueStep(0.1))
            .withFeature(e
            .binary("enable_max_voltage", ea.SET, "ENABLE", "DISABLE")
            .withDescription("Enable/disable upper limit of voltage overload protection.."))
            .withFeature(e
            .numeric("max_voltage", ea.SET)
            .withDescription("Upper limit of voltage overload protection.")
            .withUnit("V")
            .withValueMin(165)
            .withValueMax(277)
            .withValueStep(1))
            .withFeature(e
            .binary("enable_min_voltage", ea.SET, "ENABLE", "DISABLE")
            .withDescription("Enable/disable lower limit of voltage overload protection."))
            .withFeature(e
            .numeric("min_voltage", ea.SET)
            .withDescription("Lower limit of voltage overload protection.")
            .withUnit("V")
            .withValueMin(165)
            .withValueMax(277)
            .withValueStep(1))
            .withFeature(e
            .numeric("max_current", ea.SET)
            .withDescription("Upper limit of current overload protection.")
            .withUnit("A")
            .withValueMin(0.1)
            .withValueMax(currentMaxLimit)
            .withValueStep(0.1))
            .withFeature(e
            .binary("enable_min_current", ea.SET, "ENABLE", "DISABLE")
            .withDescription("Enable/disable lower limit of current overload protection."))
            .withFeature(e
            .numeric("min_current", ea.SET)
            .withDescription("Lower limit of current overload protection.")
            .withUnit("A")
            .withValueMin(0.1)
            .withValueMax(currentMaxLimit)
            .withValueStep(0.1));
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    const attributeKey = 0x7003; // attr
                    if (attributeKey in msg.data) {
                        const rawData = msg.meta.rawData;
                        const dataStartIndex = 7;
                        let enableMaxCurrentBuffer = "DISABLE";
                        let enableMinCurrentBuffer = "DISABLE";
                        let enableMaxVoltageBuffer = "DISABLE";
                        let enableMinVoltageBuffer = "DISABLE";
                        let enableMinPowerBuffer = "DISABLE";
                        let enableMaxPowerBuffer = "DISABLE";
                        let maxCurrent = 0;
                        let minCurrent = 0;
                        let maxVoltage = 0;
                        let minVoltage = 0;
                        let maxActPower = 0;
                        let minActPower = 0;
                        const cfg_set_flag = rawData.readUInt8(1 + dataStartIndex);
                        let currentSetFlag = 0;
                        let voltageSetFlag = 0;
                        let actPowerSetFlag = 0;
                        let index = 3;
                        if (cfg_set_flag === 1) {
                            currentSetFlag = rawData.readUInt8(index + dataStartIndex);
                            index += 1;
                        }
                        else if (cfg_set_flag === 2) {
                            voltageSetFlag = rawData.readUInt8(index + dataStartIndex);
                            index += 1;
                        }
                        else if (cfg_set_flag === 3) {
                            actPowerSetFlag = rawData.readUInt8(index + dataStartIndex);
                            index += 1;
                        }
                        else if (cfg_set_flag === 4) {
                            currentSetFlag = rawData.readUInt8(index + dataStartIndex);
                            voltageSetFlag = rawData.readUInt8(index + 1 + dataStartIndex);
                            actPowerSetFlag = rawData.readUInt8(index + 2 + dataStartIndex);
                            index += 3;
                        }
                        if (currentSetFlag === 1) {
                            enableMaxCurrentBuffer = "ENABLE";
                        }
                        else if (currentSetFlag === 2) {
                            enableMinCurrentBuffer = "ENABLE";
                        }
                        else if (currentSetFlag === 3) {
                            enableMaxCurrentBuffer = "ENABLE";
                            enableMinCurrentBuffer = "ENABLE";
                        }
                        if (voltageSetFlag === 1) {
                            enableMaxVoltageBuffer = "ENABLE";
                        }
                        else if (voltageSetFlag === 2) {
                            enableMinVoltageBuffer = "ENABLE";
                        }
                        else if (voltageSetFlag === 3) {
                            enableMaxVoltageBuffer = "ENABLE";
                            enableMinVoltageBuffer = "ENABLE";
                        }
                        if (actPowerSetFlag === 1) {
                            enableMaxPowerBuffer = "ENABLE";
                        }
                        else if (actPowerSetFlag === 2) {
                            enableMinPowerBuffer = "ENABLE";
                        }
                        else if (actPowerSetFlag === 3) {
                            enableMaxPowerBuffer = "ENABLE";
                            enableMinPowerBuffer = "ENABLE";
                        }
                        if (enableMaxCurrentBuffer === "ENABLE") {
                            maxCurrent = rawData.readUint32LE(index + dataStartIndex) / 1000;
                            index += 4;
                        }
                        if (enableMinCurrentBuffer === "ENABLE") {
                            minCurrent = rawData.readUint32LE(index + dataStartIndex) / 1000;
                            index += 4;
                        }
                        if (enableMaxVoltageBuffer === "ENABLE") {
                            maxVoltage = rawData.readUint32LE(index + dataStartIndex) / 1000;
                            index += 4;
                        }
                        if (enableMinVoltageBuffer === "ENABLE") {
                            minVoltage = rawData.readUint32LE(index + dataStartIndex) / 1000;
                            index += 4;
                        }
                        if (enableMaxPowerBuffer === "ENABLE") {
                            maxActPower = rawData.readUint32LE(index + dataStartIndex) / 1000;
                            index += 4;
                        }
                        if (enableMinPowerBuffer === "ENABLE") {
                            minActPower = rawData.readUint32LE(index + dataStartIndex) / 1000;
                            index += 4;
                        }
                        return {
                            overload_protection: {
                                enable_max_voltage: enableMaxVoltageBuffer,
                                enable_min_current: enableMinCurrentBuffer,
                                enable_min_power: enableMinPowerBuffer,
                                enable_min_voltage: enableMinVoltageBuffer,
                                max_current: maxCurrent,
                                max_power: maxActPower,
                                max_voltage: maxVoltage,
                                min_current: minCurrent,
                                min_power: minActPower,
                                min_voltage: minVoltage,
                            },
                        };
                    }
                },
            },
        ];
        const toZigbee = [
            {
                key: ["overload_protection"],
                convertSet: async (entity, key, value, meta) => {
                    const payloadValue = sonoffExtend.buildOverloadProtectionPayload(value, powerMaxLimit, currentMaxLimit);
                    // Write the private overload-protection payload so the device stores concrete thresholds instead of leaving them unset.
                    await entity.write("customClusterEwelink", { [0x7003]: { value: payloadValue, type: 0x42 } }, defaultResponseOptions);
                    // Read back the private attribute immediately.
                    await entity.read("customClusterEwelink", [0x7003], defaultResponseOptions);
                    return { state: { [key]: value } };
                },
                convertGet: async (entity, key, meta) => {
                    await entity.read("customClusterEwelink", [0x7003], defaultResponseOptions);
                },
            },
        ];
        return {
            exposes: [exposes],
            toZigbee,
            fromZigbee,
            isModernExtend: true,
        };
    },
    swvznGenTimeCompatResponse: () => {
        const onEvent = [
            (event) => {
                if (event.type === "start" && !event.data.device.customReadResponse) {
                    event.data.device.customReadResponse = (frame, endpoint) => {
                        if (!frame.isCluster("genTime")) {
                            return false;
                        }
                        const { time, timeZone, localTime, dstShift } = (0, zigbee_herdsman_1.getTimeClusterAttributes)();
                        // XXX: we're replying to specific attributes, which could be incorrect (not based on the request attrIds)
                        endpoint
                            .readResponse("genTime", frame.header.transactionSequenceNumber, {
                            time,
                            timeZone,
                            localTime,
                            dstStart: 0, // The device's Zigbee behavior is a bit non-standard.
                            dstEnd: 0,
                            dstShift,
                        })
                            .catch((e) => {
                            logger_1.logger.warning(`SWV custom time response failed: ${e}`, NS);
                        });
                        return true;
                    };
                }
            },
        ];
        return {
            onEvent,
            isModernExtend: true,
        };
    },
    rainDelayEndDatetime: () => {
        const exposes = [e.text("rain_delay_end_datetime", ea.STATE).withDescription("User triggered delay end time.")];
        const toZigbee = [];
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (msg.data.rainDelayEndDatetime === undefined || msg.data.rainDelayEndDatetime === null)
                        return;
                    const value = msg.data.rainDelayEndDatetime;
                    utils.assertNumber(value);
                    // When the set end time is reached, the device will report 0
                    if (value === 0) {
                        return { rain_delay_end_datetime: "" };
                    }
                    const offsetSeconds = (0, sonoff_1.getRuntimeLocalOffsetSeconds)(value + sonoff_1.YEAR_2000_IN_UTC);
                    const utcSeconds = (0, sonoff_1.deviceLocal2000ToUTCSeconds)(value, offsetSeconds);
                    return {
                        rain_delay_end_datetime: (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(utcSeconds, offsetSeconds),
                    };
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    valveAbnormalState: (dualChannel = false) => {
        const maxMask = dualChannel ? 0b111111 : 0b1111;
        const getValveAbnormalStates = (value) => {
            const states = [];
            if ((value & 0b000001) !== 0)
                states.push(dualChannel ? "water_shortage_channel_1" : "water_shortage");
            if ((value & 0b000010) !== 0)
                states.push("water_leakage");
            if ((value & 0b001000) !== 0)
                states.push(dualChannel ? "fail_safe_channel_1" : "fail_safe");
            if (dualChannel && (value & 0b010000) !== 0)
                states.push("water_shortage_channel_2");
            if (dualChannel && (value & 0b100000) !== 0)
                states.push("fail_safe_channel_2");
            return states;
        };
        // Generate all combinations from the defined state bits
        const allCombinations = ["normal"];
        for (let i = 0b0001; i <= maxMask; i++) {
            const state = getValveAbnormalStates(i).join(",");
            if (state && !allCombinations.includes(state)) {
                allCombinations.push(state);
            }
        }
        const exposes = [e.enum("valve_abnormal_state", ea.STATE, allCombinations).withDescription("Valve abnormal state")];
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (msg.data.valveAbnormalState === undefined)
                        return;
                    const value = msg.data.valveAbnormalState;
                    utils.assertNumber(value);
                    if (value === 0b0000) {
                        return { valve_abnormal_state: "normal" };
                    }
                    const states = getValveAbnormalStates(value);
                    if (states.length === 0)
                        return;
                    return {
                        valve_abnormal_state: states.join(","),
                    };
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee: [],
            isModernExtend: true,
        };
    },
    manualDefaultSettings: (hasFlowMeter) => {
        const exposes = (device) => {
            const expose = e
                .composite("manual_default_settings", "manual_default_settings", ea.ALL)
                .withDescription("Single irrigation settings")
                .withFeature(e.numeric("irrigation_duration", ea.ALL).withValueMin(1).withValueMax(719).withUnit("min").withDescription("Irrigation duration"));
            if (hasFlowMeter) {
                expose.withFeature(e.enum("irrigation_mode", ea.ALL, ["duration", "capacity"]).withDescription("Irrigation mode: duration or capacity"));
                if (!(utils.isDummyDevice(device) || SWVZNEFirmwareSupportsUnifiedImperialGallon(device))) {
                    expose.withFeature(e.enum("irrigation_amount_unit", ea.ALL, ["us_gallon", "liter"]).withDescription("Capacity unit"));
                }
                expose
                    .withFeature(e.numeric("irrigation_amount", ea.ALL).withValueMin(0).withValueMax(10000).withDescription("Irrigation volume"))
                    .withFeature(e.numeric("fail_safe", ea.ALL).withValueMin(0).withValueMax(719).withUnit("min").withDescription("Safety protection timeout"));
            }
            return [expose];
        };
        const modeMap = {
            duration: 0,
            capacity: 1,
        };
        const modeMapReverse = {
            0: "duration",
            1: "capacity",
        };
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (!msg.data.manualDefaultSettings)
                        return;
                    const array = new Uint8Array(msg.data.manualDefaultSettings);
                    if (array.length < 12) {
                        logger_1.logger.error(`manualDefaultSettings invalid length=${array.length}, expected>=12`, NS);
                        return;
                    }
                    const mode = array[0];
                    const totalDuration = (array[1] << 8) | array[2];
                    const irrigationDuration = (array[3] << 8) | array[4];
                    const capacityUnit = array[7];
                    const irrigationVolume = (array[8] << 8) | array[9];
                    const safetyTimeoutLimit = (array[10] << 8) | array[11];
                    const manualDefaultSettings = {
                        irrigation_duration: irrigationDuration || totalDuration,
                    };
                    if (hasFlowMeter) {
                        manualDefaultSettings.irrigation_mode = modeMapReverse[mode] ?? "duration";
                        const irrigationAmountUnit = SWVZNEIrrigationAmountUnitFromDeviceCode(capacityUnit, meta.device);
                        if (irrigationAmountUnit) {
                            manualDefaultSettings.irrigation_amount_unit = irrigationAmountUnit;
                        }
                        const waterFlowUnit = SWVZNENormalizeWaterFlowUnit(meta.state.water_flow_unit);
                        const irrigationAmountLiters = irrigationAmountUnit && irrigationVolume * SWVZNELitersPerWaterFlowUnit[irrigationAmountUnit];
                        manualDefaultSettings.irrigation_amount =
                            irrigationAmountLiters !== undefined && waterFlowUnit
                                ? Math.round(irrigationAmountLiters / SWVZNELitersPerWaterFlowUnit[waterFlowUnit])
                                : irrigationVolume;
                        if (SWVZNEFirmwareSupportsUnifiedImperialGallon(meta.device) && irrigationAmountLiters !== undefined) {
                            manualDefaultSettings.irrigation_amount_real_liter = irrigationAmountLiters;
                        }
                        manualDefaultSettings.fail_safe = safetyTimeoutLimit;
                    }
                    if (SWVZNEFirmwareSupportsUnifiedImperialGallon(meta.device)) {
                        delete manualDefaultSettings.irrigation_amount_unit;
                    }
                    return {
                        manual_default_settings: manualDefaultSettings,
                    };
                },
            },
        ];
        const toZigbee = [
            {
                key: ["manual_default_settings"],
                convertSet: async (entity, key, value, meta) => {
                    utils.assertObject(value, key);
                    if (hasFlowMeter && (typeof value.irrigation_mode !== "string" || modeMap[value.irrigation_mode] === undefined)) {
                        logger_1.logger.error("manual_default_settings invalid irrigation_mode, expected one of: duration, capacity.", NS);
                        return;
                    }
                    let capacityUnit = SWVZNELegacyIrrigationAmountUnitCodeByName.liter;
                    if (hasFlowMeter) {
                        let unit = value.irrigation_amount_unit;
                        if (unit === undefined && SWVZNEFirmwareSupportsUnifiedImperialGallon(meta.device)) {
                            unit = meta.state.water_flow_unit;
                        }
                        const parsedCapacityUnit = SWVZNEIrrigationAmountUnitToDeviceCode(unit ?? "liter", meta.device);
                        if (parsedCapacityUnit === undefined) {
                            logger_1.logger.error("manual_default_settings invalid irrigation_amount_unit, expected one of: us_gallon, liter.", NS);
                            return;
                        }
                        capacityUnit = parsedCapacityUnit;
                    }
                    const parseRequiredInt = (fieldName) => {
                        const parsed = Number(value[fieldName]);
                        if (!Number.isInteger(parsed)) {
                            logger_1.logger.error(`manual_default_settings invalid ${fieldName}, expected integer.`, NS);
                            return;
                        }
                        return parsed;
                    };
                    const irrigationDuration = parseRequiredInt("irrigation_duration");
                    const irrigationInterval = 10;
                    const irrigationVolume = hasFlowMeter ? parseRequiredInt("irrigation_amount") : 10;
                    const safetyTimeoutLimit = hasFlowMeter ? parseRequiredInt("fail_safe") : 10;
                    if (irrigationDuration === undefined || irrigationVolume === undefined || safetyTimeoutLimit === undefined) {
                        return;
                    }
                    const mode = hasFlowMeter ? modeMap[value.irrigation_mode] : modeMap.duration;
                    const array = new Uint8Array(12);
                    array[0] = mode;
                    array[1] = (irrigationDuration >> 8) & 0xff;
                    array[2] = irrigationDuration & 0xff;
                    array[3] = (irrigationDuration >> 8) & 0xff;
                    array[4] = irrigationDuration & 0xff;
                    array[5] = (irrigationInterval >> 8) & 0xff;
                    array[6] = irrigationInterval & 0xff;
                    array[7] = capacityUnit;
                    array[8] = (irrigationVolume >> 8) & 0xff;
                    array[9] = irrigationVolume & 0xff;
                    array[10] = (safetyTimeoutLimit >> 8) & 0xff;
                    array[11] = safetyTimeoutLimit & 0xff;
                    await entity.write("customClusterEwelink", {
                        [0x501d]: {
                            value: {
                                elementType: 0x20,
                                elements: array,
                            },
                            type: 0x48,
                        },
                    }, utils.getOptions(meta.mapped, entity));
                    const state = { ...value };
                    if (SWVZNEFirmwareSupportsUnifiedImperialGallon(meta.device)) {
                        const irrigationAmountUnit = SWVZNEIrrigationAmountUnitFromDeviceCode(capacityUnit, meta.device);
                        if (hasFlowMeter && irrigationAmountUnit) {
                            state.irrigation_amount_real_liter = irrigationVolume * SWVZNELitersPerWaterFlowUnit[irrigationAmountUnit];
                        }
                        delete state.irrigation_amount_unit;
                    }
                    return { state: { manual_default_settings: state } };
                },
                convertGet: async (entity, key, meta) => {
                    await entity.read("customClusterEwelink", ["manualDefaultSettings"]);
                },
            },
        ];
        return {
            exposes: [exposes],
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    seasonalWateringAdjustment: () => {
        const months = ["january", "february", "march", "april", "may", "june", "july", "august", "september", "october", "november", "december"];
        let exposesComposite = e
            .composite("seasonal_watering_adjustment", "seasonal_watering_adjustment", ea.ALL)
            .withDescription("Monthly watering adjustment multiplier (1.0 = 100%, 2.0 = 200%)");
        for (const month of months) {
            exposesComposite = exposesComposite.withFeature(e.numeric(month, ea.ALL).withValueMin(0.1).withValueMax(2).withValueStep(0.1).withDescription(`Adjustment multiplier for ${month}`));
        }
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (!msg.data.seasonalWateringAdjustment)
                        return;
                    const array = new Uint8Array(msg.data.seasonalWateringAdjustment);
                    if (array.length < 12) {
                        logger_1.logger.error(`seasonalWateringAdjustment invalid length=${array.length}, expected>=12`, NS);
                        return;
                    }
                    const result = {};
                    for (let i = 0; i < 12; i++) {
                        result[months[i]] = array[i] / 10;
                    }
                    return {
                        seasonal_watering_adjustment: result,
                    };
                },
            },
        ];
        const toZigbee = [
            {
                key: ["seasonal_watering_adjustment"],
                convertSet: async (entity, key, value, meta) => {
                    utils.assertObject(value, key);
                    const array = new Uint8Array(12);
                    for (let i = 0; i < 12; i++) {
                        const rawMonthValue = Number(value[months[i]]);
                        const monthValue = Number.isFinite(rawMonthValue) ? rawMonthValue : 1;
                        const boundedMonthValue = Math.min(2, Math.max(0.1, monthValue));
                        array[i] = Math.round(boundedMonthValue * 10);
                    }
                    await entity.write("customClusterEwelink", {
                        [0x501e]: {
                            value: {
                                elementType: 0x20,
                                elements: array,
                            },
                            type: 0x48,
                        },
                    }, utils.getOptions(meta.mapped, entity));
                    return {
                        state: {
                            [key]: value,
                        },
                    };
                },
                convertGet: async (entity, key, meta) => {
                    await entity.read("customClusterEwelink", ["seasonalWateringAdjustment"]);
                },
            },
        ];
        return {
            exposes: [exposesComposite],
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    irrigationScheduleStatus: (hasFlowMeter, endpointNames) => {
        const expose = (device) => {
            const baseExpose = e
                .composite("irrigation_schedule_status", "irrigation_schedule_status", ea.STATE_GET)
                .withDescription("Irrigation schedule execution status")
                .withFeature(e.enum("schedule_status", ea.STATE, ["start", "end", "running", "standby"]).withDescription("Schedule status"))
                .withFeature(e.numeric("schedule_index", ea.STATE).withDescription("Schedule index"))
                .withFeature(e.enum("schedule_type", ea.STATE, ["automatic", "manual"]).withDescription("Schedule type"))
                .withFeature(e
                .enum("irrigation_mode", ea.STATE, hasFlowMeter ? ["duration", "capacity", "duration_with_interval"] : ["duration", "duration_with_interval"])
                .withDescription("Irrigation mode"))
                .withFeature(e.text("start_time", ea.STATE).withDescription("Schedule start time"))
                .withFeature(e.text("expected_end_time", ea.STATE).withDescription("Expected end time"))
                .withFeature(e.text("actual_end_time", ea.STATE).withDescription("Actual end time"));
            if (hasFlowMeter) {
                const unitValues = utils.isDummyDevice(device) || SWVZNEFirmwareSupportsUnifiedImperialGallon(device)
                    ? ["us_gallon", "liter", "imperial_gallon"]
                    : ["us_gallon", "liter"];
                baseExpose.withFeature(e.enum("irrigation_amount_unit", ea.STATE, unitValues).withDescription("Irrigation amount unit"));
                baseExpose
                    .withFeature(e.numeric("expected_irrigation_amount", ea.STATE).withDescription("Expected irrigation amount"))
                    .withFeature(e.numeric("actual_irrigation_amount", ea.STATE).withDescription("Actual irrigation amount"));
            }
            return exposeCompositeEndpoints(baseExpose, endpointNames);
        };
        const scheduleStatusMap = {
            start: 0x00,
            end: 0x01,
            running: 0x02,
            standby: 0x03,
        };
        const scheduleStatusMapReverse = {
            [0x00]: "start",
            [0x01]: "end",
            [0x02]: "running",
            [0x03]: "standby",
        };
        const modeMap = {
            [0x00]: "duration",
            [0x01]: "capacity",
            [0x02]: "duration_with_interval",
        };
        const scheduleTypeMap = {
            [0x00]: "automatic",
            [0x01]: "manual",
        };
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (!msg.data.irrigationScheduleStatus)
                        return;
                    if (endpointNames) {
                        const endpointName = utils.getKey(model.endpoint?.(meta.device) ?? {}, msg.endpoint.ID);
                        if (!endpointName || !endpointNames.includes(endpointName))
                            return;
                    }
                    const property = utils.postfixWithEndpointName("irrigation_schedule_status", msg, model, meta);
                    const array = new Uint8Array(msg.data.irrigationScheduleStatus);
                    const scheduleStatus = array[0];
                    const scheduleIndex = array[1];
                    const isStartOrStandby = scheduleStatus === scheduleStatusMap.start || scheduleStatus === scheduleStatusMap.standby;
                    const scheduleType = scheduleTypeMap[array[2]];
                    const scheduleMode = array[3];
                    const offsetSeconds = (0, sonoff_1.getRuntimeLocalOffsetSeconds)(Math.floor(Date.now() / 1000));
                    const toIsoString = (deviceSeconds) => {
                        const utcSeconds = (0, sonoff_1.deviceLocal2000ToUTCSeconds)(deviceSeconds, offsetSeconds);
                        return (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(utcSeconds, offsetSeconds);
                    };
                    // Start or Standby: 15 bytes
                    if (isStartOrStandby) {
                        const minLength = 15;
                        if (array.length < minLength) {
                            logger_1.logger.error(`irrigationScheduleStatus invalid length=${array.length}, expected>=${minLength} for start/standby`, NS);
                            return;
                        }
                        const expectedStartTime = (array[4] << 24) | (array[5] << 16) | (array[6] << 8) | array[7];
                        const expectedEndTime = (array[8] << 24) | (array[9] << 16) | (array[10] << 8) | array[11];
                        const volumeUnit = array[12];
                        const expectedVolume = (array[13] << 8) | array[14];
                        const irrigationAmountUnit = SWVZNEIrrigationAmountUnitFromDeviceCode(volumeUnit, meta.device);
                        return {
                            [property]: {
                                schedule_status: scheduleStatusMapReverse[scheduleStatus],
                                schedule_index: scheduleIndex,
                                ...(scheduleType ? { schedule_type: scheduleType } : {}),
                                irrigation_mode: hasFlowMeter
                                    ? (modeMap[scheduleMode] ?? "duration")
                                    : modeMap[scheduleMode] === "duration_with_interval"
                                        ? "duration_with_interval"
                                        : "duration",
                                start_time: toIsoString(expectedStartTime),
                                expected_end_time: toIsoString(expectedEndTime),
                                actual_end_time: null,
                                ...(hasFlowMeter
                                    ? {
                                        ...(irrigationAmountUnit ? { irrigation_amount_unit: irrigationAmountUnit } : {}),
                                        expected_irrigation_amount: expectedVolume,
                                        actual_irrigation_amount: null,
                                    }
                                    : {}),
                            },
                        };
                    }
                    // End or Running: 21 bytes
                    if (scheduleStatus === scheduleStatusMap.end || scheduleStatus === scheduleStatusMap.running) {
                        const minLength = 21;
                        if (array.length < minLength) {
                            logger_1.logger.error(`irrigationScheduleStatus invalid length=${array.length}, expected>=${minLength} for end/running`, NS);
                            return;
                        }
                        const expectedStartTime = (array[4] << 24) | (array[5] << 16) | (array[6] << 8) | array[7];
                        const expectedEndTime = (array[8] << 24) | (array[9] << 16) | (array[10] << 8) | array[11];
                        const actualEndTime = (array[12] << 24) | (array[13] << 16) | (array[14] << 8) | array[15];
                        const volumeUnit = array[16];
                        const expectedVolume = (array[17] << 8) | array[18];
                        const actualVolume = (array[19] << 8) | array[20];
                        const irrigationAmountUnit = SWVZNEIrrigationAmountUnitFromDeviceCode(volumeUnit, meta.device);
                        return {
                            [property]: {
                                schedule_status: scheduleStatusMapReverse[scheduleStatus] ?? "end",
                                schedule_index: scheduleIndex,
                                ...(scheduleType ? { schedule_type: scheduleType } : {}),
                                irrigation_mode: hasFlowMeter
                                    ? (modeMap[scheduleMode] ?? "duration")
                                    : modeMap[scheduleMode] === "duration_with_interval"
                                        ? "duration_with_interval"
                                        : "duration",
                                start_time: toIsoString(expectedStartTime),
                                expected_end_time: toIsoString(expectedEndTime),
                                actual_end_time: toIsoString(actualEndTime),
                                ...(hasFlowMeter
                                    ? {
                                        ...(irrigationAmountUnit ? { irrigation_amount_unit: irrigationAmountUnit } : {}),
                                        expected_irrigation_amount: expectedVolume,
                                        actual_irrigation_amount: actualVolume,
                                    }
                                    : {}),
                            },
                        };
                    }
                },
            },
        ];
        const toZigbee = [
            {
                key: ["irrigation_schedule_status"],
                endpoints: endpointNames,
                convertGet: async (entity, key, meta) => {
                    await utils
                        .determineEndpoint(entity, meta, "customClusterEwelink")
                        .read("customClusterEwelink", ["irrigationScheduleStatus"]);
                },
            },
        ];
        return {
            exposes: [expose],
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    valveAlarmSettings: () => {
        const exposes = e
            .composite("valve_alarm_settings", "valve_alarm_settings", ea.ALL)
            .withDescription("Valve alarm settings")
            .withFeature(e.binary("enable_alarm_water_shortage", ea.ALL, true, false).withDescription("Water shortage alarm"))
            .withFeature(e.binary("enable_alarm_water_leak", ea.ALL, true, false).withDescription("Water leak alarm"))
            .withFeature(e.binary("enable_water_shortage_auto_close", ea.ALL, true, false).withDescription("Auto close valve on water shortage"))
            .withFeature(e
            .numeric("alarm_water_shortage_duration", ea.ALL)
            .withValueMin(1)
            .withValueMax(10)
            .withUnit("min")
            .withDescription("Water shortage trigger alarm duration"))
            .withFeature(e
            .numeric("alarm_water_leak_duration", ea.ALL)
            .withValueMin(1)
            .withValueMax(3)
            .withUnit("min")
            .withDescription("Water leak trigger alarm duration"));
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (!msg.data.valveAlarmSettings)
                        return;
                    const array = new Uint8Array(msg.data.valveAlarmSettings);
                    if (array.length < 4) {
                        logger_1.logger.error(`valveAlarmSettings invalid length=${array.length}, expected>=4`, NS);
                        return;
                    }
                    const enableBits = array[0];
                    return {
                        valve_alarm_settings: {
                            enable_alarm_water_shortage: !!(enableBits & 0b00001),
                            enable_alarm_water_leak: !!(enableBits & 0b00010),
                            enable_water_shortage_auto_close: !!(enableBits & 0b01000),
                            alarm_water_shortage_duration: array[1],
                            alarm_water_leak_duration: array[2],
                        },
                    };
                },
            },
        ];
        const toZigbee = [
            {
                key: ["valve_alarm_settings"],
                convertSet: async (entity, key, value, meta) => {
                    utils.assertObject(value, key);
                    const state = {
                        enable_alarm_water_shortage: !!value.enable_alarm_water_shortage,
                        enable_alarm_water_leak: !!value.enable_alarm_water_leak,
                        enable_water_shortage_auto_close: !!value.enable_water_shortage_auto_close,
                        alarm_water_shortage_duration: Number(value.alarm_water_shortage_duration) || 0,
                        alarm_water_leak_duration: Number(value.alarm_water_leak_duration) || 0,
                    };
                    let enableBits = 0;
                    if (state.enable_alarm_water_shortage)
                        enableBits |= 0b00001;
                    if (state.enable_alarm_water_leak)
                        enableBits |= 0b00010;
                    if (state.enable_water_shortage_auto_close)
                        enableBits |= 0b01000;
                    const array = new Uint8Array(4);
                    array[0] = enableBits;
                    array[1] = state.alarm_water_shortage_duration;
                    array[2] = state.alarm_water_leak_duration;
                    array[3] = 0;
                    await entity.write("customClusterEwelink", {
                        [0x5020]: {
                            value: {
                                elementType: 0x20,
                                elements: array,
                            },
                            type: 0x48,
                        },
                    }, utils.getOptions(meta.mapped, entity));
                    return {
                        state: {
                            [key]: state,
                        },
                    };
                },
                convertGet: async (entity, key, meta) => {
                    await entity.read("customClusterEwelink", ["valveAlarmSettings"]);
                },
            },
        ];
        return {
            exposes: [exposes],
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    waterFlowUnit: () => {
        const expose = (device) => utils.isDummyDevice(device) || SWVZNEFirmwareSupportsUnifiedImperialGallon(device)
            ? [
                e
                    .enum("water_flow_unit", ea.ALL, ["liter", "us_gallon", "imperial_gallon"])
                    .withDescription("Unified water flow unit")
                    .withCategory("config"),
            ]
            : [];
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (msg.data.unitOfWaterFlow === undefined)
                        return;
                    const value = msg.data.unitOfWaterFlow;
                    utils.assertNumber(value);
                    const waterFlowUnit = SWVZNEUnifiedWaterFlowUnitByCode[value];
                    if (!waterFlowUnit)
                        return;
                    const settings = meta.state.manual_default_settings;
                    let manualDefaultSettings;
                    if (utils.isObject(settings) && typeof settings.irrigation_amount === "number") {
                        const sourceUnit = SWVZNENormalizeWaterFlowUnit(settings.irrigation_amount_unit ?? meta.state.water_flow_unit);
                        if (sourceUnit && sourceUnit !== waterFlowUnit) {
                            const irrigationAmountLiters = typeof settings.irrigation_amount_real_liter === "number"
                                ? settings.irrigation_amount_real_liter
                                : settings.irrigation_amount * SWVZNELitersPerWaterFlowUnit[sourceUnit];
                            manualDefaultSettings = {
                                ...settings,
                                irrigation_amount: Math.round(irrigationAmountLiters / SWVZNELitersPerWaterFlowUnit[waterFlowUnit]),
                                irrigation_amount_real_liter: irrigationAmountLiters,
                            };
                            delete manualDefaultSettings.irrigation_amount_unit;
                        }
                    }
                    return {
                        water_flow_unit: waterFlowUnit,
                        ...(manualDefaultSettings ? { manual_default_settings: manualDefaultSettings } : {}),
                    };
                },
            },
        ];
        const toZigbee = [
            {
                key: ["water_flow_unit"],
                convertSet: async (entity, key, value, meta) => {
                    const device = meta.device;
                    if (!device) {
                        logger_1.logger.error("water_flow_unit cannot be set: meta.device is undefined", NS);
                        return;
                    }
                    if (!SWVZNEFirmwareSupportsUnifiedImperialGallon(device)) {
                        const minVersion = device.modelID === "SWV-ZF2" ? "1.0.9" : "1.1.0";
                        logger_1.logger.warning(`water_flow_unit is only supported by SWV firmware >= ${minVersion}, skip writing unitOfWaterFlow.`, NS);
                        return;
                    }
                    const normalizedUnit = SWVZNENormalizeWaterFlowUnit(value);
                    if (!normalizedUnit) {
                        logger_1.logger.error("water_flow_unit invalid value, expected one of: liter, us_gallon, imperial_gallon.", NS);
                        return;
                    }
                    const waterFlowUnitCode = SWVZNEUnifiedWaterFlowUnitCodeByName[normalizedUnit];
                    await entity.write("customClusterEwelink", { unitOfWaterFlow: waterFlowUnitCode }, utils.getOptions(meta.mapped, entity));
                    const settings = meta.state.manual_default_settings;
                    let manualDefaultSettings;
                    if (utils.isObject(settings) && typeof settings.irrigation_amount === "number") {
                        const sourceUnit = SWVZNENormalizeWaterFlowUnit(settings.irrigation_amount_unit ?? meta.state.water_flow_unit);
                        if (sourceUnit && sourceUnit !== normalizedUnit) {
                            const irrigationAmountLiters = typeof settings.irrigation_amount_real_liter === "number"
                                ? settings.irrigation_amount_real_liter
                                : settings.irrigation_amount * SWVZNELitersPerWaterFlowUnit[sourceUnit];
                            manualDefaultSettings = {
                                ...settings,
                                irrigation_amount: Math.round(irrigationAmountLiters / SWVZNELitersPerWaterFlowUnit[normalizedUnit]),
                                irrigation_amount_real_liter: irrigationAmountLiters,
                            };
                            delete manualDefaultSettings.irrigation_amount_unit;
                        }
                    }
                    return {
                        state: {
                            water_flow_unit: normalizedUnit,
                            ...(manualDefaultSettings ? { manual_default_settings: manualDefaultSettings } : {}),
                        },
                    };
                },
                convertGet: async (entity, key, meta) => {
                    if (!SWVZNEFirmwareSupportsUnifiedImperialGallon(meta.device))
                        return;
                    await entity.read("customClusterEwelink", ["unitOfWaterFlow"]);
                },
            },
        ];
        return {
            exposes: [expose],
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    readSWVZFRecord: (hasFlowMeter, dualChannel = false) => {
        const channelCount = dualChannel ? 2 : 1;
        const clusterName = "customClusterEwelink";
        const commandName = "readRecord";
        const exposes = [
            e.text("24_hours_records", ea.STATE),
            e.text("30_days_records", ea.STATE),
            e.text("180_days_records", ea.STATE),
            e
                .composite("read_swvzf_records", "read_swvzf_records", ea.STATE_SET)
                .withDescription(hasFlowMeter
                ? "Read irrigation water volume and duration in the past 24 hours, 30 days, and 6 months."
                : "Read irrigation duration in the past 24 hours, 30 days, and 6 months.")
                .withFeature(e.enum("type", ea.SET, ["24_hours", "30_days", "6_months"]).withDescription("Reading type"))
                .withFeature(e.text("time_start", ea.SET).withDescription("Start time in ISO format with timezone (e.g. YYYY-MM-DDTHH:mm:ss+08:00)"))
                .withFeature(e.text("time_end", ea.SET).withDescription("End time in ISO format with timezone (e.g. YYYY-MM-DDTHH:mm:ss+08:00)"))
                .withLabel("Read irrigation history"),
        ];
        const normalizeUtcEpochSeconds = (input, label) => {
            if (typeof input !== "string") {
                logger_1.logger.error(`read_swvzf_records invalid ${label}: expected ISO 8601 string.`, NS);
                return;
            }
            const seconds = (0, sonoff_1.parseIsoWithOffsetToUtcSeconds)(input);
            if (seconds === undefined) {
                logger_1.logger.error(`read_swvzf_records invalid ${label}: expected ISO 8601 datetime with timezone offset (Z or ±HH:mm).`, NS);
                return;
            }
            return seconds;
        };
        const parseHistoryRecords = (mode, recordData, args) => {
            const records = [];
            const recordByteLength = mode === "24_hours" ? 3 : 5;
            const intervalByteLength = recordByteLength * channelCount;
            const count = Math.floor(recordData.length / intervalByteLength);
            const startSec = args.startSec;
            const dayOffset = args.dayOffset ?? 0;
            const createHistoryRecord = (duration, start, end, volume, channel) => {
                const record = { duration, start, end };
                if (channel) {
                    record.channel = channel;
                }
                if (hasFlowMeter) {
                    record.volume = volume;
                }
                return record;
            };
            if (mode === "24_hours") {
                let startMs = startSec * 1000;
                for (let i = 0; i < count; i++) {
                    const endMs = startMs + 3600 * 1000;
                    const start = (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(Math.floor(startMs / 1000), args.offsetSeconds);
                    const end = (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(Math.floor(endMs / 1000), args.offsetSeconds);
                    if (channelCount === 1) {
                        const index = i * 3;
                        const duration = recordData[index];
                        const volume = (recordData[index + 1] << 8) + recordData[index + 2];
                        records.push(createHistoryRecord(duration, start, end, volume));
                    }
                    else if (channelCount === 2) {
                        const channel1Index = i * intervalByteLength;
                        const channel1Duration = recordData[channel1Index];
                        const channel1Volume = (recordData[channel1Index + 1] << 8) + recordData[channel1Index + 2];
                        records.push(createHistoryRecord(channel1Duration, start, end, channel1Volume, "1"));
                        const channel2Index = channel1Index + recordByteLength;
                        const channel2Duration = recordData[channel2Index];
                        const channel2Volume = (recordData[channel2Index + 1] << 8) + recordData[channel2Index + 2];
                        records.push(createHistoryRecord(channel2Duration, start, end, channel2Volume, "2"));
                    }
                    startMs = endMs;
                }
                return records;
            }
            if (mode === "30_days") {
                let startMs = (startSec + dayOffset * 86400) * 1000;
                for (let i = 0; i < count; i++) {
                    const endMs = startMs + 86400 * 1000;
                    const start = (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(Math.floor(startMs / 1000), args.offsetSeconds);
                    const end = (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(Math.floor(endMs / 1000), args.offsetSeconds);
                    if (channelCount === 1) {
                        const index = i * 5;
                        const duration = (recordData[index] << 8) + recordData[index + 1];
                        const volume = (recordData[index + 2] << 16) + (recordData[index + 3] << 8) + recordData[index + 4];
                        records.push(createHistoryRecord(duration, start, end, volume));
                    }
                    else if (channelCount === 2) {
                        const channel1Index = i * intervalByteLength;
                        const channel1Duration = (recordData[channel1Index] << 8) + recordData[channel1Index + 1];
                        const channel1Volume = (recordData[channel1Index + 2] << 16) + (recordData[channel1Index + 3] << 8) + recordData[channel1Index + 4];
                        records.push(createHistoryRecord(channel1Duration, start, end, channel1Volume, "1"));
                        const channel2Index = channel1Index + recordByteLength;
                        const channel2Duration = (recordData[channel2Index] << 8) + recordData[channel2Index + 1];
                        const channel2Volume = (recordData[channel2Index + 2] << 16) + (recordData[channel2Index + 3] << 8) + recordData[channel2Index + 4];
                        records.push(createHistoryRecord(channel2Duration, start, end, channel2Volume, "2"));
                    }
                    startMs = endMs;
                }
                return records;
            }
            if (mode === "6_months") {
                let intervalStartSec = startSec;
                for (let i = 0; i < count; i++) {
                    const intervalEndSec = (0, sonoff_1.shiftUtcSecondsByOffsetMonths)(intervalStartSec, 1, args.offsetSeconds);
                    const start = (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(intervalStartSec, args.offsetSeconds);
                    const end = (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(intervalEndSec, args.offsetSeconds);
                    if (channelCount === 1) {
                        const index = i * 5;
                        const duration = (recordData[index] << 8) + recordData[index + 1];
                        const volume = (recordData[index + 2] << 16) + (recordData[index + 3] << 8) + recordData[index + 4];
                        records.push(createHistoryRecord(duration, start, end, volume));
                    }
                    else if (channelCount === 2) {
                        const channel1Index = i * intervalByteLength;
                        const channel1Duration = (recordData[channel1Index] << 8) + recordData[channel1Index + 1];
                        const channel1Volume = (recordData[channel1Index + 2] << 16) + (recordData[channel1Index + 3] << 8) + recordData[channel1Index + 4];
                        records.push(createHistoryRecord(channel1Duration, start, end, channel1Volume, "1"));
                        const channel2Index = channel1Index + recordByteLength;
                        const channel2Duration = (recordData[channel2Index] << 8) + recordData[channel2Index + 1];
                        const channel2Volume = (recordData[channel2Index + 2] << 16) + (recordData[channel2Index + 3] << 8) + recordData[channel2Index + 4];
                        records.push(createHistoryRecord(channel2Duration, start, end, channel2Volume, "2"));
                    }
                    intervalStartSec = intervalEndSec;
                }
                return records;
            }
            return records;
        };
        const cacheMultiPacketRecords = (ieeeAddr, recordIndex, records, expectedPacketCount, stateKey, subCmd, now) => {
            const oldCache = swvzfRespCache[ieeeAddr];
            const isCacheExpire = !oldCache || now - oldCache.updatedAt > swvzfCacheExpireTime;
            const newCache = isCacheExpire ? { packets: {}, updatedAt: now } : oldCache;
            newCache.packets[recordIndex] = records;
            newCache.updatedAt = now;
            swvzfRespCache[ieeeAddr] = newCache;
            const hasAll = Array.from({ length: expectedPacketCount }).every((_, index) => newCache.packets[index] !== undefined);
            if (!hasAll)
                return;
            const combined = Array.from({ length: expectedPacketCount }, (_, index) => newCache.packets[index] ?? []).flat();
            delete swvzfRespCache[ieeeAddr];
            if (swvzfReqCache[ieeeAddr]) {
                delete swvzfReqCache[ieeeAddr][subCmd];
            }
            return { [stateKey]: combined };
        };
        const toZigbee = [
            {
                key: ["read_swvzf_records"],
                convertSet: async (entity, key, value, meta) => {
                    utils.assertObject(value, key);
                    const type = value?.type;
                    if (!["24_hours", "30_days", "6_months"].includes(type)) {
                        logger_1.logger.error(`read_swvzf_records invalid type: ${type}`, NS);
                        return;
                    }
                    if (value?.time_start === undefined || value?.time_end === undefined) {
                        logger_1.logger.error("read_swvzf_records requires time_start and time_end", NS);
                        return;
                    }
                    const startUtcSec = normalizeUtcEpochSeconds(value.time_start, "time_start");
                    const endUtcSec = normalizeUtcEpochSeconds(value.time_end, "time_end");
                    if (startUtcSec === undefined || endUtcSec === undefined) {
                        return;
                    }
                    const offsetSeconds = (0, sonoff_1.getRuntimeLocalOffsetSeconds)(Math.floor(Date.now() / 1000));
                    const startDeviceSec = (0, sonoff_1.utcToDeviceLocal2000Seconds)(startUtcSec, offsetSeconds);
                    const endDeviceSec = (0, sonoff_1.utcToDeviceLocal2000Seconds)(endUtcSec, offsetSeconds);
                    if (startDeviceSec < 0 || startDeviceSec > 0xffffffff || endDeviceSec < 0 || endDeviceSec > 0xffffffff) {
                        logger_1.logger.error("read_swvzf_records time range out of supported 2000-local uint32 range", NS);
                        return;
                    }
                    if (endDeviceSec < startDeviceSec) {
                        logger_1.logger.error("read_swvzf_records time_end earlier than time_start", NS);
                        return;
                    }
                    let subCmd = 0x00;
                    if (type === "24_hours")
                        subCmd = 0x00;
                    if (type === "30_days")
                        subCmd = 0x01;
                    if (type === "6_months")
                        subCmd = 0x02;
                    const payloadBuffer = Buffer.alloc(9);
                    payloadBuffer[0] = subCmd;
                    payloadBuffer.writeUInt32BE(startDeviceSec, 1);
                    payloadBuffer.writeUInt32BE(endDeviceSec, 5);
                    const payloadValue = Array.from(payloadBuffer);
                    const ieeeAddr = meta?.device?.ieeeAddr;
                    if (ieeeAddr) {
                        swvzfReqCache[ieeeAddr] = swvzfReqCache[ieeeAddr] ?? {};
                        swvzfReqCache[ieeeAddr][subCmd] = {
                            startDevice: startDeviceSec,
                            endDevice: endDeviceSec,
                            startUTC: startUtcSec,
                            endUTC: endUtcSec,
                            offsetSeconds,
                            updatedAt: Date.now(),
                        };
                        if (subCmd === 0x01 || (subCmd === 0x00 && channelCount === 2)) {
                            delete swvzfRespCache[ieeeAddr];
                        }
                    }
                    await entity.command(clusterName, commandName, { data: payloadValue }, { disableDefaultResponse: true });
                },
            },
        ];
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["raw"],
                convert: (model, msg, publish, options, meta) => {
                    if (!(msg.data instanceof Buffer))
                        return;
                    const parsedRawCommand = (0, sonoff_1.parseSWVZFRawZclCommand)(msg.data);
                    if (!parsedRawCommand)
                        return;
                    if (parsedRawCommand.commandId !== 0x00)
                        return;
                    const body = parsedRawCommand.payload;
                    if (body.length < 3)
                        return;
                    const subCmd = body[0];
                    const status = body[1];
                    const recordIndex = body[2];
                    const payload = body.subarray(3);
                    const ieeeAddr = meta?.device?.ieeeAddr;
                    if (![0, 1, 2].includes(subCmd))
                        return;
                    if (status > 0x03)
                        return;
                    if (status !== 0x00) {
                        if (ieeeAddr && subCmd === 1) {
                            delete swvzfRespCache[ieeeAddr];
                        }
                        let errorReason = "";
                        if (status === 0x01)
                            errorReason = "timestamp_invalid";
                        else if (status === 0x02)
                            errorReason = "watering_amount_invalid";
                        else if (status === 0x03)
                            errorReason = "irrigation_duration_invalid";
                        logger_1.logger.error(`readSWVZFRecord invalid status=${status}===${errorReason} subCmd=${subCmd} recordIndex=${recordIndex}`, NS);
                        return;
                    }
                    const now = Date.now();
                    if (ieeeAddr && swvzfReqCache[ieeeAddr]) {
                        const req = swvzfReqCache[ieeeAddr][subCmd];
                        if (req && now - req.updatedAt > swvzfCacheExpireTime) {
                            delete swvzfReqCache[ieeeAddr][subCmd];
                        }
                    }
                    const request = ieeeAddr ? swvzfReqCache[ieeeAddr]?.[subCmd] : undefined;
                    if (!request || typeof request.startUTC !== "number" || typeof request.endUTC !== "number") {
                        logger_1.logger.error(`readSWVZFRecord missing request context for subCmd=${subCmd}; it may have timed out, please try again`, NS);
                        return;
                    }
                    const startSec = request.startUTC;
                    // 24 hours
                    if (subCmd === 0) {
                        const expectedPacketCount = channelCount === 2 ? 2 : 1;
                        const recordsPerPacket = channelCount === 2 ? 12 : 24;
                        const intervalByteLength = channelCount * 3;
                        if (recordIndex >= expectedPacketCount)
                            return;
                        const rawRecordData = Array.from(payload);
                        const slicedRecordData = rawRecordData.slice(0, recordsPerPacket * intervalByteLength);
                        const alignedLength = slicedRecordData.length - (slicedRecordData.length % intervalByteLength);
                        const recordData = slicedRecordData.slice(0, alignedLength);
                        if (recordData.length < intervalByteLength)
                            return;
                        const packetStartSec = channelCount === 2 ? startSec + recordIndex * recordsPerPacket * 3600 : startSec;
                        const value = parseHistoryRecords("24_hours", recordData, {
                            startSec: packetStartSec,
                            offsetSeconds: request.offsetSeconds,
                        });
                        if (channelCount === 2) {
                            if (!ieeeAddr) {
                                return { "24_hours_records": value };
                            }
                            return cacheMultiPacketRecords(ieeeAddr, recordIndex, value, expectedPacketCount, "24_hours_records", subCmd, now);
                        }
                        if (ieeeAddr && swvzfReqCache[ieeeAddr]) {
                            delete swvzfReqCache[ieeeAddr][subCmd];
                        }
                        return { "24_hours_records": value };
                    }
                    // 6 months
                    if (subCmd === 2) {
                        if (recordIndex !== 0)
                            return;
                        const intervalByteLength = channelCount * 5;
                        const rawRecordData = Array.from(payload);
                        const slicedRecordData = rawRecordData.slice(0, 6 * intervalByteLength);
                        const alignedLength = slicedRecordData.length - (slicedRecordData.length % intervalByteLength);
                        const recordData = slicedRecordData.slice(0, alignedLength);
                        if (recordData.length < intervalByteLength)
                            return;
                        const value = parseHistoryRecords("6_months", recordData, {
                            startSec,
                            offsetSeconds: request.offsetSeconds,
                        });
                        if (ieeeAddr && swvzfReqCache[ieeeAddr]) {
                            delete swvzfReqCache[ieeeAddr][subCmd];
                        }
                        return { "180_days_records": value };
                    }
                    // 30 days
                    if (subCmd === 1) {
                        if (payload.length === 0)
                            return;
                        const dayCount = payload[0];
                        if (channelCount === 1) {
                            if (recordIndex > 2)
                                return;
                            let parsedDayCount = 0;
                            let recordData = [];
                            if (recordIndex === 0 || recordIndex === 1) {
                                if (payload.length % 5 !== 0) {
                                    logger_1.logger.info(`readSWVZFRecord invalid 30_days payloadLen=${payload.length} recordIndex=${recordIndex}`, NS);
                                    return;
                                }
                                parsedDayCount = Math.floor(payload.length / 5);
                                if (parsedDayCount !== 10) {
                                    logger_1.logger.info(`readSWVZFRecord invalid fixed dayCount=${parsedDayCount} recordIndex=${recordIndex}`, NS);
                                    return;
                                }
                                recordData = Array.from(payload);
                            }
                            else {
                                if ((payload.length - 1) % 5 !== 0) {
                                    logger_1.logger.info(`readSWVZFRecord invalid 30_days payloadLen=${payload.length} recordIndex=2`, NS);
                                    return;
                                }
                                parsedDayCount = dayCount;
                                if (parsedDayCount < 8 || parsedDayCount > 11) {
                                    logger_1.logger.info(`readSWVZFRecord invalid dayCount=${parsedDayCount} recordIndex=2`, NS);
                                    return;
                                }
                                const actualCount = Math.floor((payload.length - 1) / 5);
                                if (actualCount !== parsedDayCount) {
                                    logger_1.logger.info(`readSWVZFRecord dayCount mismatch dayCount=${parsedDayCount} actualCount=${actualCount} recordIndex=2`, NS);
                                    return;
                                }
                                recordData = Array.from(payload.subarray(1));
                            }
                            const dayOffset = recordIndex * 10;
                            const records = parseHistoryRecords("30_days", recordData, {
                                startSec,
                                dayOffset,
                                offsetSeconds: request.offsetSeconds,
                            });
                            if (!ieeeAddr) {
                                return { "30_days_records": records };
                            }
                            return cacheMultiPacketRecords(ieeeAddr, recordIndex, records, 3, "30_days_records", subCmd, now);
                        }
                        if (channelCount === 2) {
                            if (recordIndex > 4)
                                return;
                            const intervalByteLength = channelCount * 5;
                            let parsedDayCount = 0;
                            let recordData = [];
                            if (recordIndex < 4) {
                                const expectedLength = 7 * intervalByteLength;
                                if (payload.length < expectedLength) {
                                    logger_1.logger.info(`readSWVZFRecord invalid 30_days payloadLen=${payload.length} recordIndex=${recordIndex}`, NS);
                                    return;
                                }
                                parsedDayCount = 7;
                                recordData = Array.from(payload.subarray(0, expectedLength));
                            }
                            else {
                                parsedDayCount = dayCount;
                                if (parsedDayCount < 0 || parsedDayCount > 3) {
                                    logger_1.logger.info(`readSWVZFRecord invalid dayCount=${parsedDayCount} recordIndex=4`, NS);
                                    return;
                                }
                                const expectedLength = 1 + parsedDayCount * intervalByteLength;
                                if (payload.length < expectedLength) {
                                    logger_1.logger.info(`readSWVZFRecord invalid 30_days payloadLen=${payload.length} recordIndex=4`, NS);
                                    return;
                                }
                                recordData = Array.from(payload.subarray(1, expectedLength));
                            }
                            const dayOffset = recordIndex * 7;
                            const records = parsedDayCount === 0
                                ? []
                                : parseHistoryRecords("30_days", recordData, {
                                    startSec,
                                    dayOffset,
                                    offsetSeconds: request.offsetSeconds,
                                });
                            if (!ieeeAddr) {
                                return { "30_days_records": records };
                            }
                            return cacheMultiPacketRecords(ieeeAddr, recordIndex, records, 5, "30_days_records", subCmd, now);
                        }
                    }
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    irrigationPlanSettingsAndReport: (hasFlowMeter, endpointNames) => {
        const clusterName = "customClusterEwelink";
        const commandId = {
            irrigationPlanSettings: 0x06,
            irrigationPlanReport: 0x09,
        };
        const loopTypeModeMapping = {
            0: "odd_days",
            1: "even_days",
            2: "day_interval",
            3: "weekdays",
        };
        const loopTypeModeMappingReverse = {
            odd_days: 0,
            even_days: 1,
            day_interval: 2,
            weekdays: 3,
        };
        const irrigationModeMapping = {
            0: "duration",
            1: "capacity",
            2: "duration_with_interval",
        };
        const irrigationModeMappingReverse = {
            duration: 0,
            capacity: 1,
            duration_with_interval: 2,
        };
        const loopTypeWeekDayBitMapping = {
            sunday: 0b0000001,
            monday: 0b0000010,
            tuesday: 0b0000100,
            wednesday: 0b0001000,
            thursday: 0b0010000,
            friday: 0b0100000,
            saturday: 0b1000000,
        };
        const loopTypeWeekDayNames = Object.keys(loopTypeWeekDayBitMapping);
        const decodeLoopTypeWeekDays = (mask) => ({
            sunday: (mask & loopTypeWeekDayBitMapping.sunday) > 0,
            monday: (mask & loopTypeWeekDayBitMapping.monday) > 0,
            tuesday: (mask & loopTypeWeekDayBitMapping.tuesday) > 0,
            wednesday: (mask & loopTypeWeekDayBitMapping.wednesday) > 0,
            thursday: (mask & loopTypeWeekDayBitMapping.thursday) > 0,
            friday: (mask & loopTypeWeekDayBitMapping.friday) > 0,
            saturday: (mask & loopTypeWeekDayBitMapping.saturday) > 0,
        });
        const expose = (device) => {
            const irrigationPlanSettings = e
                .composite("irrigation_plan_settings", "irrigation_plan_settings", ea.STATE_SET)
                .withDescription("Set irrigation plan")
                .withFeature(e.numeric("plan_index", ea.SET).withValueMin(0).withValueMax(5).withDescription("Plan index"))
                .withFeature(e.binary("enable_state", ea.SET, true, false))
                .withFeature(e.enum("loop_type_mode", ea.SET, ["odd_days", "even_days", "day_interval", "weekdays"]))
                .withFeature(e
                .numeric("loop_type_interval_days", ea.SET)
                .withValueMin(1)
                .withValueMax(30)
                .withDescription("Only effective when loop_type_mode is day_interval"))
                .withFeature(e
                .composite("loop_type_week_days", "loop_type_week_days", ea.SET)
                .withDescription("Only effective when loop_type_mode is weekdays")
                .withFeature(e.binary("sunday", ea.SET, true, false))
                .withFeature(e.binary("monday", ea.SET, true, false))
                .withFeature(e.binary("tuesday", ea.SET, true, false))
                .withFeature(e.binary("wednesday", ea.SET, true, false))
                .withFeature(e.binary("thursday", ea.SET, true, false))
                .withFeature(e.binary("friday", ea.SET, true, false))
                .withFeature(e.binary("saturday", ea.SET, true, false)))
                .withFeature(e.text("enable_date", ea.SET).withDescription("Enable date in local YYYY-MM-DD format."))
                .withFeature(e.text("start_time", ea.SET).withDescription("Start time in local HH:mm format (24-hour, zero-padded)."))
                .withFeature(e.enum("irrigation_mode", ea.SET, hasFlowMeter ? ["duration", "capacity", "duration_with_interval"] : ["duration", "duration_with_interval"]))
                .withFeature(e.numeric("irrigation_total_duration", ea.SET).withValueMin(0).withValueMax(719).withUnit("min"))
                .withFeature(e.numeric("irrigation_duration", ea.SET).withValueMin(1).withValueMax(60).withUnit("min"))
                .withFeature(e.numeric("interval_duration", ea.SET).withValueMin(1).withValueMax(60).withUnit("min"));
            if (hasFlowMeter) {
                if (!(utils.isDummyDevice(device) || SWVZNEFirmwareSupportsUnifiedImperialGallon(device))) {
                    irrigationPlanSettings.withFeature(e.enum("irrigation_amount_unit", ea.SET, ["us_gallon", "liter"]));
                }
                irrigationPlanSettings
                    .withFeature(e.numeric("irrigation_amount", ea.SET).withValueMin(1).withValueMax(10000))
                    .withFeature(e.numeric("fail_safe", ea.SET).withValueMin(0).withValueMax(719).withUnit("min"));
            }
            irrigationPlanSettings.withFeature(e.text("create_datetime", ea.SET).withDescription("Create datetime in ISO format with timezone (e.g. YYYY-MM-DDTHH:mm:ss+08:00)"));
            const irrigationPlanReport = e
                .composite("irrigation_plan_report", "irrigation_plan_report", ea.STATE)
                .withDescription("Irrigation plan report")
                .withFeature(e.numeric("plan_index", ea.STATE))
                .withFeature(e.binary("enable_state", ea.STATE, true, false))
                .withFeature(e.enum("loop_type_mode", ea.STATE, ["odd_days", "even_days", "day_interval", "weekdays"]))
                .withFeature(e.numeric("loop_type_interval_days", ea.STATE).withDescription("Effective when loop_type_mode is day_interval"))
                .withFeature(e
                .composite("loop_type_week_days", "loop_type_week_days", ea.STATE)
                .withDescription("Effective when loop_type_mode is weekdays")
                .withFeature(e.binary("sunday", ea.STATE, true, false))
                .withFeature(e.binary("monday", ea.STATE, true, false))
                .withFeature(e.binary("tuesday", ea.STATE, true, false))
                .withFeature(e.binary("wednesday", ea.STATE, true, false))
                .withFeature(e.binary("thursday", ea.STATE, true, false))
                .withFeature(e.binary("friday", ea.STATE, true, false))
                .withFeature(e.binary("saturday", ea.STATE, true, false)))
                .withFeature(e.text("enable_date", ea.STATE).withDescription("Enable date in local YYYY-MM-DD format (local day start)"))
                .withFeature(e.text("start_time", ea.STATE).withDescription("Start time in local HH:mm format (24-hour)"))
                .withFeature(e.enum("irrigation_mode", ea.STATE, hasFlowMeter ? ["duration", "capacity", "duration_with_interval"] : ["duration", "duration_with_interval"]))
                .withFeature(e.numeric("irrigation_total_duration", ea.STATE))
                .withFeature(e.numeric("irrigation_duration", ea.STATE))
                .withFeature(e.numeric("interval_duration", ea.STATE));
            if (hasFlowMeter) {
                const unitValues = utils.isDummyDevice(device) || SWVZNEFirmwareSupportsUnifiedImperialGallon(device)
                    ? ["us_gallon", "liter", "imperial_gallon"]
                    : ["us_gallon", "liter"];
                irrigationPlanReport.withFeature(e.enum("irrigation_amount_unit", ea.STATE, unitValues));
                irrigationPlanReport.withFeature(e.numeric("irrigation_amount", ea.STATE)).withFeature(e.numeric("fail_safe", ea.STATE));
            }
            irrigationPlanReport.withFeature(e.text("create_datetime", ea.STATE).withDescription("Create datetime in ISO format with timezone (e.g. YYYY-MM-DDTHH:mm:ss+08:00)"));
            return [irrigationPlanSettings, irrigationPlanReport].flatMap((expose) => exposeCompositeEndpoints(expose, endpointNames));
        };
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["raw"],
                convert: (model, msg, publish, options, meta) => {
                    if (!(msg.data instanceof Buffer))
                        return;
                    const parsedRawCommand = (0, sonoff_1.parseSWVZFRawZclCommand)(msg.data);
                    if (!parsedRawCommand)
                        return;
                    const cmdId = parsedRawCommand.commandId;
                    const payload = parsedRawCommand.payload;
                    if (endpointNames) {
                        const endpointName = utils.getKey(model.endpoint?.(meta.device) ?? {}, msg.endpoint.ID);
                        if (!endpointName || !endpointNames.includes(endpointName))
                            return;
                    }
                    if (cmdId === commandId.irrigationPlanSettings) {
                        if (payload.length < 1) {
                            logger_1.logger.error("irrigationPlanSettingsReply invalid payload length", NS);
                            return;
                        }
                        const status = payload.readUInt8(0);
                        if (status !== 0) {
                            logger_1.logger.error(`irrigationPlanSettingsReply failed, status=${status}`, NS);
                        }
                        return;
                    }
                    if (cmdId === commandId.irrigationPlanReport) {
                        if (payload.length < 28)
                            return;
                        const property = utils.postfixWithEndpointName("irrigation_plan_report", msg, model, meta);
                        // Payload byte offset
                        let offset = 0;
                        // Plan index
                        const planIndex = payload.readUInt8(offset);
                        offset += 1;
                        // Whether schedule is enabled
                        const enableState = payload.readUInt8(offset);
                        offset += 1;
                        // Loop type
                        const loopType = payload.readUInt16BE(offset);
                        const loopTypeMode = (loopType >> 8) & 0xff; // Loop mode
                        const loopTypeValue = loopType & 0xff; // Loop configuration
                        offset += 2;
                        // Enable date(day start): device 2000-local seconds -> Unix UTC seconds
                        const enableDatetimeDevice = payload.readUInt32BE(offset);
                        const offsetSeconds = (0, sonoff_1.getRuntimeLocalOffsetSeconds)(enableDatetimeDevice + sonoff_1.YEAR_2000_IN_UTC);
                        const enableDatetimeUTC = (0, sonoff_1.deviceLocal2000ToUTCSeconds)(enableDatetimeDevice, offsetSeconds);
                        offset += 4;
                        // Irrigation mode
                        const irrigationMode = payload.readUInt8(offset);
                        offset += 1;
                        // Effective start time (seconds from 00:00)
                        const startSeconds = payload.readUInt32BE(offset);
                        const enableDateISO = (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(enableDatetimeUTC, offsetSeconds);
                        const enableDate = enableDateISO.slice(0, 10);
                        const startHours = Math.floor(startSeconds / 3600);
                        const startMinutes = Math.floor((startSeconds % 3600) / 60);
                        const startTime = `${String(startHours).padStart(2, "0")}:${String(startMinutes).padStart(2, "0")}`;
                        offset += 4;
                        // Irrigation duration
                        const irrigationTotalDuration = payload.readUInt16BE(offset);
                        offset += 2;
                        const irrigationDuration = payload.readUInt16BE(offset);
                        offset += 2;
                        // Interval duration
                        const intervalDuration = payload.readUInt16BE(offset);
                        offset += 2;
                        // Irrigation amount unit
                        const irrigationAmountUnit = SWVZNEIrrigationAmountUnitFromDeviceCode(payload.readUInt8(offset), meta.device);
                        offset += 1;
                        // Irrigation amount
                        const irrigationAmount = payload.readUInt16BE(offset);
                        offset += 2;
                        // Fail-safe timeout
                        const failSafe = payload.readUInt16BE(offset);
                        offset += 2;
                        // Create datetime: Unix UTC seconds
                        const createDatetimeDevice = payload.readUInt32BE(offset);
                        const createDatetimeISO = (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(createDatetimeDevice, offsetSeconds);
                        const plan = {
                            plan_index: planIndex,
                            enable_state: enableState === 1,
                            loop_type_mode: loopTypeModeMapping[loopTypeMode],
                            loop_type_interval_days: loopTypeMode === loopTypeModeMappingReverse.day_interval ? loopTypeValue : 0,
                            loop_type_week_days: loopTypeMode === loopTypeModeMappingReverse.weekdays
                                ? decodeLoopTypeWeekDays(loopTypeValue)
                                : decodeLoopTypeWeekDays(0),
                            enable_date: enableDate,
                            start_time: startTime,
                            irrigation_mode: hasFlowMeter
                                ? (irrigationModeMapping[irrigationMode] ?? "duration")
                                : irrigationModeMapping[irrigationMode] === "duration_with_interval"
                                    ? "duration_with_interval"
                                    : "duration",
                            irrigation_total_duration: irrigationTotalDuration,
                            irrigation_duration: irrigationDuration,
                            interval_duration: intervalDuration,
                            ...(hasFlowMeter
                                ? {
                                    ...(irrigationAmountUnit ? { irrigation_amount_unit: irrigationAmountUnit } : {}),
                                    irrigation_amount: irrigationAmount,
                                    fail_safe: failSafe,
                                }
                                : {}),
                            create_datetime: createDatetimeISO,
                        };
                        return { [property]: plan };
                    }
                },
            },
        ];
        const toZigbee = [
            {
                key: ["irrigation_plan_settings"],
                endpoints: endpointNames,
                convertSet: async (entity, key, value, meta) => {
                    utils.assertObject(value, key);
                    const parseIntWithDefault = (fieldName, defaultValue, min, max) => {
                        const raw = value[fieldName];
                        const parsed = raw === undefined || raw === null ? defaultValue : Number(raw);
                        if (!Number.isInteger(parsed) || parsed < min || parsed > max) {
                            logger_1.logger.error(`irrigation_plan_settings invalid ${fieldName}, expected integer in range [${min}, ${max}].`, NS);
                            return;
                        }
                        return parsed;
                    };
                    const payloadValue = new Uint8Array(28);
                    let i = 0;
                    // Plan index
                    const planIndex = parseIntWithDefault("plan_index", 0, 0, 5);
                    if (planIndex === undefined) {
                        return;
                    }
                    payloadValue[i++] = planIndex & 0xff;
                    // Whether schedule is enabled
                    payloadValue[i++] = value.enable_state ? 0x01 : 0x00;
                    // Loop type
                    const loopTypeModeKey = typeof value.loop_type_mode === "string" && value.loop_type_mode in loopTypeModeMappingReverse
                        ? value.loop_type_mode
                        : "odd_days";
                    const loopTypeMode = loopTypeModeMappingReverse[loopTypeModeKey];
                    let loopTypeValueCode = 0;
                    if (loopTypeMode === loopTypeModeMappingReverse.day_interval) {
                        const loopTypeIntervalDays = parseIntWithDefault("loop_type_interval_days", 1, 1, 30);
                        if (loopTypeIntervalDays === undefined) {
                            return;
                        }
                        loopTypeValueCode = loopTypeIntervalDays;
                    }
                    else if (loopTypeMode === loopTypeModeMappingReverse.weekdays) {
                        const weekDays = value.loop_type_week_days;
                        if (utils.isObject(weekDays)) {
                            for (const dayName of loopTypeWeekDayNames) {
                                if (weekDays[dayName] === true) {
                                    loopTypeValueCode |= loopTypeWeekDayBitMapping[dayName];
                                }
                            }
                        }
                    }
                    const loopTypeWord = (loopTypeMode << 8) | loopTypeValueCode;
                    payloadValue[i++] = (loopTypeWord >> 8) & 0xff;
                    payloadValue[i++] = loopTypeWord & 0xff;
                    // Enable date: start of local day -> device local-2000 seconds
                    const enableDateValue = value.enable_date;
                    if (!utils.isString(enableDateValue)) {
                        logger_1.logger.error("irrigation_plan_settings invalid enable_date, expected local date in YYYY-MM-DD format.", NS);
                        return;
                    }
                    const enableDateMatch = enableDateValue.match(/^(\d{4})-(\d{2})-(\d{2})$/);
                    if (!enableDateMatch) {
                        logger_1.logger.error("irrigation_plan_settings invalid enable_date, expected local date in YYYY-MM-DD format.", NS);
                        return;
                    }
                    const enableYear = Number(enableDateMatch[1]);
                    const enableMonth = Number(enableDateMatch[2]);
                    const enableDay = Number(enableDateMatch[3]);
                    const enableDateUtcMs = Date.UTC(enableYear, enableMonth - 1, enableDay, 0, 0, 0);
                    const enableDateUtc = new Date(enableDateUtcMs);
                    if (enableDateUtc.getUTCFullYear() !== enableYear ||
                        enableDateUtc.getUTCMonth() !== enableMonth - 1 ||
                        enableDateUtc.getUTCDate() !== enableDay) {
                        logger_1.logger.error("irrigation_plan_settings invalid enable_date, expected local date in YYYY-MM-DD format.", NS);
                        return;
                    }
                    const enableDatetime = Math.floor(enableDateUtcMs / 1000) - sonoff_1.YEAR_2000_IN_UTC;
                    if (enableDatetime < 0 || enableDatetime > 0xffffffff) {
                        logger_1.logger.error("irrigation_plan_settings invalid enable_date, converted 2000-local value out of uint32 range.", NS);
                        return;
                    }
                    payloadValue[i++] = (enableDatetime >> 24) & 0xff;
                    payloadValue[i++] = (enableDatetime >> 16) & 0xff;
                    payloadValue[i++] = (enableDatetime >> 8) & 0xff;
                    payloadValue[i++] = enableDatetime & 0xff;
                    // Irrigation mode
                    let irrigationModeCode = irrigationModeMappingReverse.duration;
                    if (hasFlowMeter) {
                        const irrigationModeKey = typeof value.irrigation_mode === "string"
                            ? value.irrigation_mode
                            : "duration";
                        irrigationModeCode = irrigationModeMappingReverse[irrigationModeKey] ?? irrigationModeMappingReverse.duration;
                    }
                    else {
                        const irrigationModeKey = value.irrigation_mode === "duration_with_interval" ? "duration_with_interval" : "duration";
                        irrigationModeCode = irrigationModeMappingReverse[irrigationModeKey];
                    }
                    payloadValue[i++] = irrigationModeCode & 0xff;
                    // Start time offset from start of local day.
                    const startTimeValue = value.start_time;
                    if (!utils.isString(startTimeValue)) {
                        logger_1.logger.error("irrigation_plan_settings invalid start_time, expected HH:mm.", NS);
                        return;
                    }
                    const startTimeMatch = startTimeValue.match(/^([01]\d|2[0-3]):([0-5]\d)$/);
                    if (!startTimeMatch) {
                        logger_1.logger.error("irrigation_plan_settings invalid start_time, expected HH:mm.", NS);
                        return;
                    }
                    const startSeconds = Number(startTimeMatch[1]) * 3600 + Number(startTimeMatch[2]) * 60;
                    payloadValue[i++] = (startSeconds >> 24) & 0xff;
                    payloadValue[i++] = (startSeconds >> 16) & 0xff;
                    payloadValue[i++] = (startSeconds >> 8) & 0xff;
                    payloadValue[i++] = startSeconds & 0xff;
                    // Total irrigation duration
                    const irrigationTotalDuration = parseIntWithDefault("irrigation_total_duration", 10, 0, 719);
                    if (irrigationTotalDuration === undefined) {
                        return;
                    }
                    payloadValue[i++] = (irrigationTotalDuration >> 8) & 0xff;
                    payloadValue[i++] = irrigationTotalDuration & 0xff;
                    // Irrigation duration
                    const irrigationDuration = parseIntWithDefault("irrigation_duration", 2, 1, 60);
                    if (irrigationDuration === undefined) {
                        return;
                    }
                    payloadValue[i++] = (irrigationDuration >> 8) & 0xff;
                    payloadValue[i++] = irrigationDuration & 0xff;
                    // Interval duration
                    const intervalDuration = parseIntWithDefault("interval_duration", 3, 1, 60);
                    if (intervalDuration === undefined) {
                        return;
                    }
                    payloadValue[i++] = (intervalDuration >> 8) & 0xff;
                    payloadValue[i++] = intervalDuration & 0xff;
                    // Irrigation amount unit
                    let irrigationAmountUnit = hasFlowMeter ? value.irrigation_amount_unit : "liter";
                    if (hasFlowMeter && irrigationAmountUnit === undefined && SWVZNEFirmwareSupportsUnifiedImperialGallon(meta.device)) {
                        irrigationAmountUnit = meta.state.water_flow_unit;
                    }
                    const irrigationAmountUnitCode = SWVZNEIrrigationAmountUnitToDeviceCode(irrigationAmountUnit ?? "liter", meta.device);
                    if (irrigationAmountUnitCode === undefined) {
                        logger_1.logger.error("irrigation_plan_settings invalid irrigation_amount_unit, expected one of: us_gallon, liter.", NS);
                        return;
                    }
                    payloadValue[i++] = irrigationAmountUnitCode & 0xff;
                    // Irrigation amount
                    const irrigationAmountValue = hasFlowMeter ? parseIntWithDefault("irrigation_amount", 30, 1, 10000) : 10;
                    if (irrigationAmountValue === undefined) {
                        return;
                    }
                    const irrigationAmount = irrigationAmountValue;
                    payloadValue[i++] = (irrigationAmount >> 8) & 0xff;
                    payloadValue[i++] = irrigationAmount & 0xff;
                    // Fail-safe timeout
                    const failSafe = hasFlowMeter ? parseIntWithDefault("fail_safe", 10, 0, 719) : 10;
                    if (failSafe === undefined) {
                        return;
                    }
                    payloadValue[i++] = (failSafe >> 8) & 0xff;
                    payloadValue[i++] = failSafe & 0xff;
                    // Create datetime: Unix UTC seconds.
                    if (!utils.isString(value.create_datetime)) {
                        logger_1.logger.error("irrigation_plan_settings invalid create_datetime, expected ISO 8601 datetime with timezone offset (Z or ±HH:mm).", NS);
                        return;
                    }
                    const createDatetimeUTC = (0, sonoff_1.parseIsoWithOffsetToUtcSeconds)(value.create_datetime);
                    if (createDatetimeUTC === undefined) {
                        logger_1.logger.error("irrigation_plan_settings invalid create_datetime, expected ISO 8601 datetime with timezone offset (Z or ±HH:mm).", NS);
                        return;
                    }
                    if (createDatetimeUTC < 0 || createDatetimeUTC > 0xffffffff) {
                        logger_1.logger.error("irrigation_plan_settings invalid create_datetime, converted unix out of uint32 range.", NS);
                        return;
                    }
                    payloadValue[i++] = (createDatetimeUTC >> 24) & 0xff;
                    payloadValue[i++] = (createDatetimeUTC >> 16) & 0xff;
                    payloadValue[i++] = (createDatetimeUTC >> 8) & 0xff;
                    payloadValue[i++] = createDatetimeUTC & 0xff;
                    await utils
                        .determineEndpoint(entity, meta, clusterName)
                        .command(clusterName, "irrigationPlanSettings", { data: Array.from(payloadValue) }, defaultResponseOptions);
                    const state = { ...value };
                    if (SWVZNEFirmwareSupportsUnifiedImperialGallon(meta.device)) {
                        delete state.irrigation_amount_unit;
                    }
                    return { state: { [key]: state } };
                },
            },
        ];
        return {
            exposes: [expose],
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    irrigationPlanRemove: (endpointNames) => {
        const clusterName = "customClusterEwelink";
        const baseExposes = [
            e
                .composite("irrigation_plan_remove", "irrigation_plan_remove", ea.SET)
                .withDescription("Remove irrigation plan")
                .withFeature(e.numeric("plan_index", ea.SET).withValueMin(0).withValueMax(5).withDescription("The index of the irrigation plan to remove")),
        ];
        const exposes = baseExposes.flatMap((expose) => exposeCompositeEndpoints(expose, endpointNames));
        const toZigbee = [
            {
                key: ["irrigation_plan_remove"],
                endpoints: endpointNames,
                convertSet: async (entity, key, value, meta) => {
                    utils.assertObject(value, key);
                    const planIndex = Number(value.plan_index);
                    const data = Buffer.alloc(1);
                    data.writeUInt8(planIndex & 0xff, 0);
                    await utils
                        .determineEndpoint(entity, meta, clusterName)
                        .command(clusterName, "irrigationPlanRemove", { data: Array.from(data) }, { disableDefaultResponse: true });
                    const settingsProperty = meta.endpoint_name
                        ? `irrigation_plan_settings_${planIndex}_${meta.endpoint_name}`
                        : `irrigation_plan_settings_${planIndex}`;
                    return {
                        state: {
                            [key]: { plan_index: planIndex },
                            [settingsProperty]: null,
                        },
                    };
                },
            },
        ];
        return {
            exposes,
            fromZigbee: [],
            toZigbee,
            isModernExtend: true,
        };
    },
    irrigationPlanRemovedReport: (endpointNames) => {
        const clusterName = "customClusterEwelink";
        const commandId = {
            irrigationPlanRemovedReport: 0x0a,
        };
        const exposes = utils.exposeEndpoints(e
            .numeric("irrigation_plan_removed_report", ea.STATE)
            .withDescription("Local irrigation plan removed report")
            .withValueMin(0)
            .withValueMax(5), endpointNames);
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["raw"],
                convert: (model, msg, publish, options, meta) => {
                    if (!(msg.data instanceof Buffer))
                        return;
                    const parsedRawCommand = (0, sonoff_1.parseSWVZFRawZclCommand)(msg.data);
                    if (!parsedRawCommand)
                        return;
                    if (parsedRawCommand.commandId !== commandId.irrigationPlanRemovedReport)
                        return;
                    if (endpointNames) {
                        const endpointName = utils.getKey(model.endpoint?.(meta.device) ?? {}, msg.endpoint.ID);
                        if (!endpointName || !endpointNames.includes(endpointName))
                            return;
                    }
                    const payload = parsedRawCommand.payload;
                    if (payload.length < 1) {
                        logger_1.logger.error("irrigationPlanRemovedReport invalid payload length", NS);
                        return;
                    }
                    const planIndex = payload.readUInt8(0);
                    const reportProperty = utils.postfixWithEndpointName("irrigation_plan_removed_report", msg, model, meta);
                    const settingsProperty = utils.postfixWithEndpointName(`irrigation_plan_settings_${planIndex}`, msg, model, meta);
                    return {
                        [reportProperty]: planIndex,
                        [settingsProperty]: null,
                    };
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee: [],
            isModernExtend: true,
        };
    },
    rainDelay: () => {
        const clusterName = "customClusterEwelink";
        const exposes = [
            e
                .text("rain_delay", ea.SET)
                .withDescription('Schedule delay end time in ISO format with timezone (e.g. YYYY-MM-DDTHH:mm:ss+08:00), or "0" to disable'),
        ];
        const toZigbee = [
            {
                key: ["rain_delay"],
                convertSet: async (entity, key, value, meta) => {
                    if (!utils.isString(value)) {
                        logger_1.logger.error("Invalid rain_delay, expected ISO 8601 datetime with timezone offset (Z or ±HH:mm).", NS);
                        return;
                    }
                    let delayEndTimeDevice;
                    let delayEndTimeUTC;
                    let stateValue = value;
                    if (value === "0") {
                        delayEndTimeDevice = 0;
                    }
                    else {
                        delayEndTimeUTC = (0, sonoff_1.parseIsoWithOffsetToUtcSeconds)(value);
                        if (delayEndTimeUTC === undefined) {
                            logger_1.logger.error("Invalid rain_delay, expected ISO 8601 datetime with timezone offset (Z or ±HH:mm).", NS);
                            return;
                        }
                        const offsetSeconds = (0, sonoff_1.getRuntimeLocalOffsetSeconds)(Math.floor(Date.now() / 1000));
                        delayEndTimeDevice = (0, sonoff_1.utcToDeviceLocal2000Seconds)(delayEndTimeUTC, offsetSeconds);
                        stateValue = (0, sonoff_1.formatUtcSecondsToIsoWithOffset)(delayEndTimeUTC, offsetSeconds);
                    }
                    if (delayEndTimeDevice < 0 || delayEndTimeDevice > 0xffffffff) {
                        logger_1.logger.error("Invalid rain_delay, converted device 2000-local value out of uint32 range.", NS);
                        return;
                    }
                    const data = [
                        (delayEndTimeDevice >>> 24) & 0xff,
                        (delayEndTimeDevice >>> 16) & 0xff,
                        (delayEndTimeDevice >>> 8) & 0xff,
                        delayEndTimeDevice & 0xff,
                    ];
                    await entity.command(clusterName, "rainDelay", { data }, { disableDefaultResponse: true });
                    return { state: { [key]: stateValue } };
                },
            },
        ];
        return {
            exposes,
            fromZigbee: [],
            toZigbee,
            isModernExtend: true,
        };
    },
    clearConsumptionHistory: () => {
        const clusterName = "customClusterEwelink";
        const commandName = "clearHistory";
        const clearPayload = { deviceType: 0x02, deviceLength: 0x01, eventType: 0x00 };
        const toZigbee = [
            {
                key: ["clear_history"],
                convertSet: async (entity, key, value, meta) => {
                    utils.assertString(value, key);
                    const normalizedValue = value.toLowerCase();
                    if (normalizedValue !== "clear") {
                        throw new Error(`Unsupported ${key} value: '${value}', expected 'clear'`);
                    }
                    // Most Sonoff private-cluster commands on this device work without a manufacturer-specific frame header.
                    await entity.command(clusterName, commandName, clearPayload, {
                        disableDefaultResponse: false,
                    });
                    // Clear local cache fields to avoid stale UI data after a successful clear command.
                    return { state: { clear_history: normalizedValue, consumption_records: null, consumption_records_dst: null } };
                },
            },
        ];
        return {
            exposes: [e.enum("clear_history", ea.SET, ["clear"]).withDescription("Clear historical electricity data.")],
            toZigbee,
            isModernExtend: true,
        };
    },
    readConsumptionRecord(clusterName, commandName) {
        const exposes = [
            e.text("consumption_records", ea.STATE),
            e.text("consumption_records_dst", ea.STATE),
            e
                .composite("read_consumption_records", "read_consumption_records", ea.SET)
                .withDescription("Read power-consumption history records (24h / monthly days / halfyear months).")
                .withFeature(e
                .enum("type", ea.SET, ["get24Hours", "get30Days", "get180Days"])
                .withDescription("Record type: get24Hours, get30Days or get180Days."))
                .withFeature(e
                .numeric("index", ea.SET)
                .withValueMin(0)
                .withValueMax(240)
                .withValueStep(1)
                .withDescription("Block index: 24h => 0/1/240(DST), 30d => 0/1, 180d => 0. For 24h/30d, index=0 auto-fetches block 0+1."))
                .withFeature(e
                .numeric("offset", ea.SET)
                .withValueMin(0)
                .withValueMax(6)
                .withDescription("Offset: 24h => 0..6(days), 30d => 0..5(months), 180d => 0.")),
        ];
        const fromZigbee = [
            {
                cluster: "customClusterEwelink",
                type: ["raw"],
                convert: (model, msg, publish, options, meta) => {
                    if (!(msg.data instanceof Buffer)) {
                        return;
                    }
                    const parsedRawCommand = (0, sonoff_1.parseSWVZFRawZclCommand)(msg.data);
                    if (parsedRawCommand?.commandId !== 0x02) {
                        return;
                    }
                    const body = parsedRawCommand.payload;
                    if (body.length < 4) {
                        return;
                    }
                    const status = body[0];
                    const subCmd = body[1];
                    const offset = body[2];
                    const recordIndex = body[3];
                    const recordData = Array.from(body.subarray(4));
                    if (![0, 1, 2].includes(subCmd)) {
                        return;
                    }
                    if (status !== 0x00) {
                        logger_1.logger.warning(`readConsumptionRecord failed with status=${status}, subCmd=${subCmd}, offset=${offset}, recordIndex=${recordIndex}`, NS);
                        return;
                    }
                    if (subCmd === 0 && recordIndex === 240) {
                        const count = recordData[0] ?? 0;
                        // biome-ignore lint/style/useNamingConvention: JSON payload key follows existing external format
                        const records = [];
                        for (let i = 1; i + 5 < recordData.length; i += 6) {
                            const dayOffset = recordData[i];
                            const hour = recordData[i + 1];
                            const usage = (recordData[i + 2] | (recordData[i + 3] << 8) | (recordData[i + 4] << 16) | (recordData[i + 5] << 24)) >>> 0;
                            if (usage !== 0xffffffff) {
                                records.push({ day_offset: dayOffset, hour, usage });
                            }
                        }
                        return { consumption_records_dst: JSON.stringify({ type: "dst_repeat", offset, count, records }) };
                    }
                    let value;
                    if (subCmd === 0) {
                        if (![0, 1].includes(recordIndex)) {
                            logger_1.logger.warning(`readConsumptionRecord invalid 24h recordIndex=${recordIndex}`, NS);
                            return;
                        }
                        const records = [];
                        const start = new Date();
                        start.setHours(0, 0, 0, 0);
                        start.setDate(start.getDate() - offset);
                        if (recordIndex === 1) {
                            start.setHours(start.getHours() + 18);
                        }
                        for (let i = 0; i + 3 < recordData.length; i += 4) {
                            const usage = (recordData[i] | (recordData[i + 1] << 8) | (recordData[i + 2] << 16) | (recordData[i + 3] << 24)) >>> 0;
                            const end = new Date(start.getTime() + 3600 * 1000);
                            if (usage !== 0xffffffff) {
                                records.push({ usage, start: start.toISOString(), end: end.toISOString() });
                            }
                            start.setTime(end.getTime());
                        }
                        value = { type: "day_of_hour", offset, index: recordIndex, records };
                    }
                    else if (subCmd === 1) {
                        if (![0, 1].includes(recordIndex)) {
                            logger_1.logger.warning(`readConsumptionRecord invalid 30d recordIndex=${recordIndex}`, NS);
                            return;
                        }
                        const records = [];
                        const start = new Date();
                        start.setDate(1);
                        start.setHours(0, 0, 0, 0);
                        start.setMonth(start.getMonth() - offset);
                        if (recordIndex === 1) {
                            start.setDate(start.getDate() + 18);
                        }
                        for (let i = 0; i + 3 < recordData.length; i += 4) {
                            const usage = (recordData[i] | (recordData[i + 1] << 8) | (recordData[i + 2] << 16) | (recordData[i + 3] << 24)) >>> 0;
                            const end = new Date(start.getTime());
                            end.setDate(end.getDate() + 1);
                            if (usage !== 0xffffffff) {
                                records.push({ usage, start: start.toISOString(), end: end.toISOString() });
                            }
                            start.setTime(end.getTime());
                        }
                        value = { type: "day_of_month", offset, index: recordIndex, records };
                    }
                    else {
                        if (recordIndex !== 0) {
                            logger_1.logger.warning(`readConsumptionRecord invalid 180d recordIndex=${recordIndex}`, NS);
                            return;
                        }
                        const records = [];
                        const total = Math.floor(recordData.length / 4);
                        for (let i = 0; i < total; i++) {
                            const dataIndex = i * 4;
                            const usageRaw = (recordData[dataIndex] |
                                (recordData[dataIndex + 1] << 8) |
                                (recordData[dataIndex + 2] << 16) |
                                (recordData[dataIndex + 3] << 24)) >>>
                                0;
                            const usage = usageRaw === 0xffffffff ? null : usageRaw;
                            const monthsBack = total - 1 - i;
                            const start = new Date();
                            start.setDate(1);
                            start.setHours(0, 0, 0, 0);
                            start.setMonth(start.getMonth() - monthsBack);
                            const end = new Date(start.getTime());
                            end.setMonth(end.getMonth() + 1);
                            records.push({ usage, start: start.toISOString(), end: end.toISOString() });
                        }
                        value = { type: "month_of_halfyear", records };
                    }
                    if ((value.type === "day_of_hour" || value.type === "day_of_month") && typeof meta.state?.consumption_records === "string") {
                        try {
                            const existing = JSON.parse(meta.state.consumption_records);
                            if (existing.type === value.type && existing.offset === value.offset && Array.isArray(existing.records)) {
                                const mergedByRange = new Map();
                                for (const record of existing.records) {
                                    mergedByRange.set(`${record.start}|${record.end}`, record);
                                }
                                for (const record of value.records ?? []) {
                                    mergedByRange.set(`${record.start}|${record.end}`, record);
                                }
                                value.records = Array.from(mergedByRange.values()).sort((a, b) => Date.parse(a.start) - Date.parse(b.start));
                            }
                        }
                        catch {
                            // Ignore invalid stored state and publish the current frame.
                        }
                    }
                    return { consumption_records: JSON.stringify(value) };
                },
            },
        ];
        const toZigbee = [
            {
                key: ["read_consumption_records"],
                convertSet: async (entity, key, value, meta) => {
                    utils.assertObject(value, key);
                    const payload = value;
                    const type = String(payload.type);
                    const indexInput = Array.isArray(payload.index) ? payload.index[0] : payload.index;
                    const index = Math.trunc(Number(indexInput ?? 0));
                    const offset = Math.trunc(Number(payload.offset ?? 0));
                    if (Number.isNaN(index) || Number.isNaN(offset)) {
                        throw new Error(`read_consumption_records invalid params: ${JSON.stringify(value)}`);
                    }
                    if (!["get24Hours", "get30Days", "get180Days"].includes(type)) {
                        throw new Error(`read_consumption_records unsupported type: ${type}`);
                    }
                    let subCmd = 0x00;
                    if (type === "get24Hours") {
                        subCmd = 0x00;
                        if (offset < 0 || offset > 6) {
                            throw new Error(`read_consumption_records offset out of range for get24Hours: ${offset} (expected 0..6)`);
                        }
                        if (![0, 1, 240].includes(index)) {
                            throw new Error(`read_consumption_records index out of range for get24Hours: ${index} (expected 0, 1, 240)`);
                        }
                    }
                    else if (type === "get30Days") {
                        subCmd = 0x01;
                        if (offset < 0 || offset > 5) {
                            throw new Error(`read_consumption_records offset out of range for get30Days: ${offset} (expected 0..5)`);
                        }
                        if (![0, 1].includes(index)) {
                            throw new Error(`read_consumption_records index out of range for get30Days: ${index} (expected 0, 1)`);
                        }
                    }
                    else {
                        subCmd = 0x02;
                        if (offset !== 0) {
                            throw new Error(`read_consumption_records offset for get180Days must be 0, got ${offset}`);
                        }
                        if (index !== 0) {
                            throw new Error(`read_consumption_records index for get180Days must be 0, got ${index}`);
                        }
                    }
                    let localTimestamp = Math.floor(Date.now() / 1000) + -new Date().getTimezoneOffset() * 60;
                    const metaOptions = meta.options;
                    if (typeof metaOptions?.getLocalTime === "function") {
                        const localTime = metaOptions.getLocalTime();
                        if (typeof localTime?.timeStamp === "number" && typeof localTime?.offset === "number") {
                            localTimestamp = Math.round(localTime.timeStamp / 1000) + localTime.offset * 60;
                        }
                    }
                    const payloadValue = [subCmd, offset & 0xff, index & 0xff, 0x00, 0x00, 0x00, 0x00];
                    const normalizedLocalTimestamp = Math.max(0, Math.floor(localTimestamp)) >>> 0;
                    payloadValue[3] = normalizedLocalTimestamp & 0xff;
                    payloadValue[4] = (normalizedLocalTimestamp >> 8) & 0xff;
                    payloadValue[5] = (normalizedLocalTimestamp >> 16) & 0xff;
                    payloadValue[6] = (normalizedLocalTimestamp >> 24) & 0xff;
                    const sendReadRecord = async (recordIndex) => {
                        payloadValue[2] = recordIndex & 0xff;
                        await entity.command(clusterName, commandName, { data: payloadValue }, { disableDefaultResponse: true });
                    };
                    if (type === "get24Hours" && index === 0) {
                        await sendReadRecord(0);
                        await sendReadRecord(1);
                        return { state: { [key]: { type, index: 0, offset, local_time: localTimestamp } } };
                    }
                    if (type === "get30Days" && index === 0) {
                        await sendReadRecord(0);
                        await sendReadRecord(1);
                        return { state: { [key]: { type, index: 0, offset, local_time: localTimestamp } } };
                    }
                    await sendReadRecord(index);
                    return { state: { [key]: { type, index, offset, local_time: localTimestamp } } };
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    faultCodeMiniZb1gsp: (args) => {
        const clusterName = "customClusterEwelink";
        const attributeName = "faultCode";
        const faultStates = [
            { name: "device_overheated", bit: 0b001 },
            { name: "metering_communication_error", bit: 0b010 },
            { name: "overload_protection", bit: 0b100 },
        ].filter((fault) => args.hasSwitch || fault.name !== "device_overheated");
        const exposes = faultStates.map((fault) => {
            const expose = e.binary(fault.name, ea.STATE_GET, "Alarm Active", "Normal").withCategory("diagnostic");
            return fault.name === "overload_protection" ? expose.withLabel("Electrical Status") : expose;
        });
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (msg.data.faultCode === undefined)
                        return;
                    const value = msg.data.faultCode;
                    utils.assertNumber(value);
                    const tlv = value >>> 0;
                    const type = (tlv >>> 24) & 0xff;
                    const length = (tlv >>> 16) & 0xff;
                    if (type !== 0x07 || length !== 0x02)
                        return;
                    const faultValue = tlv & 0xffff;
                    const result = {};
                    for (const fault of faultStates) {
                        result[fault.name] = (faultValue & fault.bit) !== 0 ? "Alarm Active" : "Normal";
                    }
                    return result;
                },
            },
        ];
        const toZigbee = [
            {
                key: faultStates.map((fault) => fault.name),
                convertGet: async (entity) => {
                    await entity.read(clusterName, [attributeName], defaultResponseOptions);
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    detachRelayActionEvent: () => {
        const clusterName = "customClusterEwelink";
        const actionLookup = {
            1: "single_click",
            2: "double_click",
            3: "long_press",
            4: "switch_on",
            5: "switch_off",
        };
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport"],
                convert: (model, msg) => {
                    if (msg.data.detachRelayActionEvent === undefined)
                        return;
                    const action = actionLookup[msg.data.detachRelayActionEvent];
                    if (action === undefined)
                        return;
                    return { action };
                },
            },
        ];
        return {
            exposes: [e.action(Object.values(actionLookup))],
            fromZigbee,
            toZigbee: [],
            isModernExtend: true,
        };
    },
    localFastSceneConfiguration: (args = {}) => {
        const clusterName = "customClusterEwelink";
        const attributeName = "localFastSceneConfiguration";
        const sceneProperty = "power_protector";
        const powerProtectorType = 0x02;
        const hasSwitch = args.hasSwitch;
        const ranges = {
            maxCurrentProtect: { min: 0.1, max: 16 },
            maxPowerProtect: { min: 2, max: 3840 },
            voltageProtect: { min: 85, max: 277 },
        };
        const powerProtectorExpose = e.composite(sceneProperty, sceneProperty, ea.STATE_SET);
        if (hasSwitch) {
            powerProtectorExpose
                .withFeature(e
                .numeric("max_current_protect", ea.STATE_SET)
                .withUnit("A")
                .withValueMin(ranges.maxCurrentProtect.min)
                .withValueMax(ranges.maxCurrentProtect.max))
                .withFeature(e
                .numeric("max_power_protect", ea.STATE_SET)
                .withUnit("W")
                .withValueMin(ranges.maxPowerProtect.min)
                .withValueMax(ranges.maxPowerProtect.max))
                .withFeature(e.binary("max_voltage_protect_enabled", ea.STATE_SET, true, false))
                .withFeature(e
                .numeric("max_voltage_protect", ea.STATE_SET)
                .withUnit("V")
                .withValueMin(ranges.voltageProtect.min)
                .withValueMax(ranges.voltageProtect.max))
                .withFeature(e.binary("min_voltage_protect_enabled", ea.STATE_SET, true, false))
                .withFeature(e
                .numeric("min_voltage_protect", ea.STATE_SET)
                .withUnit("V")
                .withValueMin(ranges.voltageProtect.min)
                .withValueMax(ranges.voltageProtect.max))
                .withFeature(e.binary("external_switch_only_recovery", ea.STATE_SET, true, false))
                .withFeature(e.binary("auto_recovery", ea.STATE_SET, true, false));
        }
        else {
            powerProtectorExpose
                .withLabel("Electrical Monitoring")
                .withFeature(e
                .numeric("max_current_protect", ea.STATE_SET)
                .withUnit("A")
                .withValueMin(ranges.maxCurrentProtect.min)
                .withValueMax(ranges.maxCurrentProtect.max)
                .withLabel("Overcurrent Monitoring"))
                .withFeature(e
                .numeric("max_power_protect", ea.STATE_SET)
                .withUnit("W")
                .withValueMin(ranges.maxPowerProtect.min)
                .withValueMax(ranges.maxPowerProtect.max)
                .withLabel("Overpower Monitoring"))
                .withFeature(e.binary("max_voltage_protect_enabled", ea.STATE_SET, true, false).withLabel("Overvoltage Monitoring"))
                .withFeature(e
                .numeric("max_voltage_protect", ea.STATE_SET)
                .withUnit("V")
                .withValueMin(ranges.voltageProtect.min)
                .withValueMax(ranges.voltageProtect.max)
                .withLabel("Overvoltage Monitoring"))
                .withFeature(e.binary("min_voltage_protect_enabled", ea.STATE_SET, true, false).withLabel("Undervoltage Monitoring"))
                .withFeature(e
                .numeric("min_voltage_protect", ea.STATE_SET)
                .withUnit("V")
                .withValueMin(ranges.voltageProtect.min)
                .withValueMax(ranges.voltageProtect.max)
                .withLabel("Undervoltage Monitoring"));
        }
        const exposes = [powerProtectorExpose];
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (!(attributeName in msg.data))
                        return;
                    const bytes = (0, sonoff_1.zclArrayValueToBytes)(msg.data.localFastSceneConfiguration);
                    if (bytes === undefined)
                        return;
                    if (bytes.length < 3)
                        return;
                    const result = {};
                    let index = 3;
                    while (index + 1 < bytes.length) {
                        const reportedSceneType = bytes[index];
                        const length = bytes[index + 1];
                        index += 2;
                        const value = bytes.slice(index, index + length);
                        index += length;
                        if (reportedSceneType !== powerProtectorType)
                            continue;
                        if (value[0] !== 1) {
                            logger_1.logger.error(`Local fast scene ${sceneProperty} is reported as disabled. Ignoring disabled state and reporting scene data.`, NS);
                        }
                        const maxVoltageProtect = (0, sonoff_1.readUInt32LE)(value, 10);
                        const minVoltageProtect = (0, sonoff_1.readUInt32LE)(value, 14);
                        const scene = {
                            max_current_protect: (0, sonoff_1.readUInt32LE)(value, 1) / 1000,
                            max_power_protect: (0, sonoff_1.readUInt32LE)(value, 5) / 1000,
                            max_voltage_protect_enabled: !!(maxVoltageProtect & 0x80000000),
                            max_voltage_protect: (maxVoltageProtect & 0x7fffffff) / 1000,
                            min_voltage_protect_enabled: !!(minVoltageProtect & 0x80000000),
                            min_voltage_protect: (minVoltageProtect & 0x7fffffff) / 1000,
                        };
                        if (hasSwitch) {
                            scene.external_switch_only_recovery = value[9] === 1;
                            scene.auto_recovery = value[18] === 1;
                        }
                        result[sceneProperty] = scene;
                    }
                    return result;
                },
            },
        ];
        const toZigbee = [
            {
                key: [sceneProperty],
                convertSet: async (entity, key, value, meta) => {
                    utils.assertObject(value, key);
                    if (key !== sceneProperty) {
                        throw new Error(`Unsupported local fast scene: ${key}`);
                    }
                    const scene = value;
                    const getBoolean = (property) => {
                        const field = scene[property];
                        if (!utils.isBoolean(field)) {
                            throw new Error(`Invalid ${key}.${property}, expected boolean`);
                        }
                        return field;
                    };
                    const getCachedBoolean = (property) => {
                        const cachedScene = meta.state?.[sceneProperty];
                        const cachedField = cachedScene?.[property];
                        return utils.isBoolean(cachedField) ? cachedField : false;
                    };
                    const getConfiguredBoolean = (property, supported) => supported ? getBoolean(property) : getCachedBoolean(property);
                    const getNumber = (property) => {
                        const field = scene[property];
                        if (!utils.isNumber(field) || !Number.isFinite(field)) {
                            throw new Error(`Invalid ${key}.${property}, expected number`);
                        }
                        return field;
                    };
                    const assertRange = (property, value, min, max) => {
                        if (value < min || value > max) {
                            throw new Error(`Invalid ${key}.${property}, expected value between ${min} and ${max}`);
                        }
                    };
                    const sceneValue = [1];
                    const maxCurrentProtect = getNumber("max_current_protect");
                    const maxPowerProtect = getNumber("max_power_protect");
                    const maxVoltageProtect = getNumber("max_voltage_protect");
                    const minVoltageProtect = getNumber("min_voltage_protect");
                    assertRange("max_current_protect", maxCurrentProtect, ranges.maxCurrentProtect.min, ranges.maxCurrentProtect.max);
                    assertRange("max_power_protect", maxPowerProtect, ranges.maxPowerProtect.min, ranges.maxPowerProtect.max);
                    assertRange("max_voltage_protect", maxVoltageProtect, ranges.voltageProtect.min, ranges.voltageProtect.max);
                    assertRange("min_voltage_protect", minVoltageProtect, ranges.voltageProtect.min, ranges.voltageProtect.max);
                    sceneValue.push(...(0, sonoff_1.toUInt32LEBytes)(Math.round(maxCurrentProtect * 1000)));
                    sceneValue.push(...(0, sonoff_1.toUInt32LEBytes)(Math.round(maxPowerProtect * 1000)));
                    sceneValue.push(getConfiguredBoolean("external_switch_only_recovery", hasSwitch) ? 1 : 0);
                    const maxVoltage = Math.round(maxVoltageProtect * 1000) & 0x7fffffff;
                    const minVoltage = Math.round(minVoltageProtect * 1000) & 0x7fffffff;
                    sceneValue.push(...(0, sonoff_1.toUInt32LEBytes)((getBoolean("max_voltage_protect_enabled") ? 0x80000000 : 0) | maxVoltage));
                    sceneValue.push(...(0, sonoff_1.toUInt32LEBytes)((getBoolean("min_voltage_protect_enabled") ? 0x80000000 : 0) | minVoltage));
                    sceneValue.push(getConfiguredBoolean("auto_recovery", hasSwitch) ? 1 : 0, 1);
                    const bytes = [0x00, 0x01, 0x01, powerProtectorType, sceneValue.length & 0xff, ...sceneValue];
                    await entity.write(clusterName, {
                        [0x7016]: {
                            value: { elementType: zigbee_herdsman_1.Zcl.DataType.UINT8, elements: bytes },
                            type: zigbee_herdsman_1.Zcl.DataType.ARRAY,
                        },
                    }, utils.getOptions(meta.mapped, entity));
                    const state = { ...scene };
                    delete state.enabled;
                    return { state: { [key]: state } };
                },
                convertGet: async (entity) => {
                    await entity.read(clusterName, [attributeName], defaultResponseOptions);
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    faultCodeMiniZb1gs: () => {
        const clusterName = "customClusterEwelink";
        const attributeName = "faultCode";
        // 1GS only provides overheat detection.
        const faultStates = [{ name: "device_overheated", bit: 0b001 }];
        const exposes = faultStates.map((fault) => {
            return e.binary(fault.name, ea.STATE_GET, "Alarm Active", "Normal").withCategory("diagnostic");
        });
        const fromZigbee = [
            {
                cluster: clusterName,
                type: ["attributeReport", "readResponse"],
                convert: (model, msg) => {
                    if (msg.data.faultCode === undefined)
                        return;
                    const value = msg.data.faultCode;
                    utils.assertNumber(value);
                    const tlv = value >>> 0;
                    const type = (tlv >>> 24) & 0xff;
                    const length = (tlv >>> 16) & 0xff;
                    if (type !== 0x07 || length !== 0x02)
                        return;
                    const faultValue = tlv & 0xffff;
                    const result = {};
                    for (const fault of faultStates) {
                        result[fault.name] = (faultValue & fault.bit) !== 0 ? "Alarm Active" : "Normal";
                    }
                    return result;
                },
            },
        ];
        const toZigbee = [
            {
                key: faultStates.map((fault) => fault.name),
                convertGet: async (entity) => {
                    await entity.read(clusterName, [attributeName], defaultResponseOptions);
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            toZigbee,
            isModernExtend: true,
        };
    },
    temperatureHumidityCalculatedValues() {
        const calculate = (temperature, humidity) => {
            const saturatedVaporPressure = 0.61078 * Math.exp((17.27 * temperature) / (temperature + 237.3));
            const actualVaporPressure = (humidity / 100) * saturatedVaporPressure;
            const vpd = utils.precisionRound(saturatedVaporPressure - actualVaporPressure, 2);
            if (humidity <= 0) {
                return { vpd };
            }
            const alpha = (17.27 * temperature) / (temperature + 237.7) + Math.log(humidity / 100);
            const dewPoint = utils.precisionRound((237.7 * alpha) / (17.27 - alpha), 1);
            return { dew_point: dewPoint, vpd };
        };
        const exposes = [
            e.numeric("dew_point", ea.STATE).withUnit("°C").withDescription("Calculated dew point temperature"),
            e.numeric("vpd", ea.STATE).withUnit("kPa").withDescription("Calculated vapor pressure deficit"),
        ];
        const fromZigbee = [
            {
                cluster: "msTemperatureMeasurement",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (msg.data.measuredValue === undefined || !utils.isNumber(meta.state.humidity))
                        return;
                    return calculate(msg.data.measuredValue / 100, meta.state.humidity);
                },
            },
            {
                cluster: "msRelativeHumidity",
                type: ["attributeReport", "readResponse"],
                convert: (model, msg, publish, options, meta) => {
                    if (msg.data.measuredValue === undefined || !utils.isNumber(meta.state.temperature))
                        return;
                    return calculate(meta.state.temperature, msg.data.measuredValue / 100);
                },
            },
        ];
        return {
            exposes,
            fromZigbee,
            isModernExtend: true,
        };
    },
    // Clear the stale battery state when the device reports that it is using external power.
    powerSupplyModeWithChangeBatteryState: () => {
        const lookup = { battery: 0x00, external: 0x01 };
        return m.enumLookup({
            name: "power_supply_mode",
            lookup,
            cluster: "customClusterEwelink",
            attribute: "powerSupplyMode",
            access: "STATE_GET",
            entityCategory: "diagnostic",
            description: "Current power source of the device.",
            fzConvert: (_model, msg, _publish, _options, meta) => {
                if (msg.data.powerSupplyMode === undefined)
                    return;
                const powerSupplyMode = utils.getFromLookupByValue(msg.data.powerSupplyMode, lookup);
                if (powerSupplyMode === "external") {
                    void msg.endpoint.read("genPowerCfg", ["batteryPercentageRemaining"]);
                }
                return {
                    power_supply_mode: powerSupplyMode,
                    ...(powerSupplyMode === "external" && meta.state.battery !== 100 ? { battery: null } : {}),
                };
            },
        });
    },
    // extend the original ability of battery
    batteryWithPowerSupplyMode: () => {
        const batteryExtend = m.battery();
        return {
            ...batteryExtend,
            fromZigbee: [fzLocal.snzb_09p_battery],
        };
    },
};
exports.definitions = [
    {
        zigbeeModel: ["NSPanelP-Router", "Cuber ZLI Router"],
        model: "NSPanelP-Router",
        vendor: "SONOFF",
        description: "Router",
        fromZigbee: [fz.linkquality_from_basic],
        toZigbee: [],
        exposes: [],
    },
    {
        zigbeeModel: ["BASICZBR3"],
        model: "BASICZBR3",
        vendor: "SONOFF",
        description: "Zigbee smart switch",
        // configureReporting fails for this device
        extend: [m.onOff({ powerOnBehavior: false, skipDuplicateTransaction: true, configureReporting: false })],
    },
    {
        zigbeeModel: ["ZBMINI-L"],
        model: "ZBMINI-L",
        vendor: "SONOFF",
        description: "Zigbee smart switch (no neutral)",
        extend: [m.onOff()],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            // Unbind genPollCtrl to prevent device from sending checkin message.
            // Zigbee-herdsmans responds to the checkin message which causes the device
            // to poll slower.
            // https://github.com/Koenkk/zigbee2mqtt/issues/11676
            const endpoint = device.getEndpoint(1);
            if (endpoint.binds.some((b) => b.cluster.name === "genPollCtrl")) {
                await device.getEndpoint(1).unbind("genPollCtrl", coordinatorEndpoint);
            }
            device.powerSource = "Mains (single phase)";
            device.save();
        },
    },
    {
        zigbeeModel: ["ZBMINIL2"],
        model: "ZBMINIL2",
        vendor: "SONOFF",
        description: "Zigbee smart switch (no neutral)",
        extend: [m.onOff()],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            // Unbind genPollCtrl to prevent device from sending checkin message.
            // Zigbee-herdsmans responds to the checkin message which causes the device
            // to poll slower.
            // https://github.com/Koenkk/zigbee2mqtt/issues/11676
            const endpoint = device.getEndpoint(1);
            if (endpoint.binds.some((b) => b.cluster.name === "genPollCtrl")) {
                await device.getEndpoint(1).unbind("genPollCtrl", coordinatorEndpoint);
            }
            device.powerSource = "Mains (single phase)";
            device.save();
        },
    },
    {
        zigbeeModel: ["01MINIZB"],
        model: "ZBMINI",
        vendor: "SONOFF",
        description: "Zigbee two way smart switch",
        extend: [m.onOff({ powerOnBehavior: false }), m.forcePowerSource({ powerSource: "Mains (single phase)" })],
    },
    {
        zigbeeModel: ["S31 Lite zb"],
        model: "S31ZB",
        vendor: "SONOFF",
        description: "Zigbee smart plug (US version)",
        extend: [m.onOff({ powerOnBehavior: false, skipDuplicateTransaction: true, configureReporting: false })],
        configure: async (device, coordinatorEndpoint) => {
            // Device does not support configureReporting for onOff, therefore just bind here.
            // https://github.com/Koenkk/zigbee2mqtt/issues/20618
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff"]);
        },
    },
    {
        fingerprint: [
            // ModelID is from the temperature/humidity sensor (SNZB-02) but this is SNZB-04, wrong modelID in firmware?
            // https://github.com/Koenkk/zigbee-herdsman-converters/issues/1449
            {
                type: "EndDevice",
                manufacturerName: "eWeLink",
                modelID: "TH01",
                endpoints: [{ ID: 1, profileID: 260, deviceID: 1026, inputClusters: [0, 3, 1280, 1], outputClusters: [3] }],
            },
        ],
        zigbeeModel: ["DS01", "SNZB-04", "CK-TLSR8656-SS5-01(7003)"],
        model: "SNZB-04",
        vendor: "SONOFF",
        whiteLabel: [
            { vendor: "eWeLink", model: "RHK06" },
            {
                vendor: "eWeLink",
                model: "SNZB-04_eWeLink",
                fingerprint: [{ modelID: "SNZB-04", manufacturerName: "eWeLink" }],
            },
            {
                vendor: "eWeLink",
                model: "CK-TLSR8656-SS5-01(7003)",
                fingerprint: [{ modelID: "CK-TLSR8656-SS5-01(7003)", manufacturerName: "eWeLink" }],
            },
            tuya.whitelabel("Tuya", "WL-19DWZ", "Contact sensor", ["_TZ3000_n2egfsli"]),
            tuya.whitelabel("zbeacon", "DS01", "Contact sensor", ["zbeacon"]),
        ],
        description: "Contact sensor",
        extend: [ewelinkBattery(), m.iasZoneAlarm({ zoneType: "contact", zoneAttributes: ["alarm_1", "battery_low"] })],
    },
    {
        zigbeeModel: ["WB01", "WB-01", "SNZB-01", "CK-TLSR8656-SS5-01(7000)"],
        model: "SNZB-01",
        vendor: "SONOFF",
        whiteLabel: [
            { vendor: "eWeLink", model: "RHK07" },
            {
                vendor: "eWeLink",
                model: "SNZB-01_eWeLink",
                fingerprint: [{ modelID: "SNZB-01", manufacturerName: "eWeLink" }],
            },
            {
                vendor: "eWeLink",
                model: "CK-TLSR8656-SS5-01(7000)",
                fingerprint: [{ modelID: "CK-TLSR8656-SS5-01(7000)", manufacturerName: "eWeLink" }],
            },
        ],
        description: "Wireless button",
        extend: [ewelinkBattery()],
        exposes: [e.action(["single", "double", "long"])],
        fromZigbee: [fz.ewelink_action],
        toZigbee: [],
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff"]);
        },
    },
    {
        zigbeeModel: ["KF01", "KF-01"],
        model: "SNZB-01-KF",
        vendor: "SONOFF",
        description: "Wireless button",
        extend: [ewelinkBattery()],
        exposes: [e.action(["off", "single"])],
        fromZigbee: [fz.command_status_change_notification_action],
        toZigbee: [],
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["ssIasZone"]);
        },
    },
    {
        fingerprint: [
            // ModelID is from the button (SNZB-01) but this is SNZB-02, wrong modelID in firmware?
            // https://github.com/Koenkk/zigbee2mqtt/issues/4338
            {
                type: "EndDevice",
                manufacturerName: "eWeLink",
                modelID: "WB01",
                endpoints: [{ ID: 1, profileID: 260, deviceID: 770, inputClusters: [0, 3, 1026, 1029, 1], outputClusters: [3] }],
            },
            {
                type: "EndDevice",
                manufacturerName: "eWeLink",
                modelID: "66666",
                endpoints: [{ ID: 1, profileID: 260, deviceID: 770, inputClusters: [0, 3, 1026, 1029, 1], outputClusters: [3] }],
            },
            {
                type: "EndDevice",
                manufacturerName: "eWeLink",
                modelID: "DS01",
                endpoints: [{ ID: 1, profileID: 260, deviceID: 770, inputClusters: [0, 3, 1026, 1029, 1], outputClusters: [3] }],
            },
            {
                type: "EndDevice",
                manufacturerName: "Zbeacon",
                modelID: "TH01",
            },
        ],
        zigbeeModel: ["TH01", "SNZB-02", "CK-TLSR8656-SS5-01(7014)"],
        model: "SNZB-02",
        vendor: "SONOFF",
        whiteLabel: [
            { vendor: "eWeLink", model: "RHK08" },
            {
                vendor: "eWeLink",
                model: "SNZB-02_eWeLink",
                fingerprint: [{ modelID: "SNZB-02", manufacturerName: "eWeLink" }],
            },
            {
                vendor: "eWeLink",
                model: "CK-TLSR8656-SS5-01(7014)",
                fingerprint: [{ modelID: "CK-TLSR8656-SS5-01(7014)", manufacturerName: "eWeLink" }],
            },
            {
                vendor: "Zbeacon",
                model: "TH01",
                fingerprint: [{ modelID: "TH01", manufacturerName: "Zbeacon" }],
            },
        ],
        description: "Temperature and humidity sensor",
        exposes: [e.battery(), e.temperature(), e.humidity(), e.battery_voltage()],
        fromZigbee: [fzLocal.SNZB02_temperature, fz.humidity, fz.battery],
        toZigbee: [],
        configure: async (device, coordinatorEndpoint) => {
            device.powerSource = "Battery";
            device.save();
            try {
                const endpoint = device.getEndpoint(1);
                const bindClusters = ["msTemperatureMeasurement", "msRelativeHumidity", "genPowerCfg"];
                await reporting.bind(endpoint, coordinatorEndpoint, bindClusters);
                await reporting.temperature(endpoint, { min: 30, max: 3600, change: 20 });
                await reporting.humidity(endpoint, { min: 30, max: constants.repInterval.HOUR, change: 100 });
                await reporting.batteryVoltage(endpoint, { min: 3600, max: constants.repInterval.MAX });
                await reporting.batteryPercentageRemaining(endpoint, { min: 3600, max: 65000 });
            }
            catch (e) {
                /* Not required for all: https://github.com/Koenkk/zigbee2mqtt/issues/5562 */
                logger_1.logger.error(`Configure failed: ${e}`, NS);
            }
        },
    },
    {
        zigbeeModel: ["Dongle-PMG24_ZBRouter"],
        model: "Dongle-PMG24",
        vendor: "SONOFF",
        description: "Zigbee Dongle Plus MG24 (EFR32MG24) with router firmware",
        fromZigbee: [fz.linkquality_from_basic],
        toZigbee: [],
        exposes: [],
    },
    {
        zigbeeModel: ["SNZB-02D"],
        model: "SNZB-02D",
        vendor: "SONOFF",
        description: "Temperature and humidity sensor with screen",
        ota: true,
        extend: [
            m.deviceAddCustomCluster("customSonoffSnzb02d", {
                name: "customSonoffSnzb02d",
                ID: 0xfc11,
                attributes: {
                    comfortTemperatureMax: { name: "comfortTemperatureMax", ID: 0x0003, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    comfortTemperatureMin: { name: "comfortTemperatureMin", ID: 0x0004, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    comfortHumidityMin: { name: "comfortHumidityMin", ID: 0x0005, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    comfortHumidityMax: { name: "comfortHumidityMax", ID: 0x0006, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    temperatureUnits: { name: "temperatureUnits", ID: 0x0007, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    temperatureCalibration: { name: "temperatureCalibration", ID: 0x2003, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    humidityCalibration: { name: "humidityCalibration", ID: 0x2004, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                },
                commands: {},
                commandsResponse: {},
            }),
            m.battery(),
            m.temperature(),
            m.humidity(),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
            m.numeric({
                name: "comfort_temperature_min",
                cluster: "customSonoffSnzb02d",
                attribute: "comfortTemperatureMin",
                entityCategory: "config",
                description: "Minimum temperature that is considered comfortable. The device will display ❄️ when the temperature is lower than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: -10,
                valueMax: 60,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "comfort_temperature_max",
                cluster: "customSonoffSnzb02d",
                attribute: "comfortTemperatureMax",
                entityCategory: "config",
                description: "Maximum temperature that is considered comfortable. The device will display 🔥 when the temperature is higher than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: -10,
                valueMax: 60,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "comfort_humidity_min",
                cluster: "customSonoffSnzb02d",
                attribute: "comfortHumidityMin",
                entityCategory: "config",
                description: "Minimum relative humidity that is considered comfortable. The device will display ☀️ when the humidity is lower than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: 5,
                valueMax: 95,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
            m.numeric({
                name: "comfort_humidity_max",
                cluster: "customSonoffSnzb02d",
                attribute: "comfortHumidityMax",
                entityCategory: "config",
                description: "Maximum relative humidity that is considered comfortable. The device will display 💧 when the humidity is higher than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: 5,
                valueMax: 95,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
            m.enumLookup({
                name: "temperature_units",
                lookup: { celsius: 0, fahrenheit: 1 },
                cluster: "customSonoffSnzb02d",
                attribute: "temperatureUnits",
                entityCategory: "config",
                description: "The unit of the temperature displayed on the device screen. Note: wake up the device by pressing the button on the back before changing this value.",
            }),
            m.numeric({
                name: "temperature_calibration",
                cluster: "customSonoffSnzb02d",
                attribute: "temperatureCalibration",
                entityCategory: "config",
                description: "Offset to add/subtract to the reported temperature",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "humidity_calibration",
                cluster: "customSonoffSnzb02d",
                attribute: "humidityCalibration",
                entityCategory: "config",
                description: "Offset to add/subtract to the reported relative humidity",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
        ],
    },
    {
        zigbeeModel: ["SNZB-02LD"],
        model: "SNZB-02LD",
        vendor: "SONOFF",
        description: "Waterproof (IP65) sensor with screen and probe temperature detection",
        ota: true,
        extend: [
            m.deviceAddCustomCluster("customSonoffSnzb02ld", {
                name: "customSonoffSnzb02ld",
                ID: 0xfc11,
                attributes: {
                    temperatureUnits: { name: "temperatureUnits", ID: 0x0007, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    temperatureCalibration: { name: "temperatureCalibration", ID: 0x2003, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                },
                commands: {},
                commandsResponse: {},
            }),
            m.battery(),
            m.temperature(),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
            m.enumLookup({
                name: "temperature_units",
                lookup: { celsius: 0, fahrenheit: 1 },
                cluster: "customSonoffSnzb02ld",
                attribute: "temperatureUnits",
                entityCategory: "config",
                description: "The unit of the temperature displayed on the device screen. Note: wake up the device by pressing the button on the back before changing this value.",
            }),
            m.numeric({
                name: "temperature_calibration",
                cluster: "customSonoffSnzb02ld",
                attribute: "temperatureCalibration",
                entityCategory: "config",
                description: "Offset to add/subtract to the reported temperature",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
        ],
    },
    {
        zigbeeModel: ["SNZB-02WD"],
        model: "SNZB-02WD",
        vendor: "SONOFF",
        description: "Waterproof (IP65) temperature and humidity sensor with screen",
        ota: true,
        extend: [
            m.deviceAddCustomCluster("customSonoffSnzb02wd", {
                name: "customSonoffSnzb02wd",
                ID: 0xfc11,
                attributes: {
                    temperatureUnits: { name: "temperatureUnits", ID: 0x0007, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    temperatureCalibration: { name: "temperatureCalibration", ID: 0x2003, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    humidityCalibration: { name: "humidityCalibration", ID: 0x2004, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                },
                commands: {},
                commandsResponse: {},
            }),
            m.battery({ voltage: true, voltageReporting: true }),
            m.temperature(),
            m.humidity(),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
            m.enumLookup({
                name: "temperature_units",
                lookup: { celsius: 0, fahrenheit: 1 },
                cluster: "customSonoffSnzb02wd",
                attribute: "temperatureUnits",
                entityCategory: "config",
                description: "The unit of the temperature displayed on the device screen. Note: wake up the device by pressing the button on the back before changing this value.",
            }),
            m.numeric({
                name: "temperature_calibration",
                cluster: "customSonoffSnzb02wd",
                attribute: "temperatureCalibration",
                entityCategory: "config",
                description: "Offset to add/subtract to the reported temperature",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "humidity_calibration",
                cluster: "customSonoffSnzb02wd",
                attribute: "humidityCalibration",
                entityCategory: "config",
                description: "Offset to add/subtract to the reported relative humidity",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
        ],
    },
    {
        zigbeeModel: ["SNZB-02DR2"],
        model: "SNZB-02DR2",
        vendor: "SONOFF",
        description: "Temperature and humidity sensor with display and relay control",
        extend: [
            m.deviceAddCustomCluster("customSonoffSnzb02dr2", {
                name: "customSonoffSnzb02dr2",
                ID: 0xfc11,
                attributes: {
                    comfortTemperatureMax: { name: "comfortTemperatureMax", ID: 0x0003, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    comfortTemperatureMin: { name: "comfortTemperatureMin", ID: 0x0004, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    comfortHumidityMin: { name: "comfortHumidityMin", ID: 0x0005, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    comfortHumidityMax: { name: "comfortHumidityMax", ID: 0x0006, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    temperatureUnits: { name: "temperatureUnits", ID: 0x0007, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    temperatureCalibration: { name: "temperatureCalibration", ID: 0x2003, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    humidityCalibration: { name: "humidityCalibration", ID: 0x2004, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    temperatureSensorSelect: { name: "temperatureSensorSelect", ID: 0x600e, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    externalTemperature: { name: "externalTemperature", ID: 0x600d, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    externalHumidity: { name: "externalHumidity", ID: 0x6018, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                },
                commands: {},
                commandsResponse: {},
            }),
            m.battery({ voltage: true, voltageReporting: true }),
            m.temperature(),
            m.humidity(),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
            m.enumLookup({
                name: "temperature_sensor_select",
                lookup: { internal: 0, external: 1 },
                cluster: "customSonoffSnzb02dr2",
                attribute: "temperatureSensorSelect",
                entityCategory: "config",
                description: "Data source shown on the display. Set to 'external' to enable the external display and show the values written to external_temperature and external_humidity; set to 'internal' to show the built-in sensor again.",
            }),
            m.numeric({
                name: "external_temperature",
                cluster: "customSonoffSnzb02dr2",
                attribute: "externalTemperature",
                description: "Temperature value to display when temperature_sensor_select is set to 'external'. Push readings here from another sensor (e.g. via an automation).",
                access: "STATE_SET",
                valueMin: -50,
                valueMax: 125,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "external_humidity",
                cluster: "customSonoffSnzb02dr2",
                attribute: "externalHumidity",
                description: "Relative humidity value to display when temperature_sensor_select is set to 'external'. Push readings here from another sensor. Requires device firmware 1.0.4 or later.",
                access: "STATE_SET",
                valueMin: 0,
                valueMax: 100,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
            m.numeric({
                name: "comfort_temperature_min",
                cluster: "customSonoffSnzb02dr2",
                attribute: "comfortTemperatureMin",
                entityCategory: "config",
                description: "Minimum temperature that is considered comfortable. The device will display ❄️ when the temperature is lower than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: -10,
                valueMax: 60,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "comfort_temperature_max",
                cluster: "customSonoffSnzb02dr2",
                attribute: "comfortTemperatureMax",
                entityCategory: "config",
                description: "Maximum temperature that is considered comfortable. The device will display 🔥 when the temperature is higher than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: -10,
                valueMax: 60,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "comfort_humidity_min",
                cluster: "customSonoffSnzb02dr2",
                attribute: "comfortHumidityMin",
                entityCategory: "config",
                description: "Minimum relative humidity that is considered comfortable. The device will display ☀️ when the humidity is lower than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: 5,
                valueMax: 95,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
            m.numeric({
                name: "comfort_humidity_max",
                cluster: "customSonoffSnzb02dr2",
                attribute: "comfortHumidityMax",
                entityCategory: "config",
                description: "Maximum relative humidity that is considered comfortable. The device will display 💧 when the humidity is higher than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: 5,
                valueMax: 95,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
            m.enumLookup({
                name: "temperature_units",
                lookup: { celsius: 0, fahrenheit: 1 },
                cluster: "customSonoffSnzb02dr2",
                attribute: "temperatureUnits",
                entityCategory: "config",
                description: "The unit of the temperature displayed on the device screen. Note: wake up the device by pressing the button on the back before changing this value.",
            }),
            m.numeric({
                name: "temperature_calibration",
                cluster: "customSonoffSnzb02dr2",
                attribute: "temperatureCalibration",
                entityCategory: "config",
                description: "Offset to add/subtract to the reported temperature",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "humidity_calibration",
                cluster: "customSonoffSnzb02dr2",
                attribute: "humidityCalibration",
                entityCategory: "config",
                description: "Offset to add/subtract to the reported relative humidity",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
        ],
        ota: true,
    },
    {
        fingerprint: [
            {
                type: "EndDevice",
                manufacturerName: "eWeLink",
                modelID: "66666",
                endpoints: [{ ID: 1, profileID: 260, deviceID: 1026, inputClusters: [0, 3, 1280, 1], outputClusters: [3] }],
            },
            {
                // SNZB-O3 OUVOPO Wireless Motion Sensor (2023)
                type: "EndDevice",
                manufacturerName: "eWeLink",
                modelID: "SNZB-03",
                endpoints: [{ ID: 1, profileID: 260, deviceID: 1026, inputClusters: [0, 3, 1280, 1], outputClusters: [3] }],
            },
            {
                type: "EndDevice",
                manufacturerName: "eWeLink",
                modelID: "SNZB-03",
                endpoints: [{ ID: 1, profileID: 260, deviceID: 1026, inputClusters: [0, 3, 1, 1280, 32], outputClusters: [25] }],
            },
        ],
        zigbeeModel: ["MS01", "MSO1", "SNZB-03", "CK-TLSR8656-SS5-01(7002)"],
        model: "SNZB-03",
        vendor: "SONOFF",
        whiteLabel: [
            { vendor: "eWeLink", model: "RHK09" },
            { vendor: "eWeLink", model: "SQ510A" },
            {
                vendor: "eWeLink",
                model: "SNZB-03_eWeLink",
                fingerprint: [
                    {
                        // SNZB-O3 OUVOPO Wireless Motion Sensor (2023)
                        type: "EndDevice",
                        manufacturerName: "eWeLink",
                        modelID: "SNZB-03",
                        endpoints: [{ ID: 1, profileID: 260, deviceID: 1026, inputClusters: [0, 3, 1280, 1], outputClusters: [3] }],
                    },
                    {
                        type: "EndDevice",
                        manufacturerName: "eWeLink",
                        modelID: "SNZB-03",
                        endpoints: [{ ID: 1, profileID: 260, deviceID: 1026, inputClusters: [0, 3, 1, 1280, 32], outputClusters: [25] }],
                    },
                ],
            },
            {
                vendor: "eWeLink",
                model: "CK-TLSR8656-SS5-01(7002)",
                fingerprint: [
                    {
                        type: "EndDevice",
                        manufacturerName: "eWeLink",
                        modelID: "CK-TLSR8656-SS5-01(7002)",
                    },
                ],
            },
        ],
        description: "Motion sensor",
        extend: [ewelinkBattery(), m.iasZoneAlarm({ zoneType: "occupancy", zoneAttributes: ["alarm_1", "battery_low"] })],
    },
    {
        zigbeeModel: ["S26R2ZB"],
        model: "S26R2ZB",
        vendor: "SONOFF",
        description: "Zigbee smart plug",
        extend: [m.onOff({ powerOnBehavior: false })],
    },
    {
        zigbeeModel: ["S40LITE"],
        model: "S40ZBTPB",
        vendor: "SONOFF",
        description: "15A Zigbee smart plug",
        extend: [m.onOff({ powerOnBehavior: false, skipDuplicateTransaction: true })],
        ota: true,
    },
    {
        zigbeeModel: ["DONGLE-E_R"],
        model: "ZBDongle-E",
        vendor: "SONOFF",
        description: "Sonoff Zigbee 3.0 USB Dongle Plus (EFR32MG21) with router firmware",
        fromZigbee: [fz.linkquality_from_basic, fzLocal.router_config],
        toZigbee: [],
        exposes: [e.numeric("light_indicator_level", ea.STATE).withDescription("Brightness of the indicator light").withAccess(ea.STATE)],
        extend: [m.forcePowerSource({ powerSource: "Mains (single phase)" })],
    },
    {
        zigbeeModel: ["Dongle-M_ZBRouter"],
        model: "Dongle-M",
        vendor: "SONOFF",
        description: "Dongle Max MG24 (EFR32MG24) with router firmware",
        fromZigbee: [fz.linkquality_from_basic],
        toZigbee: [],
        extend: [m.forcePowerSource({ powerSource: "Mains (single phase)" })],
    },
    {
        zigbeeModel: ["Dongle-LMG21_ZBRouter"],
        model: "Dongle-LMG21",
        vendor: "SONOFF",
        description: "Dongle Lite Zigbee MG21 (EFR32MG21) with router firmware",
        fromZigbee: [fz.linkquality_from_basic],
        toZigbee: [],
        extend: [m.forcePowerSource({ powerSource: "Mains (single phase)" })],
    },
    {
        zigbeeModel: ["Dongle-PP10"],
        model: "Dongle-PP10",
        vendor: "SONOFF",
        description: "Dongle Plus CC2674P10 (CC2674P10) with router firmware",
        fromZigbee: [fz.linkquality_from_basic],
        toZigbee: [],
        extend: [m.forcePowerSource({ powerSource: "Mains (single phase)" })],
    },
    {
        zigbeeModel: ["ZBCurtain"],
        model: "ZBCurtain",
        vendor: "SONOFF",
        description: "Zigbee smart curtain motor",
        fromZigbee: [fz.cover_position_tilt, fz.battery],
        toZigbee: [tz.cover_state, tz.cover_position_tilt],
        exposes: [e.cover_position(), e.battery()],
    },
    {
        zigbeeModel: ["SA-029-1", "SA-028-1"],
        model: "SA-028/SA-029",
        vendor: "SONOFF",
        whiteLabel: [{ vendor: "Woolley", model: "SA-029-1" }],
        description: "Smart Plug",
        extend: [m.onOff(), m.forcePowerSource({ powerSource: "Mains (single phase)" })],
    },
    {
        zigbeeModel: ["Z111PL0H-1JX"],
        model: "Z111PL0H-1JX",
        vendor: "SONOFF",
        whiteLabel: [{ vendor: "Woolley", model: "SA-028-1" }],
        description: "Smart Plug",
        extend: [m.onOff({ powerOnBehavior: false }), m.forcePowerSource({ powerSource: "Mains (single phase)" })],
    },
    {
        zigbeeModel: ["SNZB-01P"],
        model: "SNZB-01P",
        vendor: "SONOFF",
        description: "Wireless button",
        extend: [
            ewelinkAction(),
            m.battery({
                percentageReportingConfig: { min: 3600, max: 7200, change: 0 },
                voltage: true,
                voltageReporting: true,
                voltageReportingConfig: { min: 3600, max: 7200, change: 0 },
            }),
        ],
        ota: true,
    },
    {
        zigbeeModel: ["SNZB-01M"],
        model: "SNZB-01M",
        vendor: "SONOFF",
        description: "Four-way wireless button",
        fromZigbee: [fzLocal.key_action_event],
        exposes: [
            e.action([
                "single_button_1",
                "double_button_1",
                "long_button_1",
                "triple_button_1",
                "single_button_2",
                "double_button_2",
                "long_button_2",
                "triple_button_2",
                "single_button_3",
                "double_button_3",
                "long_button_3",
                "triple_button_3",
                "single_button_4",
                "double_button_4",
                "long_button_4",
                "triple_button_4",
            ]),
        ],
        extend: [
            m.battery({ percentage: true, percentageReporting: true }),
            m.deviceAddCustomCluster("customSonoffSnzb01m", {
                name: "customSonoffSnzb01m",
                ID: 0xfc12,
                attributes: {
                    keyActionEvent: { name: "keyActionEvent", ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                },
                commands: {},
                commandsResponse: {},
            }),
        ],
        ota: true,
    },
    {
        zigbeeModel: ["SNZB-02P"],
        model: "SNZB-02P",
        vendor: "SONOFF",
        description: "Temperature and humidity sensor",
        ota: true,
        extend: [
            m.deviceAddCustomCluster("customSonoffSnzb02p", {
                name: "customSonoffSnzb02p",
                ID: 0xfc11,
                attributes: {
                    temperatureCalibration: { name: "temperatureCalibration", ID: 0x2003, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    humidityCalibration: { name: "humidityCalibration", ID: 0x2004, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                },
                commands: {},
                commandsResponse: {},
            }),
            m.battery({ percentage: true }),
            m.temperature(),
            m.humidity(),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
            m.numeric({
                name: "temperature_calibration",
                cluster: "customSonoffSnzb02p",
                attribute: "temperatureCalibration",
                entityCategory: "config",
                description: "Offset to add/subtract to the reported temperature",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "humidity_calibration",
                cluster: "customSonoffSnzb02p",
                attribute: "humidityCalibration",
                entityCategory: "config",
                description: "Offset to add/subtract to the reported relative humidity",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
        ],
    },
    {
        zigbeeModel: ["SNZB-04P"],
        model: "SNZB-04P",
        vendor: "SONOFF",
        description: "Contact sensor",
        extend: [
            m.iasZoneAlarm({ zoneType: "contact", zoneAttributes: ["alarm_1", "battery_low"] }),
            m.binary({
                name: "tamper",
                cluster: 0xfc11,
                attribute: { ID: 0x2000, type: 0x20 },
                description: "Tamper-proof status",
                valueOn: [true, 0x01],
                valueOff: [false, 0x00],
                zigbeeCommandOptions: { manufacturerCode: zigbee_herdsman_1.Zcl.ManufacturerCode.SHENZHEN_COOLKIT_TECHNOLOGY_CO_LTD },
                access: "STATE_GET",
            }),
            ewelinkBattery(),
        ],
        ota: true,
    },
    {
        zigbeeModel: ["SNZB-04PR2"],
        model: "SNZB-04PR2",
        vendor: "SONOFF",
        description: "Contact sensor",
        version: "0.0.1",
        extend: [
            m.iasZoneAlarm({ zoneType: "contact", zoneAttributes: ["alarm_1", "battery_low"] }),
            m.binary({
                name: "tamper",
                cluster: 0xfc11,
                attribute: { ID: 0x2000, type: 0x20 },
                description: "Tamper-proof status",
                valueOn: [true, 0x01],
                valueOff: [false, 0x00],
                zigbeeCommandOptions: { manufacturerCode: zigbee_herdsman_1.Zcl.ManufacturerCode.SHENZHEN_COOLKIT_TECHNOLOGY_CO_LTD },
                access: "STATE_GET",
            }),
            m.battery({
                percentageReportingConfig: { min: 3600, max: 7200, change: 2 },
                voltage: true,
                voltageReporting: true,
                voltageReportingConfig: false,
            }),
        ],
        ota: true,
    },
    {
        zigbeeModel: ["SNZB-03P"],
        model: "SNZB-03P",
        vendor: "SONOFF",
        description: "Zigbee PIR sensor",
        extend: [
            m.occupancy(),
            m.numeric({
                name: "motion_timeout",
                cluster: 0x0406,
                attribute: { ID: 0x0020, type: 0x21 },
                description: "Occupied to unoccupied delay",
                valueMin: 5,
                valueMax: 60,
            }),
            m.enumLookup({
                name: "illumination",
                lookup: { dim: 0, bright: 1 },
                cluster: 0xfc11,
                attribute: { ID: 0x2001, type: 0x20 },
                zigbeeCommandOptions: { manufacturerCode: zigbee_herdsman_1.Zcl.ManufacturerCode.SHENZHEN_COOLKIT_TECHNOLOGY_CO_LTD },
                description: "Only updated when occupancy is detected",
                access: "STATE",
            }),
            ewelinkBattery(),
        ],
        ota: true,
    },
    {
        zigbeeModel: ["SNZB-05P"],
        model: "SNZB-05P",
        vendor: "SONOFF",
        ota: true,
        description: "Zigbee water sensor",
        version: "0.0.1",
        extend: [
            m.battery(),
            m.iasZoneAlarm({ zoneType: "water_leak", zoneAttributes: ["alarm_1", "battery_low"] }),
            m.forcePowerSource({ powerSource: "Battery" }),
        ],
    },
    {
        zigbeeModel: ["SNZB-06P"],
        model: "SNZB-06P",
        vendor: "SONOFF",
        description: "Zigbee occupancy sensor",
        extend: [
            m.occupancy({ reporting: false }),
            m.numeric({
                name: "occupancy_timeout",
                cluster: 0x0406,
                attribute: { ID: 0x0020, type: 0x21 },
                description: "Occupied to unoccupied delay",
                valueMin: 15,
                valueMax: 65535,
            }),
            m.enumLookup({
                name: "occupancy_sensitivity",
                lookup: { low: 1, medium: 2, high: 3 },
                cluster: 0x0406,
                attribute: { ID: 0x0022, type: 0x20 },
                description: "Sensitivity of human presence detection",
            }),
            m.enumLookup({
                name: "illumination",
                lookup: { dim: 0, bright: 1 },
                cluster: 0xfc11,
                attribute: { ID: 0x2001, type: 0x20 },
                description: "Only updated when occupancy is detected",
                zigbeeCommandOptions: { manufacturerCode: zigbee_herdsman_1.Zcl.ManufacturerCode.SHENZHEN_COOLKIT_TECHNOLOGY_CO_LTD },
                access: "STATE",
            }),
        ],
        ota: true,
    },
    {
        zigbeeModel: ["MG1_5RZ"],
        model: "MG1_5RZ",
        vendor: "SONOFF",
        description: "Zigbee human presence radar (5.8 GHz)",
        extend: [
            m.occupancy({ reporting: false }),
            m.numeric({
                name: "occupied_to_unoccupied_delay",
                cluster: 0x0406,
                attribute: { ID: 0x0020, type: 0x21 },
                description: "Ultrasonic occupied → unoccupied delay (seconds)",
                valueMin: 60,
                valueMax: 65535,
            }),
            m.numeric({
                name: "unoccupied_to_occupied_delay",
                cluster: 0x0406,
                attribute: { ID: 0x0021, type: 0x21 },
                description: "Ultrasonic unoccupied → occupied delay (seconds)",
                valueMin: 0,
                valueMax: 65535,
            }),
            m.enumLookup({
                name: "occupancy_sensitivity",
                lookup: { low: 1, medium: 2, high: 3 },
                cluster: 0x0406,
                attribute: { ID: 0x0022, type: 0x20 },
                description: "Sensitivity of human presence detection",
            }),
        ],
        ota: false,
    },
    {
        zigbeeModel: ["TRVZB"],
        model: "TRVZB",
        vendor: "SONOFF",
        description: "Zigbee thermostatic radiator valve",
        exposes: [
            e
                .climate()
                .withSetpoint("occupied_heating_setpoint", 4, 35, 0.5)
                .withLocalTemperature()
                .withLocalTemperatureCalibration(-12.7, 12.7, 0.2)
                .withSystemMode(["off", "auto", "heat"], ea.ALL, "Mode of the thermostat")
                .withRunningState(["idle", "heat"], ea.STATE_GET),
            e.battery(),
        ],
        fromZigbee: [fz.thermostat, fz.battery],
        toZigbee: [
            tz.thermostat_local_temperature,
            tz.thermostat_local_temperature_calibration,
            tz.thermostat_occupied_heating_setpoint,
            tz.thermostat_system_mode,
            tz.thermostat_running_state,
        ],
        extend: [
            m.customLocalTemperatureCalibrationRange({ min: -12.7, max: 12.7 }),
            m.deviceAddCustomCluster("customSonoffTrvzb", {
                name: "customSonoffTrvzb",
                ID: 0xfc11,
                attributes: {
                    childLock: { name: "childLock", ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    tamper: { name: "tamper", ID: 0x2000, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    illumination: { name: "illumination", ID: 0x2001, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    openWindow: { name: "openWindow", ID: 0x6000, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    frostProtectionTemperature: { name: "frostProtectionTemperature", ID: 0x6002, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    idleSteps: { name: "idleSteps", ID: 0x6003, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    closingSteps: { name: "closingSteps", ID: 0x6004, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    valveOpeningLimitVoltage: { name: "valveOpeningLimitVoltage", ID: 0x6005, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    valveClosingLimitVoltage: { name: "valveClosingLimitVoltage", ID: 0x6006, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    valveMotorRunningVoltage: { name: "valveMotorRunningVoltage", ID: 0x6007, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true, max: 0xffff },
                    valveOpeningDegree: { name: "valveOpeningDegree", ID: 0x600b, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    valveClosingDegree: { name: "valveClosingDegree", ID: 0x600c, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    tempAccuracy: { name: "tempAccuracy", ID: 0x6011, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    temporaryMode: { name: "temporaryMode", ID: 0x6014, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    temporaryModeTime: { name: "temporaryModeTime", ID: 0x6015, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                    temporaryModeTemp: { name: "temporaryModeTemp", ID: 0x6016, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    externalTemperatureInput: {
                        name: "externalTemperatureInput",
                        ID: 0x600d,
                        type: zigbee_herdsman_1.Zcl.DataType.INT16,
                        write: true,
                        min: -32768,
                    },
                    temperatureSensorSelect: {
                        name: "temperatureSensorSelect",
                        ID: 0x600e,
                        type: zigbee_herdsman_1.Zcl.DataType.UINT8,
                        write: true,
                        max: 0xff,
                    },
                    smartTempControl: { name: "smartTempControl", ID: 0x6017, type: zigbee_herdsman_1.Zcl.DataType.BITMAP8, write: true },
                },
                commands: {},
                commandsResponse: {},
            }),
            m.numeric({
                name: "timer_mode_target_temp",
                cluster: "customSonoffTrvzb",
                attribute: "temporaryModeTemp",
                entityCategory: "config",
                description: "In timer mode, the temperature can be set to 4-35 ℃.",
                valueMin: 4.0,
                valueMax: 35.0,
                valueStep: 0.5,
                unit: "°C",
                scale: 100,
            }),
            m.numeric({
                name: "temporary_mode_duration",
                cluster: "customSonoffTrvzb",
                attribute: "temporaryModeTime",
                entityCategory: "config",
                description: "Boost Mode: Sets maximum TRV temperature for up to 180 minutes." +
                    "Timer Mode: Customizes temperature and duration, up to 24 hours.",
                valueMin: 0,
                valueMax: 1440,
                valueStep: 1,
                unit: "minutes",
                scale: 60,
            }),
            m.enumLookup({
                name: "temporary_mode_select",
                label: "Temporary mode ",
                lookup: { boost: 0, timer: 1 },
                cluster: "customSonoffTrvzb",
                attribute: "temporaryMode",
                entityCategory: "config",
                description: "Boost mode: Activates maximum TRV temperature for a user-defined duration, enabling rapid heating. " +
                    "Timer Mode: Allows customization of temperature and duration for precise heating control." +
                    "After the set duration, the system will return to its previous normal mode and temperature.",
            }),
            m.binary({
                name: "child_lock",
                cluster: "customSonoffTrvzb",
                attribute: "childLock",
                entityCategory: "config",
                description: "Enables/disables physical input on the device",
                valueOn: ["LOCK", 0x01],
                valueOff: ["UNLOCK", 0x00],
            }),
            m.binary({
                name: "open_window",
                cluster: "customSonoffTrvzb",
                attribute: "openWindow",
                entityCategory: "config",
                description: "Automatically turns off the radiator when local temperature drops by more than 1.5°C in 4.5 minutes.",
                valueOn: ["ON", 0x01],
                valueOff: ["OFF", 0x00],
            }),
            m.numeric({
                name: "frost_protection_temperature",
                cluster: "customSonoffTrvzb",
                attribute: "frostProtectionTemperature",
                entityCategory: "config",
                description: "Minimum temperature at which to automatically turn on the radiator, if system mode is off, to prevent pipes freezing.",
                valueMin: 4.0,
                valueMax: 35.0,
                valueStep: 0.5,
                unit: "°C",
                scale: 100,
            }),
            m.enumLookup({
                name: "temperature_sensor_select",
                label: "Temperature sensor",
                lookup: { internal: 0, external: 1, external_2: 2, external_3: 3 },
                cluster: "customSonoffTrvzb",
                attribute: "temperatureSensorSelect",
                description: "Whether to use the value of the internal temperature sensor or an external temperature sensor for the perceived local temperature. Using an external sensor does not require local temperature calibration.",
            }),
            m.numeric({
                name: "external_temperature_input",
                label: "External temperature",
                cluster: "customSonoffTrvzb",
                attribute: "externalTemperatureInput",
                entityCategory: "config",
                description: "The value of an external temperature sensor. Note: synchronisation of this value with the external temperature sensor needs to happen outside of Zigbee2MQTT.",
                valueMin: 0.0,
                valueMax: 99.9,
                valueStep: 0.1,
                unit: "°C",
                scale: 100,
                precision: 1,
            }),
            m.numeric({
                name: "idle_steps",
                cluster: "customSonoffTrvzb",
                attribute: "idleSteps",
                entityCategory: "diagnostic",
                description: "Number of steps used for calibration (no-load steps)",
                access: "STATE_GET",
            }),
            m.numeric({
                name: "closing_steps",
                cluster: "customSonoffTrvzb",
                attribute: "closingSteps",
                entityCategory: "diagnostic",
                description: "Number of steps it takes to close the valve",
                access: "STATE_GET",
            }),
            m.numeric({
                name: "valve_opening_limit_voltage",
                cluster: "customSonoffTrvzb",
                attribute: "valveOpeningLimitVoltage",
                entityCategory: "diagnostic",
                description: "Valve opening limit voltage",
                unit: "mV",
                access: "STATE_GET",
            }),
            m.numeric({
                name: "valve_closing_limit_voltage",
                cluster: "customSonoffTrvzb",
                attribute: "valveClosingLimitVoltage",
                entityCategory: "diagnostic",
                description: "Valve closing limit voltage",
                unit: "mV",
                access: "STATE_GET",
            }),
            m.numeric({
                name: "valve_motor_running_voltage",
                cluster: "customSonoffTrvzb",
                attribute: "valveMotorRunningVoltage",
                entityCategory: "diagnostic",
                description: "Valve motor running voltage",
                unit: "mV",
                access: "STATE_GET",
            }),
            m.numeric({
                name: "valve_opening_degree",
                cluster: "customSonoffTrvzb",
                attribute: "valveOpeningDegree",
                entityCategory: "config",
                description: "Valve open position (percentage) control. " +
                    "If the opening degree is set to 100%, the valve is fully open when it is opened. " +
                    "If the opening degree is set to 0%, the valve is fully closed when it is opened, " +
                    "and the default value is 100%. " +
                    "Note: only version v1.1.4 or higher is supported.",
                valueMin: 0.0,
                valueMax: 100.0,
                valueStep: 1.0,
                unit: "%",
            }),
            m.numeric({
                name: "valve_closing_degree",
                cluster: "customSonoffTrvzb",
                attribute: "valveClosingDegree",
                entityCategory: "config",
                description: "Valve closed position (percentage) control. " +
                    "If the closing degree is set to 100%, the valve is fully closed when it is closed. " +
                    "If the closing degree is set to 0%, the valve is fully opened when it is closed, " +
                    "and the default value is 100%. " +
                    "Note: Only version v1.1.4 or higher is supported.",
                valueMin: 0.0,
                valueMax: 100.0,
                valueStep: 1.0,
                unit: "%",
            }),
            m.numeric({
                name: "temperature_accuracy",
                cluster: "customSonoffTrvzb",
                attribute: "tempAccuracy",
                entityCategory: "config",
                description: "Temperature control accuracy. " +
                    "The range is -0.2 ~ -1°C, with an interval of 0.2, and the default is -1. " +
                    "If the temperature control accuracy is selected as -1°C (default value) and the target temperature is 26 degrees, " +
                    "then TRVZB will close the valve when the room temperature reaches 26 degrees and open the valve at 25 degrees. " +
                    "If -0.4°C is chosen as the temperature control accuracy, then the valve will close when the room temperature reaches 26 degrees and open at 25.6 degrees." +
                    "Note: Only version v1.3.0 or higher is supported.",
                valueMin: -1.0,
                valueMax: -0.2,
                valueStep: 0.2,
                unit: "°C",
                scale: 100,
            }),
            sonoffExtend.weeklySchedule(),
            m.customTimeResponse("1970_UTC"),
            m.binary({
                name: "smart_temperature_control",
                cluster: "customSonoffTrvzb",
                attribute: "smartTempControl",
                description: "Enable adaptive valve control using a PID algorithm. " +
                    'When enabled, "Valve Opening Percentage" and "Temperature Accuracy" are unavailable.',
                access: "ALL",
                valueOn: [true, 0x02],
                valueOff: [false, 0x00],
            }),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["hvacThermostat"]);
            await reporting.thermostatTemperature(endpoint);
            await reporting.thermostatOccupiedHeatingSetpoint(endpoint);
            await reporting.thermostatSystemMode(endpoint);
            await endpoint.read("hvacThermostat", ["localTemperatureCalibration"]);
            await endpoint.read(0xfc11, [0x0000, 0x6000, 0x6002, 0x6003, 0x6004, 0x6005, 0x6006, 0x6007, 0x600e]);
        },
    },
    {
        zigbeeModel: ["TRV-ZBT"],
        model: "TRV-ZBT",
        vendor: "SONOFF",
        description: "Zigbee thermostatic radiator valve",
        exposes: [
            e
                .climate()
                .withSetpoint("occupied_heating_setpoint", sonoffTrvzbtTargetTemperatureRange.min, sonoffTrvzbtTargetTemperatureRange.max, sonoffTrvzbtTargetTemperatureRange.step)
                .withLocalTemperature()
                .withLocalTemperatureCalibration(sonoffTrvzbtLocalTemperatureCalibrationRange.min, sonoffTrvzbtLocalTemperatureCalibrationRange.max, sonoffTrvzbtLocalTemperatureCalibrationRange.step)
                .withSystemMode(["off", "auto", "heat"], ea.ALL, "Mode of the thermostat")
                .withRunningState(["idle", "heat"], ea.STATE_GET),
            e.battery(),
        ],
        fromZigbee: [fz.thermostat, fz.battery],
        toZigbee: [
            tz.thermostat_local_temperature,
            tz.thermostat_local_temperature_calibration,
            tz.thermostat_occupied_heating_setpoint,
            tz.thermostat_system_mode,
            tz.thermostat_running_state,
        ],
        extend: [
            m.customLocalTemperatureCalibrationRange({
                min: sonoffTrvzbtLocalTemperatureCalibrationRange.min,
                max: sonoffTrvzbtLocalTemperatureCalibrationRange.max,
            }),
            m.deviceAddCustomCluster("customSonoffTrvzbt", {
                name: "customSonoffTrvzbt",
                ID: 0xfc11,
                attributes: {
                    childLock: { name: "childLock", ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    faultCode: { name: "faultCode", ID: 0x0010, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    screenDirection: { name: "screenDirection", ID: 0x0021, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    openWindow: { name: "openWindow", ID: 0x6000, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    frostProtectionTemperature: { name: "frostProtectionTemperature", ID: 0x6002, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    idleSteps: { name: "idleSteps", ID: 0x6003, type: zigbee_herdsman_1.Zcl.DataType.UINT16, max: 0xffff },
                    closingSteps: { name: "closingSteps", ID: 0x6004, type: zigbee_herdsman_1.Zcl.DataType.UINT16, max: 0xffff },
                    valveOpeningLimitVoltage: { name: "valveOpeningLimitVoltage", ID: 0x6005, type: zigbee_herdsman_1.Zcl.DataType.UINT16, max: 0xffff },
                    valveClosingLimitVoltage: { name: "valveClosingLimitVoltage", ID: 0x6006, type: zigbee_herdsman_1.Zcl.DataType.UINT16, max: 0xffff },
                    valveMotorRunningVoltage: { name: "valveMotorRunningVoltage", ID: 0x6007, type: zigbee_herdsman_1.Zcl.DataType.UINT16, max: 0xffff },
                    valveOpeningDegree: { name: "valveOpeningDegree", ID: 0x600b, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    valveClosingDegree: { name: "valveClosingDegree", ID: 0x600c, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    externalTemperatureInput: { name: "externalTemperatureInput", ID: 0x600d, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    temperatureSensorSelect: { name: "temperatureSensorSelect", ID: 0x600e, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    temperatureTriggerOfValveOpening: {
                        name: "temperatureTriggerOfValveOpening",
                        ID: 0x6011,
                        type: zigbee_herdsman_1.Zcl.DataType.INT16,
                        write: true,
                        min: -32768,
                    },
                    temperatureControlMode: { name: "temperatureControlMode", ID: 0x6013, type: zigbee_herdsman_1.Zcl.DataType.ENUM8, write: true, max: 0xff },
                    temporaryMode: { name: "temporaryMode", ID: 0x6014, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    temporaryModeTime: { name: "temporaryModeTime", ID: 0x6015, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                    temporaryModeTemp: { name: "temporaryModeTemp", ID: 0x6016, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    lowBatteryValveState: { name: "lowBatteryValveState", ID: 0x601c, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    weeklyScheduleActiveNum: { name: "weeklyScheduleActiveNum", ID: 0x601d, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    hvacMessageNotification: { name: "hvacMessageNotification", ID: 0x6030, type: zigbee_herdsman_1.Zcl.DataType.ARRAY },
                    heatPercentageHour: { name: "heatPercentageHour", ID: 0x6033, type: zigbee_herdsman_1.Zcl.DataType.UINT8, max: 0xff },
                    motorTravelCalibration: { name: "motorTravelCalibration", ID: 0x6036, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    motorTravelCalibrationStatus: { name: "motorTravelCalibrationStatus", ID: 0x6037, type: zigbee_herdsman_1.Zcl.DataType.UINT8, max: 0xff },
                },
                commands: {
                    readTemperatureControlHistory: {
                        name: "readTemperatureControlHistory",
                        ID: 0x0e,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                    bluetoothPairing: { name: "bluetoothPairing", ID: 0x10, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                    scheduleGroup: { name: "scheduleGroup", ID: 0x13, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                },
                commandsResponse: {},
            }),
            sonoffExtend.trvzbtFaultCode(),
            m.enumLookup({
                name: "screen_direction",
                lookup: { "0": 0, "90": 1, "180": 2, "270": 3 },
                cluster: "customSonoffTrvzbt",
                attribute: "screenDirection",
                entityCategory: "config",
                description: "Screen direction in degrees",
            }),
            m.binary({
                name: "child_lock",
                cluster: "customSonoffTrvzbt",
                attribute: "childLock",
                entityCategory: "config",
                description: "Enables/disables physical input on the device",
                valueOn: ["LOCK", 0x01],
                valueOff: ["UNLOCK", 0x00],
            }),
            m.binary({
                name: "open_window",
                cluster: "customSonoffTrvzbt",
                attribute: "openWindow",
                entityCategory: "config",
                description: "Automatically turns off the radiator when local temperature drops by more than 1.5°C in 5 minutes.",
                valueOn: ["ON", 0x01],
                valueOff: ["OFF", 0x00],
            }),
            m.numeric({
                name: "frost_protection_temperature",
                cluster: "customSonoffTrvzbt",
                attribute: "frostProtectionTemperature",
                entityCategory: "config",
                description: "Minimum temperature at which to automatically turn on the radiator to prevent freezing.",
                valueMin: sonoffTrvzbtFrostProtectionTemperatureRange.min,
                valueMax: sonoffTrvzbtFrostProtectionTemperatureRange.max,
                valueStep: sonoffTrvzbtFrostProtectionTemperatureRange.step,
                unit: "°C",
                scale: 100,
            }),
            m.enumLookup({
                name: "temperature_sensor_select",
                label: "Temperature sensor",
                lookup: { internal: 0, external: 1, external_2: 2, external_3: 3 },
                cluster: "customSonoffTrvzbt",
                attribute: "temperatureSensorSelect",
                description: "Whether to use the value of the internal temperature sensor or an external temperature sensor for the perceived local temperature. Using an external sensor does not require local temperature calibration.",
            }),
            m.numeric({
                name: "external_temperature_input",
                label: "External temperature",
                cluster: "customSonoffTrvzbt",
                attribute: "externalTemperatureInput",
                entityCategory: "config",
                description: "The value of an external temperature sensor. Note: synchronisation of this value with the external temperature sensor needs to happen outside of Zigbee2MQTT.",
                valueMin: 0.0,
                valueMax: 99.9,
                valueStep: 0.1,
                unit: "°C",
                scale: 100,
                precision: 1,
            }),
            m.numeric({
                name: "idle_steps",
                cluster: "customSonoffTrvzbt",
                attribute: "idleSteps",
                entityCategory: "diagnostic",
                description: "Number of steps used for calibration (no-load steps)",
                access: "STATE_GET",
            }),
            m.numeric({
                name: "closing_steps",
                cluster: "customSonoffTrvzbt",
                attribute: "closingSteps",
                entityCategory: "diagnostic",
                description: "Number of steps it takes to close the valve",
                access: "STATE_GET",
            }),
            m.numeric({
                name: "valve_opening_limit_voltage",
                cluster: "customSonoffTrvzbt",
                attribute: "valveOpeningLimitVoltage",
                entityCategory: "diagnostic",
                description: "Valve opening limit voltage",
                unit: "mV",
                access: "STATE_GET",
            }),
            m.numeric({
                name: "valve_closing_limit_voltage",
                cluster: "customSonoffTrvzbt",
                attribute: "valveClosingLimitVoltage",
                entityCategory: "diagnostic",
                description: "Valve closing limit voltage",
                unit: "mV",
                access: "STATE_GET",
            }),
            m.numeric({
                name: "valve_motor_running_voltage",
                cluster: "customSonoffTrvzbt",
                attribute: "valveMotorRunningVoltage",
                entityCategory: "diagnostic",
                description: "Valve motor running voltage",
                unit: "mV",
                access: "STATE_GET",
            }),
            m.numeric({
                name: "heating_valve_position",
                cluster: "customSonoffTrvzbt",
                attribute: "valveOpeningDegree",
                entityCategory: "config",
                description: "Valve opening percentage during heating.",
                valueMin: 0,
                valueMax: 100,
                valueStep: 1,
                unit: "%",
            }),
            m.numeric({
                name: "idle_valve_position",
                cluster: "customSonoffTrvzbt",
                attribute: "valveClosingDegree",
                entityCategory: "config",
                description: "Valve opening percentage when not heating.Recommended: set the heating valve position higher than the idle valve position.",
                valueMin: 0,
                valueMax: 100,
                valueStep: 1,
                unit: "%",
            }),
            m.numeric({
                name: "temperature_accuracy",
                cluster: "customSonoffTrvzbt",
                attribute: "temperatureTriggerOfValveOpening",
                entityCategory: "config",
                description: "Temperature control accuracy. " +
                    "The range is -0.2 ~ -1°C, with an interval of 0.2, and the default is -1. " +
                    "If the temperature control accuracy is selected as -1°C (default value) and the target temperature is 26 degrees, " +
                    "then TRV-ZBT will close the valve when the room temperature reaches 26 degrees and open the valve at 25 degrees. " +
                    "If -0.4°C is chosen as the temperature control accuracy, then the valve will close when the room temperature reaches 26 degrees and open at 25.6 degrees. ",
                valueMin: -1,
                valueMax: -0.2,
                valueStep: 0.2,
                unit: "°C",
                scale: 100,
            }),
            m.binary({
                name: "smart_temperature_control",
                cluster: "customSonoffTrvzbt",
                attribute: "temperatureControlMode",
                entityCategory: "config",
                description: "Enable adaptive valve control using a PID algorithm. " +
                    'When enabled, "Valve Opening Percentage" and "Temperature Accuracy" are unavailable.',
                valueOn: ["ON", 0x02],
                valueOff: ["OFF", 0x01],
            }),
            sonoffExtend.trvzbtTemporaryMode(),
            m.enumLookup({
                name: "low_battery_valve_state",
                lookup: { close: 0, open_30: 30 },
                cluster: "customSonoffTrvzbt",
                attribute: "lowBatteryValveState",
                entityCategory: "config",
                description: "Fixed valve opening percentage used when the battery is too low to operate.",
            }),
            sonoffExtend.trvzbtWeeklySchedule(),
            sonoffExtend.trvzbtReadScheduleOnConfigure(),
            sonoffExtend.trvzbtHvacNotification(),
            m.numeric({
                name: "heat_percentage_hour",
                cluster: "customSonoffTrvzbt",
                attribute: "heatPercentageHour",
                entityCategory: "diagnostic",
                description: "Heating percentage over the last hour",
                valueMin: 0,
                valueMax: 100,
                valueStep: 1,
                unit: "%",
                access: "STATE_GET",
            }),
            m.enumLookup({
                name: "valve_travel_calibration",
                lookup: { calibrate: 0x00 },
                cluster: "customSonoffTrvzbt",
                attribute: "motorTravelCalibration",
                entityCategory: "config",
                description: "Calibrates the valve travel range to ensure accurate opening and closing control.",
            }),
            sonoffExtend.motorTravelCalibrationStatus(),
            sonoffExtend.trvzbtBluetoothPairing(),
            sonoffExtend.trvzbtTemperatureControlHistory(),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["hvacThermostat"]);
            await reporting.thermostatTemperature(endpoint);
            await reporting.thermostatOccupiedHeatingSetpoint(endpoint);
            await reporting.thermostatSystemMode(endpoint);
            await endpoint.read("hvacThermostat", ["localTemperatureCalibration"]);
            const customAttributes = [
                0x0000, 0x0010, 0x0021, 0x6000, 0x6002, 0x6003, 0x6004, 0x6005, 0x6006, 0x6007, 0x600b, 0x600c, 0x600d, 0x600e, 0x6011, 0x6013,
                0x6014, 0x6015, 0x6016, 0x601c, 0x601d, 0x6033, 0x6037,
            ];
            const readCustomAttributes = async (attributes) => {
                try {
                    await endpoint.read(0xfc11, attributes);
                }
                catch (error) {
                    if (attributes.length === 1) {
                        logger_1.logger.error(`TRV-ZBT failed to read private attribute 0x${attributes[0].toString(16)}: ${error}`, NS);
                        return;
                    }
                    for (const attribute of attributes) {
                        await readCustomAttributes([attribute]);
                    }
                }
            };
            for (let i = 0; i < customAttributes.length; i += 4) {
                await readCustomAttributes(customAttributes.slice(i, i + 4));
            }
        },
    },
    {
        zigbeeModel: ["TP-WGZBA"],
        model: "TP-WGZBA",
        vendor: "SONOFF",
        description: "Zigbee thermostat panel",
        exposes: [
            e
                .climate()
                .withSetpoint("occupied_heating_setpoint", sonoffTpWgzbaTargetTemperatureRange.min, sonoffTpWgzbaTargetTemperatureRange.max, sonoffTpWgzbaTargetTemperatureRange.step)
                .withLocalTemperature()
                .withLocalTemperatureCalibration(sonoffTpWgzbaLocalTemperatureCalibrationRange.min, sonoffTpWgzbaLocalTemperatureCalibrationRange.max, sonoffTpWgzbaLocalTemperatureCalibrationRange.step)
                .withSystemMode(["off", "auto", "heat"], ea.ALL, "Mode of the thermostat")
                .withRunningState(["idle", "heat"], ea.STATE_GET),
        ],
        fromZigbee: [fz.thermostat],
        toZigbee: [
            tz.thermostat_local_temperature,
            tz.thermostat_local_temperature_calibration,
            tz.thermostat_occupied_heating_setpoint,
            tz.thermostat_system_mode,
            tz.thermostat_running_state,
        ],
        extend: [
            m.customLocalTemperatureCalibrationRange({
                min: sonoffTpWgzbaLocalTemperatureCalibrationRange.min,
                max: sonoffTpWgzbaLocalTemperatureCalibrationRange.max,
            }),
            m.deviceAddCustomCluster("customSonoffTpWgzba", {
                name: "customSonoffTpWgzba",
                ID: 0xfc11,
                attributes: {
                    childLock: { name: "childLock", ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    btPairingBroadcastReq: { name: "btPairingBroadcastReq", ID: 0x0029, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    openWindow: { name: "openWindow", ID: 0x6000, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    frostProtectionTemperature: { name: "frostProtectionTemperature", ID: 0x6002, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    temporaryMode: { name: "temporaryMode", ID: 0x6014, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    temporaryModeTime: { name: "temporaryModeTime", ID: 0x6015, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                    temporaryModeTemp: { name: "temporaryModeTemp", ID: 0x6016, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true, min: -32768 },
                    weeklyScheduleActiveNum: { name: "weeklyScheduleActiveNum", ID: 0x601d, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    hvacMessageNotification: { name: "hvacMessageNotification", ID: 0x6030, type: zigbee_herdsman_1.Zcl.DataType.ARRAY },
                    temperatureControlThreshold: { name: "temperatureControlThreshold", ID: 0x601f, type: zigbee_herdsman_1.Zcl.DataType.STRUCT, write: true },
                    radarSensitivityLevel: { name: "radarSensitivityLevel", ID: 0x6020, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    radarDoNotDisturbEnable: { name: "radarDoNotDisturbEnable", ID: 0x6021, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    radarDoNotDisturbPeriod: { name: "radarDoNotDisturbPeriod", ID: 0x6022, type: zigbee_herdsman_1.Zcl.DataType.STRUCT, write: true },
                    screenWorkingBrightness: { name: "screenWorkingBrightness", ID: 0x6023, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    screenStandbyBrightness: { name: "screenStandbyBrightness", ID: 0x6024, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    screenNightStandbyBrightness: {
                        name: "screenNightStandbyBrightness",
                        ID: 0x6025,
                        type: zigbee_herdsman_1.Zcl.DataType.UINT8,
                        write: true,
                        max: 0xff,
                    },
                    screenNightModeEnable: { name: "screenNightModeEnable", ID: 0x6026, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    screenNightModePeriod: { name: "screenNightModePeriod", ID: 0x6027, type: zigbee_herdsman_1.Zcl.DataType.STRUCT, write: true },
                    relayOutputType: { name: "relayOutputType", ID: 0x6028, type: zigbee_herdsman_1.Zcl.DataType.BITMAP8, write: true, max: 0xff },
                    remoteAttributeLinkage: { name: "remoteAttributeLinkage", ID: 0x601e, type: zigbee_herdsman_1.Zcl.DataType.ARRAY, write: true },
                    currentNtcTemperature: { name: "currentNtcTemperature", ID: 0x6031, type: zigbee_herdsman_1.Zcl.DataType.INT16, min: -32768 },
                    overheatProtectionTemperature: {
                        name: "overheatProtectionTemperature",
                        ID: 0x6032,
                        type: zigbee_herdsman_1.Zcl.DataType.INT16,
                        write: true,
                        min: -32768,
                    },
                    overheatProtectionEnable: { name: "overheatProtectionEnable", ID: 0x6034, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    radarEnable: { name: "radarEnable", ID: 0x6035, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                },
                commands: {
                    setTemporaryMode: { name: "setTemporaryMode", ID: 0x11, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                    readTemperatureControlHistory: {
                        name: "readTemperatureControlHistory",
                        ID: 0x0e,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                    scheduleGroup: { name: "scheduleGroup", ID: 0x13, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                },
                commandsResponse: {},
            }),
            m.binary({
                name: "child_lock",
                cluster: "customSonoffTpWgzba",
                attribute: "childLock",
                entityCategory: "config",
                description: "Enables/disables physical input on the device",
                valueOn: ["LOCK", 0x01],
                valueOff: ["UNLOCK", 0x00],
            }),
            m.binary({
                name: "open_window",
                cluster: "customSonoffTpWgzba",
                attribute: "openWindow",
                entityCategory: "config",
                description: "Automatically stops heating when the room temperature drops by more than 1.5°C within 5 minutes.",
                valueOn: ["ON", 0x01],
                valueOff: ["OFF", 0x00],
            }),
            sonoffExtend.tpWgzbaHvacNotification(),
            m.numeric({
                name: "frost_protection_temperature",
                cluster: "customSonoffTpWgzba",
                attribute: "frostProtectionTemperature",
                entityCategory: "config",
                description: "The minimum room temperature at which heating automatically turns on in Off mode to prevent pipes from freezing.",
                valueMin: sonoffTpWgzbaFrostProtectionTemperatureRange.min,
                valueMax: sonoffTpWgzbaFrostProtectionTemperatureRange.max,
                valueStep: sonoffTpWgzbaFrostProtectionTemperatureRange.step,
                unit: "°C",
                scale: 100,
            }),
            sonoffExtend.tpWgzbaWeeklySchedule(),
            sonoffExtend.tpWgzbaReadScheduleOnConfigure(),
            sonoffExtend.tpWgzbaTemporaryMode(),
            sonoffExtend.tpWgzbaRemoteTemperatureSource(),
            sonoffExtend.tpWgzbaTemperatureHysteresis(),
            sonoffExtend.tpWgzbaRelayOutput(),
            sonoffExtend.tpWgzbaNtcTemperature(),
            m.binary({
                name: "ntc_overheat_protection",
                label: "NTC overheat protection",
                cluster: "customSonoffTpWgzba",
                attribute: "overheatProtectionEnable",
                entityCategory: "config",
                description: "Enable or disable NTC overheat protection.",
                valueOn: ["ON", 0x01],
                valueOff: ["OFF", 0x00],
            }),
            m.numeric({
                name: "ntc_overheat_protection_temperature",
                label: "NTC overheat protection temperature",
                cluster: "customSonoffTpWgzba",
                attribute: "overheatProtectionTemperature",
                entityCategory: "config",
                description: "Temperature threshold at which NTC overheat protection is triggered.",
                valueMin: sonoffTpWgzbaOverheatProtectionTemperatureRange.min,
                valueMax: sonoffTpWgzbaOverheatProtectionTemperatureRange.max,
                valueStep: sonoffTpWgzbaOverheatProtectionTemperatureRange.step,
                unit: "°C",
                scale: sonoffTpWgzbaTemperatureScale,
            }),
            m.binary({
                name: "radar_detection",
                cluster: "customSonoffTpWgzba",
                attribute: "radarEnable",
                entityCategory: "config",
                description: "Enable or disable radar presence detection.",
                valueOn: ["enable", 0x01],
                valueOff: ["disable", 0x00],
            }),
            m.enumLookup({
                name: "radar_sensitivity",
                lookup: { low: 0, medium: 1, high: 2 },
                cluster: "customSonoffTpWgzba",
                attribute: "radarSensitivityLevel",
                entityCategory: "config",
                description: "Radar detection sensitivity.",
            }),
            m.binary({
                name: "radar_do_not_disturb",
                cluster: "customSonoffTpWgzba",
                attribute: "radarDoNotDisturbEnable",
                entityCategory: "config",
                description: "Do not wake the screen automatically when presence is detected during the configured period.",
                valueOn: ["enable", 0x01],
                valueOff: ["disable", 0x00],
            }),
            sonoffExtend.tpWgzbaTimePeriod("radar_do_not_disturb_period", "radarDoNotDisturbPeriod", "During the scheduled period, presence detection will not wake the screen automatically."),
            m.numeric({
                name: "standby_brightness",
                cluster: "customSonoffTpWgzba",
                attribute: "screenStandbyBrightness",
                entityCategory: "config",
                description: "Screen brightness when the device is idle.",
                valueMin: sonoffTpWgzbaBrightnessRange.min,
                valueMax: sonoffTpWgzbaBrightnessRange.max,
                valueStep: sonoffTpWgzbaBrightnessRange.step,
            }),
            m.numeric({
                name: "active_brightness",
                cluster: "customSonoffTpWgzba",
                attribute: "screenWorkingBrightness",
                entityCategory: "config",
                description: "Screen brightness when the device is active.",
                valueMin: sonoffTpWgzbaBrightnessRange.min,
                valueMax: sonoffTpWgzbaBrightnessRange.max,
                valueStep: sonoffTpWgzbaBrightnessRange.step,
            }),
            m.binary({
                name: "night_mode",
                cluster: "customSonoffTpWgzba",
                attribute: "screenNightModeEnable",
                entityCategory: "config",
                description: "Reduce screen brightness during the scheduled period.",
                valueOn: ["enable", 0x01],
                valueOff: ["disable", 0x00],
            }),
            sonoffExtend.tpWgzbaTimePeriod("night_mode_period", "screenNightModePeriod", "Period during which night mode brightness is used."),
            m.numeric({
                name: "night_brightness",
                cluster: "customSonoffTpWgzba",
                attribute: "screenNightStandbyBrightness",
                entityCategory: "config",
                description: "Adjusts the screen brightness when the device is in standby during the scheduled period.",
                valueMin: sonoffTpWgzbaBrightnessRange.min,
                valueMax: sonoffTpWgzbaBrightnessRange.max,
                valueStep: sonoffTpWgzbaBrightnessRange.step,
            }),
            m.binary({
                name: "bluetooth_pairing",
                cluster: "customSonoffTpWgzba",
                attribute: "btPairingBroadcastReq",
                entityCategory: "config",
                description: "Start or stop Bluetooth pairing broadcast.",
                valueOn: ["start", 0x01],
                valueOff: ["stop", 0x00],
            }),
            sonoffExtend.tpWgzbaTemperatureControlHistory(),
            sonoffExtend.tpWgzbaFactoryReset(),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["hvacThermostat"]);
            // await reporting.thermostatTemperature(endpoint);
            await endpoint.read("hvacThermostat", ["localTemperatureCalibration"]);
            const customAttributes = [
                0x0000, 0x0029, 0x6000, 0x6002, 0x6014, 0x6015, 0x6016, 0x601d, 0x601f, 0x6020, 0x6021, 0x6022, 0x6023, 0x6024, 0x6025, 0x6026,
                0x6027, 0x6028, 0x601e, 0x6031, 0x6032, 0x6034, 0x6035,
            ];
            const readCustomAttributes = async (attributes) => {
                try {
                    await endpoint.read(0xfc11, attributes);
                }
                catch (error) {
                    if (attributes.length === 1) {
                        logger_1.logger.error(`TP-WGZBA failed to read private attribute 0x${attributes[0].toString(16)}: ${error}`, NS);
                        return;
                    }
                    for (const attribute of attributes) {
                        await readCustomAttributes([attribute]);
                    }
                }
            };
            for (let i = 0; i < customAttributes.length; i += 4) {
                await readCustomAttributes(customAttributes.slice(i, i + 4));
            }
        },
    },
    {
        zigbeeModel: ["S60ZBTPF"],
        model: "S60ZBTPF",
        vendor: "SONOFF",
        description: "Zigbee smart plug",
        fromZigbee: [fzLocal.on_off_clear_electricity, fz.metering],
        exposes: [e.energy()],
        extend: [
            m.onOff({
                powerOnBehavior: true,
                skipDuplicateTransaction: true,
                configureReporting: true,
            }),
            sonoffExtend.addCustomClusterEwelink(),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Network indicator settings, turn off/on the blue online status network indicator.",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.numeric({
                name: "current",
                cluster: "customClusterEwelink",
                attribute: "acCurrentCurrentValue",
                description: "Current",
                unit: "A",
                access: "STATE_GET",
                // https://github.com/Koenkk/zigbee2mqtt/issues/28470#issuecomment-3369116710
                reporting: { min: "10_SECONDS", max: "MAX", change: 2 },
                fzConvert: (model, msg, publish, options, meta) => {
                    // Device keeps reporting a acCurrentCurrentValue after turning OFF.
                    // Make sure power = 0 when turned OFF
                    // https://github.com/Koenkk/zigbee2mqtt/issues/28470
                    if ("acCurrentCurrentValue" in msg.data) {
                        return { current: meta.state.state === "ON" ? msg.data.acCurrentCurrentValue / 1000 : 0 };
                    }
                },
            }),
            m.numeric({
                name: "voltage",
                cluster: "customClusterEwelink",
                attribute: "acCurrentVoltageValue",
                description: "Voltage",
                unit: "V",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "power",
                cluster: "customClusterEwelink",
                attribute: "acCurrentPowerValue",
                description: "Active power",
                unit: "W",
                access: "STATE_GET",
                reporting: { min: "10_SECONDS", max: "MAX", change: 0 },
                fzConvert: (model, msg, publish, options, meta) => {
                    // Device keeps reporting a acCurrentPowerValue after turning OFF.
                    // Make sure power = 0 when turned OFF
                    // https://github.com/Koenkk/zigbee2mqtt/issues/28470
                    if ("acCurrentPowerValue" in msg.data) {
                        return { power: meta.state.state === "ON" ? msg.data.acCurrentPowerValue / 1000 : 0 };
                    }
                },
            }),
            m.numeric({
                name: "energy_yesterday",
                label: "Energy yesterday",
                cluster: "customClusterEwelink",
                attribute: "energyYesterday",
                description: "Electricity consumption for the yesterday",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_today",
                label: "Energy today",
                cluster: "customClusterEwelink",
                attribute: "energyToday",
                description: "Electricity consumption for the day",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_month",
                label: "Energy this month",
                cluster: "customClusterEwelink",
                attribute: "energyMonth",
                description: "Electricity consumption for the month",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            sonoffExtend.inchingControlSet(),
            m.binary({
                name: "outlet_control_protect",
                cluster: "customClusterEwelink",
                attribute: "outlet_control_protect",
                description: "Outlet overload protection Settings",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            sonoffExtend.overloadProtection(4000, 17),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff", "customClusterEwelink", "seMetering"]);
            await reporting.onOff(endpoint, { min: 1, max: 1800, change: 0 });
            await endpoint.read("customClusterEwelink", ["acCurrentCurrentValue", "acCurrentVoltageValue", "acCurrentPowerValue", 0x7003, "outlet_control_protect"], defaultResponseOptions);
            await endpoint.configureReporting("customClusterEwelink", [
                { attribute: "energyMonth", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
                { attribute: "energyYesterday", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
                { attribute: "energyToday", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
            ]);
            await endpoint.read("seMetering", ["multiplier", "divisor"]);
            await reporting.currentSummDelivered(endpoint);
        },
    },
    {
        zigbeeModel: ["S60ZBTPG"],
        model: "S60ZBTPG",
        vendor: "SONOFF",
        description: "Zigbee smart plug",
        fromZigbee: [fzLocal.on_off_clear_electricity, fz.metering],
        exposes: [e.energy()],
        extend: [
            m.onOff({
                powerOnBehavior: true,
                skipDuplicateTransaction: true,
                configureReporting: true,
            }),
            sonoffExtend.addCustomClusterEwelink(),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Network indicator settings, turn off/on the blue online status network indicator.",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.numeric({
                name: "current",
                cluster: "customClusterEwelink",
                attribute: "acCurrentCurrentValue",
                description: "Current",
                unit: "A",
                access: "STATE_GET",
                // https://github.com/Koenkk/zigbee2mqtt/issues/28470#issuecomment-3369116710
                reporting: { min: "10_SECONDS", max: "MAX", change: 2 },
                fzConvert: (model, msg, publish, options, meta) => {
                    // Device keeps reporting a acCurrentCurrentValue after turning OFF.
                    // Make sure power = 0 when turned OFF
                    // https://github.com/Koenkk/zigbee2mqtt/issues/28470
                    if ("acCurrentCurrentValue" in msg.data) {
                        return { current: meta.state.state === "ON" ? msg.data.acCurrentCurrentValue / 1000 : 0 };
                    }
                },
            }),
            m.numeric({
                name: "voltage",
                cluster: "customClusterEwelink",
                attribute: "acCurrentVoltageValue",
                description: "Voltage",
                unit: "V",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "power",
                cluster: "customClusterEwelink",
                attribute: "acCurrentPowerValue",
                description: "Active power",
                unit: "W",
                access: "STATE_GET",
                reporting: { min: "10_SECONDS", max: "MAX", change: 0 },
                fzConvert: (model, msg, publish, options, meta) => {
                    // Device keeps reporting a acCurrentPowerValue after turning OFF.
                    // Make sure power = 0 when turned OFF
                    // https://github.com/Koenkk/zigbee2mqtt/issues/28470
                    if ("acCurrentPowerValue" in msg.data) {
                        return { power: meta.state.state === "ON" ? msg.data.acCurrentPowerValue / 1000 : 0 };
                    }
                },
            }),
            m.numeric({
                name: "energy_yesterday",
                label: "Energy yesterday",
                cluster: "customClusterEwelink",
                attribute: "energyYesterday",
                description: "Electricity consumption for the yesterday",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_today",
                label: "Energy today",
                cluster: "customClusterEwelink",
                attribute: "energyToday",
                description: "Electricity consumption for the day",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_month",
                label: "Energy this month",
                cluster: "customClusterEwelink",
                attribute: "energyMonth",
                description: "Electricity consumption for the month",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            sonoffExtend.inchingControlSet(),
            m.binary({
                name: "outlet_control_protect",
                cluster: "customClusterEwelink",
                attribute: "outlet_control_protect",
                description: "Outlet overload protection Settings",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            sonoffExtend.overloadProtection(3250, 14),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff", "customClusterEwelink", "seMetering"]);
            await reporting.onOff(endpoint, { min: 1, max: 1800, change: 0 });
            await endpoint.read("customClusterEwelink", ["acCurrentCurrentValue", "acCurrentVoltageValue", "acCurrentPowerValue", 0x7003, "outlet_control_protect"], defaultResponseOptions);
            await endpoint.configureReporting("customClusterEwelink", [
                { attribute: "energyMonth", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
                { attribute: "energyYesterday", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
                { attribute: "energyToday", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
            ]);
            await endpoint.read("seMetering", ["multiplier", "divisor"]);
            await reporting.currentSummDelivered(endpoint);
        },
    },
    {
        zigbeeModel: ["SWV"],
        model: "SWV",
        vendor: "SONOFF",
        description: "Zigbee smart water valve",
        fromZigbee: [fz.flow],
        toZigbee: [tzLocal.on_off_fixed_on_time],
        exposes: [e.numeric("flow", ea.STATE).withDescription("Current water flow").withUnit("m³/h")],
        extend: [
            m.battery(),
            m.onOff({
                powerOnBehavior: false,
                skipDuplicateTransaction: true,
                configureReporting: true,
            }),
            sonoffExtend.addCustomClusterEwelink(),
            m.enumLookup({
                name: "current_device_status",
                lookup: { normal_state: 0, water_shortage: 1, water_leakage: 2, "water_shortage & water_leakage": 3 },
                cluster: "customClusterEwelink",
                attribute: { ID: 0x500c, type: 0x20 },
                description: "The water valve is in normal state, water shortage or water leakage",
                access: "STATE_GET",
            }),
            m.binary({
                name: "auto_close_when_water_shortage",
                cluster: "customClusterEwelink",
                attribute: "lackWaterCloseValveTimeout",
                description: "Automatically shut down the water valve after the water shortage exceeds 30 minutes. Requires firmware version 1.0.4 or later!",
                valueOff: ["DISABLE", 0],
                valueOn: ["ENABLE", 30],
            }),
            sonoffExtend.cyclicTimedIrrigation(),
            sonoffExtend.cyclicQuantitativeIrrigation(),
            m.numeric({
                name: "real_time_irrigation_duration",
                cluster: "customClusterEwelink",
                attribute: { ID: 0x5006, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                description: "Duration of the last/current irrigation session",
                access: "STATE",
                unit: "s",
            }),
            m.numeric({
                name: "real_time_irrigation_volume",
                cluster: "customClusterEwelink",
                attribute: { ID: 0x5007, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                description: "Volume of the last/current irrigation session",
                access: "STATE",
                unit: "L",
            }),
            m.numeric({
                name: "irrigation_start_time",
                cluster: "customClusterEwelink",
                attribute: { ID: 0x500d, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                description: "Start time of the last/current irrigation session (Unix timestamp)",
                access: "STATE",
            }),
            m.numeric({
                name: "irrigation_end_time",
                cluster: "customClusterEwelink",
                attribute: { ID: 0x500e, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                description: "End time of the last irrigation session (Unix timestamp)",
                access: "STATE",
            }),
            m.numeric({
                name: "daily_irrigation_volume",
                cluster: "customClusterEwelink",
                attribute: { ID: 0x500f, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                description: "Total irrigation volume today",
                access: "STATE",
                unit: "L",
            }),
            m.binary({
                name: "valve_work_state",
                cluster: "customClusterEwelink",
                attribute: { ID: 0x5010, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
                description: "Current valve work state, this turns on when a Cyclic timed or quantitative irrigation program is running, and turns off when the program is complete.",
                access: "STATE",
                valueOn: ["working", 1],
                valueOff: ["idle", 0],
            }),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genPowerCfg", "genOnOff"]);
            await reporting.bind(endpoint, coordinatorEndpoint, ["msFlowMeasurement"]);
            await reporting.onOff(endpoint, { min: 1, max: 1800, change: 0 });
            await endpoint.read("customClusterEwelink", [0x500c]).catch((error) => {
                logger_1.logger.warning(`SWV read customClusterEwelink(current_device_status) failed: ${error}`, NS);
            });
            await endpoint.read("customClusterEwelink", [0x5011]).catch((error) => {
                logger_1.logger.warning(`SWV read customClusterEwelink(lackWaterCloseValveTimeout) failed: ${error}`, NS);
            });
        },
    },
    {
        zigbeeModel: ["ZBMicro"],
        model: "ZBMicro",
        vendor: "SONOFF",
        description: "Zigbee USB repeater plug",
        extend: [
            m.onOff(),
            sonoffExtend.addCustomClusterEwelink(),
            m.binary({
                name: "rf_turbo_mode",
                cluster: "customClusterEwelink",
                attribute: "radioPowerWithManuCode",
                zigbeeCommandOptions: manufacturerOptions,
                description: "Enable/disable Radio power turbo mode",
                valueOff: [false, 0x09],
                valueOn: [true, 0x14],
                entityCategory: "config",
            }),
            sonoffExtend.inchingControlSet(),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff"]);
            await reporting.onOff(endpoint, { min: 1, max: 1800, change: 0 });
            await endpoint.read("customClusterEwelink", ["radioPowerWithManuCode"], manufacturerOptions);
        },
    },
    {
        whiteLabel: [{ model: "MINI-ZBD", vendor: "SONOFF", fingerprint: [{ modelID: "MINI-ZBD", manufacturerName: "SONOFF" }] }],
        zigbeeModel: ["ZBMINIR2", "MINI-ZBD"],
        model: "ZBMINIR2",
        vendor: "SONOFF",
        description: "Zigbee smart switch",
        exposes: [],
        extend: [
            // binding and reporting are handled in configure block, skip duplication
            m.commandsOnOff({ commands: ["toggle"], bind: false }),
            m.onOff({ configureReporting: false }),
            sonoffExtend.addCustomClusterEwelink(),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Network indicator Settings, turn off/turn on the online network indicator.",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.binary({
                name: "turbo_mode",
                cluster: "customClusterEwelink",
                attribute: "radioPower",
                description: "Enable/disable Radio power turbo mode",
                entityCategory: "config",
                valueOff: [false, 0x09],
                valueOn: [true, 0x14],
            }),
            m.binary({
                name: "delayed_power_on_state",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnState",
                description: "Delayed Power-on State",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.numeric({
                name: "delayed_power_on_time",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnTime",
                description: "Delayed Power-on time",
                entityCategory: "config",
                valueMin: 0.5,
                valueMax: 3599.5,
                valueStep: 0.5,
                unit: "seconds",
                scale: 2,
            }),
            m.binary({
                name: "detach_relay_mode",
                cluster: "customClusterEwelink",
                attribute: "detachRelayMode",
                description: "Enable/Disable detach relay mode",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            sonoffExtend.externalSwitchTriggerMode(),
            sonoffExtend.inchingControlSet(),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff", "customClusterEwelink"]);
            await reporting.onOff(endpoint, { min: 1, max: 1800, change: 0 });
            await endpoint.read("customClusterEwelink", ["externalTriggerMode"], defaultResponseOptions);
        },
    },
    {
        zigbeeModel: ["ZBM5-1C-120", "ZBM5-1C-80/86"],
        whiteLabel: [
            {
                model: "ZBM5-1C-80/86",
                vendor: "SONOFF",
                description: "Zigbee Smart one-channel wall switch (type 80/86)",
                fingerprint: [{ modelID: "ZBM5-1C-80/86" }],
            },
        ],
        model: "ZBM5-1C-120",
        vendor: "SONOFF",
        description: "Zigbee Smart one-channel wall switch (type 120)",
        ota: true,
        extend: [
            m.commandsOnOff({ commands: ["toggle"] }),
            m.onOff(),
            sonoffExtend.addCustomClusterEwelink(),
            m.enumLookup({
                name: "device_work_mode",
                lookup: { "Zigbee end device": 0, "Zigbee router": 1 },
                cluster: "customClusterEwelink",
                attribute: "deviceWorkMode",
                description: "The device runs as a Zigbee End device or Zigbee router.",
                access: "STATE_GET",
            }),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Network indicator settings, turn off/on the blue online status network indicator.",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            sonoffExtend.detachRelayModeControl(1),
        ],
        configure: async (device, coordinatorEndpoint) => {
            const endpoint1 = device.getEndpoint(1);
            try {
                await reporting.bind(endpoint1, coordinatorEndpoint, ["genOnOff", "customClusterEwelink"]);
            }
            catch {
                // https://github.com/Koenkk/zigbee2mqtt/issues/32679
            }
            await reporting.onOff(endpoint1, { min: 1, max: 1800, change: 0 });
            await endpoint1.read("genOnOff", [0x0000, 0x4003], defaultResponseOptions);
            await endpoint1.read("customClusterEwelink", [0x0010, 0x0018, 0x0019], defaultResponseOptions);
        },
    },
    {
        zigbeeModel: ["ZBM5-2C-120", "ZBM5-2C-80/86"],
        whiteLabel: [
            {
                model: "ZBM5-2C-80/86",
                vendor: "SONOFF",
                description: "Zigbee Smart two-channel wall switch (type 80/86)",
                fingerprint: [{ modelID: "ZBM5-2C-80/86" }],
            },
        ],
        model: "ZBM5-2C-120",
        vendor: "SONOFF",
        description: "Zigbee Smart two-channel wall switch (type 120)",
        exposes: [],
        ota: true,
        extend: [
            m.deviceEndpoints({ endpoints: { l1: 1, l2: 2 } }),
            m.commandsOnOff({ commands: ["toggle"], endpointNames: ["l1", "l2"] }),
            m.onOff({ endpointNames: ["l1", "l2"] }),
            sonoffExtend.addCustomClusterEwelink(),
            m.enumLookup({
                name: "device_work_mode",
                lookup: { "Zigbee end device": 0, "Zigbee router": 1 },
                cluster: "customClusterEwelink",
                attribute: "deviceWorkMode",
                description: "The device runs as a Zigbee End device or Zigbee router.",
                access: "STATE_GET",
            }),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Network indicator settings, turn off/on the blue online status network indicator.",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            sonoffExtend.detachRelayModeControl(2),
        ],
        configure: async (device, coordinatorEndpoint) => {
            const endpoint1 = device.getEndpoint(1);
            try {
                await reporting.bind(endpoint1, coordinatorEndpoint, ["genOnOff", "customClusterEwelink"]);
            }
            catch {
                // https://github.com/Koenkk/zigbee2mqtt/issues/32679
            }
            await reporting.onOff(endpoint1, { min: 1, max: 1800, change: 0 });
            await endpoint1.read("genOnOff", [0x0000, 0x4003], defaultResponseOptions);
            await endpoint1.read("customClusterEwelink", [0x0010, 0x0018, 0x0019], defaultResponseOptions);
            const endpoint2 = device.getEndpoint(2);
            try {
                await reporting.bind(endpoint2, coordinatorEndpoint, ["genOnOff"]);
            }
            catch {
                // https://github.com/Koenkk/zigbee2mqtt/issues/32679
            }
            await reporting.onOff(endpoint2, { min: 1, max: 1805, change: 0 });
            await endpoint2.read("genOnOff", [0x0000, 0x4003], defaultResponseOptions);
        },
    },
    {
        zigbeeModel: ["ZBM5-3C-120", "ZBM5-3C-80/86"],
        whiteLabel: [
            {
                model: "ZBM5-3C-80/86",
                vendor: "SONOFF",
                description: "Zigbee Smart three-channel wall switch (type 80/86)",
                fingerprint: [{ modelID: "ZBM5-3C-80/86" }],
            },
        ],
        model: "ZBM5-3C-120",
        vendor: "SONOFF",
        description: "Zigbee Smart three-channel wall switch (type 120)",
        exposes: [],
        ota: true,
        extend: [
            m.deviceEndpoints({ endpoints: { l1: 1, l2: 2, l3: 3 } }),
            m.commandsOnOff({ commands: ["toggle"], endpointNames: ["l1", "l2", "l3"] }),
            m.onOff({ endpointNames: ["l1", "l2", "l3"] }),
            sonoffExtend.addCustomClusterEwelink(),
            m.enumLookup({
                name: "device_work_mode",
                lookup: { "Zigbee end device": 0, "Zigbee router": 1 },
                cluster: "customClusterEwelink",
                attribute: "deviceWorkMode",
                description: "The device runs as a Zigbee End device or Zigbee router.",
                access: "STATE_GET",
            }),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Network indicator settings, turn off/on the blue online status network indicator.",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            sonoffExtend.detachRelayModeControl(3),
        ],
        configure: async (device, coordinatorEndpoint) => {
            const endpoint1 = device.getEndpoint(1);
            try {
                await reporting.bind(endpoint1, coordinatorEndpoint, ["genOnOff", "customClusterEwelink"]);
            }
            catch {
                // https://github.com/Koenkk/zigbee2mqtt/issues/32679
            }
            await reporting.onOff(endpoint1, { min: 1, max: 1800, change: 0 });
            await endpoint1.read("genOnOff", [0x0000, 0x4003], defaultResponseOptions);
            await endpoint1.read("customClusterEwelink", [0x0010, 0x0018, 0x0019], defaultResponseOptions);
            const endpoint2 = device.getEndpoint(2);
            try {
                await reporting.bind(endpoint2, coordinatorEndpoint, ["genOnOff"]);
            }
            catch {
                // https://github.com/Koenkk/zigbee2mqtt/issues/32679
            }
            await reporting.onOff(endpoint2, { min: 1, max: 1805, change: 0 });
            await endpoint2.read("genOnOff", [0x0000, 0x4003], defaultResponseOptions);
            const endpoint3 = device.getEndpoint(3);
            try {
                await reporting.bind(endpoint3, coordinatorEndpoint, ["genOnOff"]);
            }
            catch {
                // https://github.com/Koenkk/zigbee2mqtt/issues/32679
            }
            await reporting.onOff(endpoint3, { min: 1, max: 1810, change: 0 });
            await endpoint3.read("genOnOff", [0x0000, 0x4003], defaultResponseOptions);
        },
    },
    {
        zigbeeModel: ["MINI-ZBRBS"],
        model: "MINI-ZBRBS",
        vendor: "SONOFF",
        description: "Zigbee smart roller shutter switch",
        extend: [
            sonoffExtend.addCustomClusterEwelink(),
            m.windowCovering({ controls: ["lift"], coverInverted: false }),
            m.enumLookup({
                name: "motor_travel_calibration_action",
                lookup: {
                    none: 0,
                    start_automatic: 2,
                    start_manual: 3,
                    clear: 4,
                    manual_2_fully_opened: 7,
                    manual_3_fully_closed: 8,
                },
                cluster: "customClusterEwelink",
                attribute: "motorTravelCalibrationAction",
                description: "Calibrates the motor stroke, or clears the current one.",
                access: "ALL",
            }),
            m.enumLookup({
                name: "motor_travel_calibration_status",
                lookup: { Uncalibrated: 0, Calibrated: 1 },
                cluster: "customClusterEwelink",
                attribute: "motorTravelCalibrationStatus",
                description: "The calibration status of the curtain motor's stroke.",
                access: "STATE_GET",
            }),
            m.enumLookup({
                name: "moving",
                lookup: { stop: 0, forward: 1, reverse: 2 },
                cluster: "customClusterEwelink",
                attribute: "motorRunStatus",
                description: "The motor's current operating status, such as forward rotation, reverse rotation, and stop.",
                access: "STATE_GET",
            }),
            sonoffExtend.externalSwitchTriggerMode(),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            try {
                await endpoint.read("customClusterEwelink", ["radioPower", 0x0016, 0x5012, 0x5013], defaultResponseOptions);
            }
            catch (e) {
                // Some MINI-ZBRBS units/firmware reject this read with ZCL status
                // UNSUP_CLUSTER (195), even though writing motorTravelCalibrationAction
                // on the same cluster works fine. Don't let this block the rest of
                // device configuration (binding/reporting set up by m.windowCovering()).
                logger_1.logger.error(`Configure failed: ${e}`, NS);
            }
        },
    },
    {
        zigbeeModel: ["MINI-ZB2GS"],
        model: "MINI-ZB2GS",
        vendor: "SONOFF",
        description: "Zigbee dual-channel smart switch",
        exposes: [],
        ota: true,
        extend: [
            m.deviceEndpoints({ endpoints: { l1: 1, l2: 2 } }),
            m.commandsOnOff({ commands: ["toggle"], endpointNames: ["l1", "l2"] }),
            m.onOff({ endpointNames: ["l1", "l2"] }),
            sonoffExtend.addCustomClusterEwelink(),
            sonoffExtend.externalSwitchTriggerMode({ endpointNames: ["l1", "l2"] }),
            sonoffExtend.detachRelayModeControl(2),
            sonoffExtend.inchingControlSet({ endpointNames: ["l1", "l2"] }),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Network indicator settings, turn off/on the blue online status network indicator.",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.binary({
                name: "turbo_mode",
                cluster: "customClusterEwelink",
                attribute: "radioPower",
                description: "Enable/disable Radio power turbo mode",
                entityCategory: "config",
                valueOff: [false, 0x09],
                valueOn: [true, 0x14],
            }),
            m.binary({
                name: "delayed_power_on_state_channel_1",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnState",
                description: "Delayed Power-on State(Channel 1)",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
                endpointName: "l1",
            }),
            m.binary({
                name: "delayed_power_on_state_channel_2",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnState",
                description: "Delayed Power-on State(Channel 2)",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
                endpointName: "l2",
            }),
            m.numeric({
                name: "delayed_power_on_time",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnTime",
                description: "Delayed Power-on time",
                entityCategory: "config",
                valueMin: 0.5,
                valueMax: 3599.5,
                valueStep: 0.5,
                unit: "seconds",
                scale: 2,
                endpointNames: ["l1", "l2"],
            }),
            sonoffExtend.programmableStepperSequence(["1", "2", "3", "4"]),
        ],
        configure: async (device, coordinatorEndpoint) => {
            const endpoint1 = device.getEndpoint(1);
            await reporting.bind(endpoint1, coordinatorEndpoint, ["genOnOff", "customClusterEwelink"]);
            await reporting.onOff(endpoint1, { min: 1, max: 1800, change: 0 });
            await endpoint1.read("genOnOff", [0x0000, 0x4003], defaultResponseOptions);
            await endpoint1.read("customClusterEwelink", [0x0014, 0x0015, 0x0016, 0x0019], defaultResponseOptions);
            await endpoint1.configureReporting("customClusterEwelink", [
                { attribute: "externalTriggerMode", minimumReportInterval: 0, maximumReportInterval: 3600, reportableChange: 1 },
            ]);
            const endpoint2 = device.getEndpoint(2);
            await reporting.bind(endpoint2, coordinatorEndpoint, ["genOnOff", "customClusterEwelink"]);
            await reporting.onOff(endpoint2, { min: 1, max: 1800, change: 0 });
            await endpoint2.read("genOnOff", [0x0000, 0x4003], defaultResponseOptions);
            await endpoint1.read("customClusterEwelink", [0x0014, 0x0015, 0x0016], defaultResponseOptions);
            await endpoint2.configureReporting("customClusterEwelink", [
                { attribute: "externalTriggerMode", minimumReportInterval: 0, maximumReportInterval: 3600, reportableChange: 1 },
            ]);
        },
    },
    {
        zigbeeModel: ["MINI-ZB2GS-L"],
        model: "MINI-ZB2GS-L",
        vendor: "SONOFF",
        description: "Zigbee dual-channel smart switch",
        exposes: [],
        ota: true,
        extend: [
            m.deviceEndpoints({ endpoints: { l1: 1, l2: 2 } }),
            m.commandsOnOff({ commands: ["toggle"], endpointNames: ["l1", "l2"] }),
            m.onOff({ endpointNames: ["l1", "l2"] }),
            sonoffExtend.addCustomClusterEwelink(),
            sonoffExtend.externalSwitchTriggerMode({ endpointNames: ["l1", "l2"] }),
            sonoffExtend.detachRelayModeControl(2),
            m.binary({
                name: "delayed_power_on_state_channel_1",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnState",
                description: "Delayed Power-on State(Channel 1)",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
                endpointName: "l1",
            }),
            m.binary({
                name: "delayed_power_on_state_channel_2",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnState",
                description: "Delayed Power-on State(Channel 2)",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
                endpointName: "l2",
            }),
            m.numeric({
                name: "delayed_power_on_time",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnTime",
                description: "Delayed Power-on time",
                entityCategory: "config",
                valueMin: 0.5,
                valueMax: 3599.5,
                valueStep: 0.5,
                unit: "seconds",
                scale: 2,
                endpointNames: ["l1", "l2"],
            }),
        ],
        configure: async (device, coordinatorEndpoint) => {
            const endpoint1 = device.getEndpoint(1);
            await reporting.bind(endpoint1, coordinatorEndpoint, ["genOnOff", "customClusterEwelink"]);
            await reporting.onOff(endpoint1, { min: 1, max: 1800, change: 0 });
            await endpoint1.read("genOnOff", [0x0000, 0x4003], defaultResponseOptions);
            await endpoint1.read("customClusterEwelink", [0x0014, 0x0015, 0x0016, 0x0019], defaultResponseOptions);
            await endpoint1.configureReporting("customClusterEwelink", [
                { attribute: "externalTriggerMode", minimumReportInterval: 0, maximumReportInterval: 3600, reportableChange: 1 },
            ]);
            const endpoint2 = device.getEndpoint(2);
            await reporting.bind(endpoint2, coordinatorEndpoint, ["genOnOff", "customClusterEwelink"]);
            await reporting.onOff(endpoint2, { min: 1, max: 1800, change: 0 });
            await endpoint2.read("genOnOff", [0x0000, 0x4003], defaultResponseOptions);
            await endpoint1.read("customClusterEwelink", [0x0014, 0x0015, 0x0016], defaultResponseOptions);
            await endpoint2.configureReporting("customClusterEwelink", [
                { attribute: "externalTriggerMode", minimumReportInterval: 0, maximumReportInterval: 3600, reportableChange: 1 },
            ]);
        },
    },
    {
        zigbeeModel: ["MINI-ZBDIM"],
        model: "MINI-ZBDIM",
        vendor: "SONOFF",
        description: "Zigbee smart mini dimmer switch",
        extend: [
            m.light({
                effect: false,
                powerOnBehavior: true,
                configureReporting: true,
            }),
            m.numeric({
                name: "current",
                cluster: "customClusterEwelink",
                attribute: "acCurrentCurrentValue",
                description: "Current",
                unit: "A",
                valueStep: 0.01,
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "voltage",
                cluster: "customClusterEwelink",
                attribute: "acCurrentVoltageValue",
                description: "Voltage",
                unit: "V",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "power",
                cluster: "customClusterEwelink",
                attribute: "acCurrentPowerValue",
                description: "Active power",
                unit: "W",
                scale: 1000,
                access: "STATE_GET",
                reporting: { min: "10_SECONDS", max: "MAX", change: 0 },
            }),
            sonoffExtend.addCustomClusterEwelink(),
            m.binary({
                name: "delayed_power_on_state",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnState",
                description: "Delayed Power-on State",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.numeric({
                name: "delayed_power_on_time",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnTime",
                description: "Delayed Power-on time",
                entityCategory: "config",
                valueMin: 0.5,
                valueMax: 3599.5,
                valueStep: 0.5,
                unit: "seconds",
                scale: 2,
            }),
            sonoffExtend.inchingControlSet({}, 86399.5),
            m.enumLookup({
                name: "external_trigger_mode",
                lookup: { edge: 0, pulse: 1, "double pulse": 3, "triple pulse": 4 },
                cluster: "customClusterEwelink",
                attribute: "externalTriggerMode",
                access: "ALL",
                entityCategory: "config",
                description: "External trigger mode, which can be one of edge, pulse,double pulse,triple pulse." +
                    "The appropriate triggering mode can be selected according to the type of external switch to achieve a better use experience.",
            }),
            m.enumLookup({
                name: "set_calibration_action",
                lookup: { start: [0x03, 0x01, 0x01, 0x01], stop: [0x03, 0x01, 0x01, 0x02] },
                cluster: "customClusterEwelink",
                attribute: "setCalibrationAction",
                description: "After calibration, the light adjustment becomes smooth and consistent.. Takes about 2 minutes; device unavailable during calibration.",
                access: "SET",
                entityCategory: "config",
                fzConvert: () => { },
            }),
            m.enumLookup({
                name: "calibration_status",
                lookup: { uncalibrate: 0, cailbrating: 1, calibration_failed: 2, calibrated: 3 },
                cluster: "customClusterEwelink",
                attribute: "calibrationStatus",
                description: "Calibration status.",
                access: "STATE_GET",
                entityCategory: "diagnostic",
            }),
            m.numeric({
                name: "calibration_progress",
                access: "STATE_GET",
                cluster: "customClusterEwelink",
                attribute: "calibrationProgress",
                description: "Calibration progress.",
                entityCategory: "diagnostic",
                valueMin: 0,
                valueMax: 100,
                valueStep: 1,
                unit: "%",
            }),
            m.numeric({
                name: "min_brightness_threshold",
                access: "ALL",
                cluster: "customClusterEwelink",
                attribute: "minBrightnessThreshold",
                description: "Lowest brightness level mapped to 1 % on the dimmer slider.",
                entityCategory: "config",
                valueMin: 1,
                valueMax: 99,
                valueStep: 1,
                unit: "%",
                scale: 2.55,
                precision: 0,
            }),
            m.numeric({
                name: "max_brightness_threshold",
                access: "ALL",
                cluster: "customClusterEwelink",
                attribute: "maxBrightnessThreshold",
                description: "highest brightness level mapped to 100 % on the dimmer slider.",
                entityCategory: "config",
                valueMin: 2,
                valueMax: 100,
                valueStep: 1,
                unit: "%",
                scale: 2.55,
                precision: 0,
            }),
            m.numeric({
                name: "level_for_calibration",
                access: "STATE_GET",
                cluster: "customClusterEwelink",
                attribute: "levelForCalibration",
                description: "Brightness Calibration ensures your dimmer works within the optimal range for your specific bulb.",
                entityCategory: "diagnostic",
                valueMin: 1,
                valueMax: 100,
                valueStep: 1,
                unit: "%",
                scale: 2.55,
                precision: 0,
            }),
            m.numeric({
                name: "dimmer_transition_time",
                access: "ALL",
                cluster: "customClusterEwelink",
                attribute: "transitionTime",
                description: "Transition time",
                entityCategory: "config",
                valueMin: 0,
                valueMax: 5,
                valueStep: 0.1,
                unit: "s",
                scale: 10,
            }),
            m.enumLookup({
                name: "dimming_light_rate",
                lookup: { "1x": 1, "2x": 2, "3x": 3, "4x": 4, "5x": 5 },
                cluster: "customClusterEwelink",
                attribute: "dimmingLightRate",
                description: "Speed of brightness change via external switch.",
                access: "ALL",
                entityCategory: "config",
            }),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await endpoint.read("customClusterEwelink", [0x0016, 0x001e, 0x4001, 0x4002, 0x4003, 0x4006], defaultResponseOptions);
        },
    },
    {
        zigbeeModel: ["SWV-ZFE", "SWV-ZFU"],
        model: "SWV-ZFE",
        vendor: "SONOFF",
        whiteLabel: [{ model: "SWV-ZFU", vendor: "SONOFF", fingerprint: [{ modelID: "SWV-ZFU" }] }],
        description: "Zigbee smart water valve",
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    childLock: { name: "childLock", ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    realTimeIrrigationDuration: { name: "realTimeIrrigationDuration", ID: 0x5006, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    realTimeIrrigationVolume: { name: "realTimeIrrigationVolume", ID: 0x5007, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    valveAbnormalState: { name: "valveAbnormalState", ID: 0x500c, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
                    rainDelayEndDatetime: { name: "rainDelayEndDatetime", ID: 0x5014, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    hourIrrigationVolume: { name: "hourIrrigationVolume", ID: 0x501b, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    hourIrrigationDuration: { name: "hourIrrigationDuration", ID: 0x501c, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    manualDefaultSettings: { name: "manualDefaultSettings", ID: 0x501d, type: zigbee_herdsman_1.Zcl.DataType.ARRAY, write: true },
                    seasonalWateringAdjustment: { name: "seasonalWateringAdjustment", ID: 0x501e, type: zigbee_herdsman_1.Zcl.DataType.ARRAY, write: true },
                    irrigationScheduleStatus: { name: "irrigationScheduleStatus", ID: 0x501f, type: zigbee_herdsman_1.Zcl.DataType.ARRAY },
                    valveAlarmSettings: { name: "valveAlarmSettings", ID: 0x5020, type: zigbee_herdsman_1.Zcl.DataType.ARRAY, write: true },
                    unitOfWaterFlow: { name: "unitOfWaterFlow", ID: 0x5021, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true },
                },
                commands: {
                    readRecord: { name: "readRecord", ID: 0x00, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                    irrigationPlanSettings: {
                        name: "irrigationPlanSettings",
                        ID: 0x06,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                    irrigationPlanRemove: {
                        name: "irrigationPlanRemove",
                        ID: 0x07,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                    rainDelay: { name: "rainDelay", ID: 0x08, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                },
                commandsResponse: {
                    irrigationPlanReport: {
                        name: "irrigationPlanReport",
                        ID: 0x09,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                },
            }),
            // official cluster
            m.battery(),
            m.onOff({
                powerOnBehavior: false,
                skipDuplicateTransaction: true,
                configureReporting: false,
                // homeassistant: {type: "valve"},
                // needs https://github.com/Koenkk/zigbee2mqtt/pull/32367
            }),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
            sonoffExtend.swvznGenTimeCompatResponse(),
            // private attributes & commands
            m.binary({
                name: "child_lock",
                cluster: "customClusterEwelink",
                attribute: "childLock",
                description: "Enables/disables physical input on the device",
                valueOn: ["LOCK", 0x01],
                valueOff: ["UNLOCK", 0x00],
                entityCategory: "config",
            }),
            sonoffExtend.valveAbnormalState(),
            sonoffExtend.waterFlowUnit(),
            sonoffExtend.manualDefaultSettings(true),
            sonoffExtend.irrigationPlanSettingsAndReport(true),
            sonoffExtend.irrigationPlanRemove(),
            sonoffExtend.irrigationScheduleStatus(true),
            sonoffExtend.rainDelay(),
            sonoffExtend.rainDelayEndDatetime(),
            sonoffExtend.seasonalWateringAdjustment(),
            sonoffExtend.valveAlarmSettings(),
            m.numeric({
                name: "real_time_irrigation_duration",
                cluster: "customClusterEwelink",
                attribute: "realTimeIrrigationDuration",
                description: "Real-time irrigation duration",
                access: "STATE_GET",
                unit: "min",
                fzConvert: bigEndianNumericFzConvert("real_time_irrigation_duration", "realTimeIrrigationDuration"),
            }),
            m.numeric({
                name: "real_time_irrigation_volume",
                cluster: "customClusterEwelink",
                attribute: "realTimeIrrigationVolume",
                description: "The amount of water irrigated in real time",
                access: "STATE_GET",
                unit: "L",
                fzConvert: bigEndianNumericFzConvert("real_time_irrigation_volume", "realTimeIrrigationVolume"),
            }),
            m.numeric({
                name: "hour_irrigation_duration",
                cluster: "customClusterEwelink",
                attribute: "hourIrrigationDuration",
                description: "Hourly irrigation duration",
                access: "STATE_GET",
                unit: "min",
            }),
            m.numeric({
                name: "hour_irrigation_volume",
                cluster: "customClusterEwelink",
                attribute: "hourIrrigationVolume",
                description: "Hourly irrigation volume",
                access: "STATE_GET",
                unit: "L",
            }),
            sonoffExtend.readSWVZFRecord(true),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            if (endpoint) {
                try {
                    await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff"]);
                }
                catch (error) {
                    logger_1.logger.warning(`SWV-ZN genOnOff bind/reporting failed, continuing without reporting: ${error}`, NS);
                }
                await endpoint.read("genOnOff", ["onOff"]).catch((error) => {
                    logger_1.logger.warning(`SWV-ZN read genOnOff.onOff failed: ${error}`, NS);
                });
                if (SWVZNEFirmwareSupportsUnifiedImperialGallon(device)) {
                    await endpoint.read("customClusterEwelink", ["unitOfWaterFlow"]).catch((error) => {
                        logger_1.logger.warning(`SWV-ZN read customClusterEwelink.unitOfWaterFlow failed: ${error}`, NS);
                    });
                }
            }
        },
    },
    {
        zigbeeModel: ["SWV-ZF2"],
        model: "SWV-ZF2",
        vendor: "SONOFF",
        description: "Zigbee dual-channel smart water valve",
        extend: [
            m.deviceEndpoints({ endpoints: { "1": 1, "2": 2 } }),
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    childLock: { name: "childLock", ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    realTimeIrrigationDuration: { name: "realTimeIrrigationDuration", ID: 0x5006, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    realTimeIrrigationVolume: { name: "realTimeIrrigationVolume", ID: 0x5007, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    valveAbnormalState: { name: "valveAbnormalState", ID: 0x500c, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
                    rainDelayEndDatetime: { name: "rainDelayEndDatetime", ID: 0x5014, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    hourIrrigationVolume: { name: "hourIrrigationVolume", ID: 0x501b, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    hourIrrigationDuration: { name: "hourIrrigationDuration", ID: 0x501c, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    manualDefaultSettings: { name: "manualDefaultSettings", ID: 0x501d, type: zigbee_herdsman_1.Zcl.DataType.ARRAY, write: true },
                    seasonalWateringAdjustment: { name: "seasonalWateringAdjustment", ID: 0x501e, type: zigbee_herdsman_1.Zcl.DataType.ARRAY, write: true },
                    irrigationScheduleStatus: { name: "irrigationScheduleStatus", ID: 0x501f, type: zigbee_herdsman_1.Zcl.DataType.ARRAY },
                    valveAlarmSettings: { name: "valveAlarmSettings", ID: 0x5020, type: zigbee_herdsman_1.Zcl.DataType.ARRAY, write: true },
                    unitOfWaterFlow: { name: "unitOfWaterFlow", ID: 0x5021, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true },
                },
                commands: {
                    readRecord: { name: "readRecord", ID: 0x00, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                    irrigationPlanSettings: {
                        name: "irrigationPlanSettings",
                        ID: 0x06,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                    irrigationPlanRemove: {
                        name: "irrigationPlanRemove",
                        ID: 0x07,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                    rainDelay: { name: "rainDelay", ID: 0x08, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                },
                commandsResponse: {
                    irrigationPlanReport: {
                        name: "irrigationPlanReport",
                        ID: 0x09,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                    irrigationPlanRemovedReport: {
                        name: "irrigationPlanRemovedReport",
                        ID: 0x0a,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                },
            }),
            // official cluster
            m.battery(),
            m.onOff({
                endpointNames: ["1", "2"],
                powerOnBehavior: false,
                skipDuplicateTransaction: true,
                configureReporting: false,
                // homeassistant: {type: "valve"},
                // needs https://github.com/Koenkk/zigbee2mqtt/pull/32367
            }),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
            sonoffExtend.swvznGenTimeCompatResponse(),
            // private attributes & commands
            m.binary({
                name: "child_lock",
                cluster: "customClusterEwelink",
                attribute: "childLock",
                description: "Enables/disables physical input on the device",
                valueOn: ["LOCK", 0x01],
                valueOff: ["UNLOCK", 0x00],
                entityCategory: "config",
            }),
            sonoffExtend.valveAbnormalState(true),
            sonoffExtend.waterFlowUnit(),
            sonoffExtend.manualDefaultSettings(true),
            sonoffExtend.irrigationPlanSettingsAndReport(true, ["1", "2"]),
            sonoffExtend.irrigationPlanRemove(["1", "2"]),
            sonoffExtend.irrigationPlanRemovedReport(["1", "2"]),
            sonoffExtend.irrigationScheduleStatus(true, ["1", "2"]),
            sonoffExtend.rainDelay(),
            sonoffExtend.rainDelayEndDatetime(),
            sonoffExtend.seasonalWateringAdjustment(),
            sonoffExtend.valveAlarmSettings(),
            m.numeric({
                name: "real_time_irrigation_duration",
                cluster: "customClusterEwelink",
                attribute: "realTimeIrrigationDuration",
                description: "Real-time irrigation duration",
                access: "STATE_GET",
                unit: "min",
                endpointNames: ["1", "2"],
            }),
            m.numeric({
                name: "real_time_irrigation_volume",
                cluster: "customClusterEwelink",
                attribute: "realTimeIrrigationVolume",
                description: "The amount of water irrigated in real time",
                access: "STATE_GET",
                unit: "L",
            }),
            m.numeric({
                name: "hour_irrigation_duration",
                cluster: "customClusterEwelink",
                attribute: "hourIrrigationDuration",
                description: "Hourly irrigation duration",
                access: "STATE_GET",
                unit: "min",
                endpointNames: ["1", "2"],
            }),
            m.numeric({
                name: "hour_irrigation_volume",
                cluster: "customClusterEwelink",
                attribute: "hourIrrigationVolume",
                description: "Hourly irrigation volume",
                access: "STATE_GET",
                unit: "L",
            }),
            sonoffExtend.readSWVZFRecord(true, true),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            for (const endpointId of [1, 2]) {
                const endpoint = device.getEndpoint(endpointId);
                if (!endpoint) {
                    logger_1.logger.warning(`SWV-ZF2 endpoint ${endpointId} not found`, NS);
                    continue;
                }
                try {
                    await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff"]);
                }
                catch (error) {
                    logger_1.logger.warning(`SWV-ZF2 genOnOff bind/reporting failed on endpoint ${endpointId}, continuing without reporting: ${error}`, NS);
                }
                await endpoint.read("genOnOff", ["onOff"]).catch((error) => {
                    logger_1.logger.warning(`SWV-ZF2 read genOnOff.onOff failed on endpoint ${endpointId}: ${error}`, NS);
                });
            }
            const endpoint = device.getEndpoint(1);
            if (endpoint) {
                await endpoint.read("customClusterEwelink", [0x500c]).catch((error) => {
                    logger_1.logger.warning(`SWV-ZF2 read customClusterEwelink(valveAbnormalState) failed: ${error}`, NS);
                });
                if (SWVZNEFirmwareSupportsUnifiedImperialGallon(device)) {
                    await endpoint.read("customClusterEwelink", ["unitOfWaterFlow"]).catch((error) => {
                        logger_1.logger.warning(`SWV-ZF2 read customClusterEwelink.unitOfWaterFlow failed: ${error}`, NS);
                    });
                }
            }
        },
    },
    {
        zigbeeModel: ["SWV-ZNE", "SWV-ZNU"],
        model: "SWV-ZNE",
        vendor: "SONOFF",
        whiteLabel: [{ model: "SWV-ZNU", vendor: "SONOFF", fingerprint: [{ modelID: "SWV-ZNU" }] }],
        description: "Zigbee smart water valve",
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    childLock: { name: "childLock", ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    realTimeIrrigationDuration: { name: "realTimeIrrigationDuration", ID: 0x5006, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    rainDelayEndDatetime: { name: "rainDelayEndDatetime", ID: 0x5014, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    hourIrrigationDuration: { name: "hourIrrigationDuration", ID: 0x501c, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    manualDefaultSettings: { name: "manualDefaultSettings", ID: 0x501d, type: zigbee_herdsman_1.Zcl.DataType.ARRAY, write: true },
                    seasonalWateringAdjustment: { name: "seasonalWateringAdjustment", ID: 0x501e, type: zigbee_herdsman_1.Zcl.DataType.ARRAY, write: true },
                    irrigationScheduleStatus: { name: "irrigationScheduleStatus", ID: 0x501f, type: zigbee_herdsman_1.Zcl.DataType.ARRAY },
                },
                commands: {
                    readRecord: { name: "readRecord", ID: 0x00, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                    irrigationPlanSettings: {
                        name: "irrigationPlanSettings",
                        ID: 0x06,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                    irrigationPlanRemove: {
                        name: "irrigationPlanRemove",
                        ID: 0x07,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                    rainDelay: { name: "rainDelay", ID: 0x08, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                },
                commandsResponse: {
                    irrigationPlanReport: {
                        name: "irrigationPlanReport",
                        ID: 0x09,
                        parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }],
                    },
                },
            }),
            // official cluster
            m.battery(),
            m.onOff({
                powerOnBehavior: false,
                skipDuplicateTransaction: true,
                configureReporting: false,
                // homeassistant: {type: "valve"},
                // needs https://github.com/Koenkk/zigbee2mqtt/pull/32367
            }),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
            sonoffExtend.swvznGenTimeCompatResponse(),
            // private attributes & commands
            m.binary({
                name: "child_lock",
                cluster: "customClusterEwelink",
                attribute: "childLock",
                description: "Enables/disables physical input on the device",
                valueOn: ["LOCK", 0x01],
                valueOff: ["UNLOCK", 0x00],
                entityCategory: "config",
            }),
            sonoffExtend.manualDefaultSettings(false),
            sonoffExtend.irrigationPlanSettingsAndReport(false),
            sonoffExtend.irrigationPlanRemove(),
            sonoffExtend.irrigationScheduleStatus(false),
            sonoffExtend.rainDelay(),
            sonoffExtend.rainDelayEndDatetime(),
            sonoffExtend.seasonalWateringAdjustment(),
            m.numeric({
                name: "real_time_irrigation_duration",
                cluster: "customClusterEwelink",
                attribute: "realTimeIrrigationDuration",
                description: "Real-time irrigation duration",
                access: "STATE_GET",
                unit: "min",
                fzConvert: bigEndianNumericFzConvert("real_time_irrigation_duration", "realTimeIrrigationDuration"),
            }),
            m.numeric({
                name: "hour_irrigation_duration",
                cluster: "customClusterEwelink",
                attribute: "hourIrrigationDuration",
                description: "Hourly irrigation duration",
                access: "STATE_GET",
                unit: "min",
            }),
            sonoffExtend.readSWVZFRecord(false),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            if (endpoint) {
                try {
                    await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff"]);
                }
                catch (error) {
                    logger_1.logger.warning(`SWV-ZN genOnOff bind/reporting failed, continuing without reporting: ${error}`, NS);
                }
                await endpoint.read("genOnOff", ["onOff"]).catch((error) => {
                    logger_1.logger.warning(`SWV-ZN read genOnOff.onOff failed: ${error}`, NS);
                });
            }
        },
    },
    {
        zigbeeModel: ["SNZB-02B"],
        model: "SNZB-02B",
        vendor: "SONOFF",
        description: "Temperature and humidity sensor",
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    temperatureCalibration: { name: "temperatureCalibration", ID: 0x2003, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                    humidityCalibration: { name: "humidityCalibration", ID: 0x2004, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                },
                commands: {},
                commandsResponse: {},
            }),
            // official cluster
            m.battery(),
            m.temperature({ reporting: { min: 5, max: 3600, change: 20 } }),
            m.humidity({ valueMin: 0, valueMax: 100, reporting: { min: 5, max: 3600, change: 100 } }),
            sonoffExtend.temperatureHumidityCalculatedValues(),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
            // attributes
            m.numeric({
                name: "temperature_calibration",
                cluster: "customClusterEwelink",
                attribute: "temperatureCalibration",
                entityCategory: "config",
                description: "Offset to add/subtract to the reported temperature. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "humidity_calibration",
                cluster: "customClusterEwelink",
                attribute: "humidityCalibration",
                entityCategory: "config",
                description: "Offset to add/subtract to the reported relative humidity. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
        ],
        ota: true,
    },
    {
        zigbeeModel: ["SNZB-02M"],
        model: "SNZB-02M",
        vendor: "SONOFF",
        description: "Temperature and humidity sensor",
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    temperatureCalibration: { name: "temperatureCalibration", ID: 0x2003, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                    humidityCalibration: { name: "humidityCalibration", ID: 0x2004, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                    pressureCalibration: { name: "pressureCalibration", ID: 0x2007, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                },
                commands: {},
                commandsResponse: {},
            }),
            // official cluster
            m.battery(),
            m.temperature({ reporting: { min: 5, max: 3600, change: 20 } }),
            m.humidity({ valueMin: 0, valueMax: 100, reporting: { min: 5, max: 3600, change: 100 } }),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
            // attributes
            m.numeric({
                name: "pressure",
                cluster: "msPressureMeasurement",
                attribute: { ID: 0x0004, type: zigbee_herdsman_1.Zcl.DataType.INT32 },
                access: "STATE_GET",
                description: "Atmospheric pressure in hPa reported via manufacturer attribute 0x0004 (manuCode 0x1286).",
                unit: "hPa",
                scale: 100,
                precision: 2,
                zigbeeCommandOptions: { manufacturerCode: 0x1286 },
            }),
            sonoffExtend.temperatureHumidityCalculatedValues(),
            m.numeric({
                name: "temperature_calibration",
                cluster: "customClusterEwelink",
                attribute: "temperatureCalibration",
                entityCategory: "config",
                description: "Calibrated temperature target value (supports 0.1°C step). Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "humidity_calibration",
                cluster: "customClusterEwelink",
                attribute: "humidityCalibration",
                entityCategory: "config",
                description: "Calibrated relative humidity target value (supports 0.1% step). Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
            m.numeric({
                name: "pressure_calibration",
                cluster: "customClusterEwelink",
                attribute: "pressureCalibration",
                entityCategory: "config",
                description: "Pressure compensation offset applied directly to pressure reading in hPa (positive adds, negative subtracts). Range: -400 to 400 hPa. " +
                    "Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: -200,
                valueMax: 200,
                valueStep: 0.1,
                scale: 100,
                unit: "hPa",
            }),
        ],
        ota: true,
    },
    {
        zigbeeModel: ["BASIC-ZB1GSP"],
        model: "BASIC-ZB1GSP",
        vendor: "SONOFF",
        description: "Zigbee smart plug with power monitoring",
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    networkLed: { name: "networkLed", ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    faultCode: { name: "faultCode", ID: 0x0010, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    limitsOfThresholdValue: { name: "limitsOfThresholdValue", ID: 0x7003, type: zigbee_herdsman_1.Zcl.DataType.CHAR_STR, write: true },
                    acCurrentCurrentValue: { name: "acCurrentCurrentValue", ID: 0x7004, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    acCurrentVoltageValue: { name: "acCurrentVoltageValue", ID: 0x7005, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    acCurrentPowerValue: { name: "acCurrentPowerValue", ID: 0x7006, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    outlet_control_protect: { name: "outlet_control_protect", ID: 0x7007, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    energyToday: { name: "energyToday", ID: 0x7009, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    energyMonth: { name: "energyMonth", ID: 0x700a, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    energyYesterday: { name: "energyYesterday", ID: 0x700b, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    acCurrentMaxOverloadEnable: { name: "acCurrentMaxOverloadEnable", ID: 0x700c, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    acCurrentMaxOverload: { name: "acCurrentMaxOverload", ID: 0x700d, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                    acVoltageMaxOverloadEnable: { name: "acVoltageMaxOverloadEnable", ID: 0x700e, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    acVoltageMaxOverload: { name: "acVoltageMaxOverload", ID: 0x700f, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                    acPowerMaxOverloadEnable: { name: "acPowerMaxOverloadEnable", ID: 0x7010, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    acPowerMaxOverload: { name: "acPowerMaxOverload", ID: 0x7011, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                    totalEnergyConsumption: { name: "totalEnergyConsumption", ID: 0x701e, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                },
                commands: {
                    protocolData: { name: "protocolData", ID: 0x01, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                    clearHistory: {
                        name: "clearHistory",
                        ID: 0x0c,
                        parameters: [
                            { name: "deviceType", type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
                            { name: "deviceLength", type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
                            { name: "eventType", type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
                        ],
                    },
                    readRecord: { name: "readRecord", ID: 0x02, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                },
                commandsResponse: {},
            }),
            m.onOff({
                powerOnBehavior: true,
                skipDuplicateTransaction: true,
                configureReporting: true,
            }),
            sonoffExtend.inchingControlSet(),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Network indicator settings, turn off/on the blue online status network indicator.",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.numeric({
                name: "power",
                cluster: "customClusterEwelink",
                attribute: "acCurrentPowerValue",
                description: "Active power",
                unit: "W",
                access: "STATE_GET",
                reporting: { min: "10_SECONDS", max: "MAX", change: 0 },
                fzConvert: (model, msg, publish, options, meta) => {
                    // Device keeps reporting a acCurrentPowerValue after turning OFF.
                    // Make sure power = 0 when turned OFF
                    // https://github.com/Koenkk/zigbee2mqtt/issues/28470
                    if ("acCurrentPowerValue" in msg.data) {
                        const power = meta.state?.state === "ON" ? msg.data.acCurrentPowerValue / 1000 : 0;
                        return { power, ac_current_power_value: power };
                    }
                },
            }),
            m.numeric({
                name: "current",
                cluster: "customClusterEwelink",
                attribute: "acCurrentCurrentValue",
                description: "Current",
                unit: "A",
                access: "STATE_GET",
                // https://github.com/Koenkk/zigbee2mqtt/issues/28470#issuecomment-3369116710
                reporting: { min: "10_SECONDS", max: "MAX", change: 2 },
                fzConvert: (model, msg, publish, options, meta) => {
                    // Device keeps reporting a acCurrentCurrentValue after turning OFF.
                    // Make sure power = 0 when turned OFF
                    // https://github.com/Koenkk/zigbee2mqtt/issues/28470
                    if ("acCurrentCurrentValue" in msg.data) {
                        const current = meta.state?.state === "ON" ? msg.data.acCurrentCurrentValue / 1000 : 0;
                        return { current, ac_current_current_value: current };
                    }
                },
            }),
            m.numeric({
                name: "voltage",
                cluster: "customClusterEwelink",
                attribute: "acCurrentVoltageValue",
                description: "Voltage",
                unit: "V",
                access: "STATE_GET",
                scale: 1000,
            }),
            m.numeric({
                name: "total_energy_consumption",
                cluster: "seMetering",
                attribute: "currentSummDelivered",
                description: "CurrentSummationDelivered",
                unit: "kWh",
                access: "STATE_GET",
                fzConvert: (model, msg) => {
                    if (msg.data.currentSummDelivered === undefined) {
                        return;
                    }
                    const value = msg.data.currentSummDelivered;
                    const numericValue = typeof value === "bigint" ? Number(value) : value;
                    if (typeof numericValue !== "number" || numericValue === 0xffffffffffff || Number.isNaN(numericValue)) {
                        return;
                    }
                    const multiplier = msg.endpoint.getClusterAttributeValue("seMetering", "multiplier") || 1;
                    const divisor = msg.endpoint.getClusterAttributeValue("seMetering", "divisor") || 1000;
                    const factor = divisor ? multiplier / divisor : 1;
                    return { total_energy_consumption: numericValue * factor };
                },
            }),
            m.numeric({
                name: "energy_today",
                cluster: "customClusterEwelink",
                attribute: "energyToday",
                description: "Electricity consumption for the day",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_month",
                cluster: "customClusterEwelink",
                attribute: "energyMonth",
                description: "Electricity consumption for the month",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_yesterday",
                cluster: "customClusterEwelink",
                attribute: "energyYesterday",
                description: "Electricity consumption for the yesterday",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "total_energy",
                label: "Total energy",
                cluster: "customClusterEwelink",
                attribute: "totalEnergyConsumption",
                description: "Total energy used since the device started.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.binary({
                name: "outlet_control_protect",
                cluster: "customClusterEwelink",
                attribute: "outlet_control_protect",
                description: "Outlet overload protection Settings",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.binary({
                name: "ac_current_max_overload_enable",
                cluster: "customClusterEwelink",
                attribute: "acCurrentMaxOverloadEnable",
                valueOn: ["ON", 1],
                valueOff: ["OFF", 0],
                description: "AC current overload protection enable",
                access: "ALL",
                entityCategory: "config",
            }),
            m.numeric({
                name: "ac_current_max_overload",
                cluster: "customClusterEwelink",
                attribute: "acCurrentMaxOverload",
                description: "AC current overload threshold",
                unit: "A",
                scale: 1000,
                valueMin: 0.1,
                valueMax: 32,
                valueStep: 0.1,
                access: "ALL",
                entityCategory: "config",
            }),
            m.binary({
                name: "ac_voltage_max_overload_enable",
                cluster: "customClusterEwelink",
                attribute: "acVoltageMaxOverloadEnable",
                valueOn: ["ON", 1],
                valueOff: ["OFF", 0],
                description: "AC voltage overload protection enable",
                access: "ALL",
                entityCategory: "config",
            }),
            m.numeric({
                name: "ac_voltage_max_overload",
                cluster: "customClusterEwelink",
                attribute: "acVoltageMaxOverload",
                description: "AC voltage overload threshold (runtime validated by detected supply band)",
                unit: "V",
                scale: 1000,
                valueMin: 85,
                valueMax: 277,
                valueStep: 1,
                access: "ALL",
                entityCategory: "config",
            }),
            m.binary({
                name: "ac_power_max_overload_enable",
                cluster: "customClusterEwelink",
                attribute: "acPowerMaxOverloadEnable",
                valueOn: ["ON", 1],
                valueOff: ["OFF", 0],
                description: "AC power overload protection enable",
                access: "ALL",
                entityCategory: "config",
            }),
            m.numeric({
                name: "ac_power_max_overload",
                cluster: "customClusterEwelink",
                attribute: "acPowerMaxOverload",
                description: "AC power overload threshold (runtime validated by detected supply band)",
                unit: "W",
                scale: 1000,
                valueMin: 10,
                valueMax: 7680,
                valueStep: 1,
                access: "ALL",
                entityCategory: "config",
            }),
            sonoffExtend.readConsumptionRecord("customClusterEwelink", "readRecord"),
            sonoffExtend.clearConsumptionHistory(),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff", "customClusterEwelink", "seMetering"]);
            await reporting.onOff(endpoint, { min: 1, max: 1800, change: 0 });
            await endpoint.read("customClusterEwelink", ["acCurrentCurrentValue", "acCurrentVoltageValue", "acCurrentPowerValue", 0x7003, "outlet_control_protect", "totalEnergyConsumption"], defaultResponseOptions);
            await endpoint.configureReporting("customClusterEwelink", [
                { attribute: "energyMonth", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
                { attribute: "energyYesterday", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
                { attribute: "energyToday", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
                { attribute: "totalEnergyConsumption", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
            ]);
            await endpoint.read("seMetering", ["multiplier", "divisor"]);
            await reporting.currentSummDelivered(endpoint);
        },
    },
    {
        zigbeeModel: ["SNZB-06P24"],
        model: "SNZB-06P24",
        vendor: "SONOFF",
        description: "Zigbee occupancy sensor with illuminance",
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    occupancyZoneEnable: { name: "occupancyZoneEnable", ID: 0x2016, type: zigbee_herdsman_1.Zcl.DataType.BITMAP16, write: true },
                    illuminationCompensationOffset: {
                        name: "illuminationCompensationOffset",
                        ID: 0x2018,
                        type: zigbee_herdsman_1.Zcl.DataType.INT16,
                        write: true,
                        min: -1000,
                        max: 1000,
                    },
                    radarSensitivitySetting: {
                        name: "radarSensitivitySetting",
                        ID: 0x2021,
                        type: zigbee_herdsman_1.Zcl.DataType.INT8,
                        write: true,
                        min: -6,
                        max: 6,
                    },
                },
                commands: {
                    spatialLearning: { name: "spatialLearning", ID: 0x04, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                },
                commandsResponse: {},
            }),
            // official cluster
            m.illuminance(),
            m.occupancy(),
            m.numeric({
                name: "pir_o_to_u_delay",
                label: "Occupancy timeout",
                cluster: "msOccupancySensing",
                attribute: "pirOToUDelay",
                description: "Occupied to Unoccupied Delay (30 s+ recommended to reduce missed detection.)",
                valueMin: 15,
                valueMax: 65535,
                unit: "s",
                entityCategory: "config",
            }),
            // private cluster
            sonoffExtend.occupancyZoneEnable(8, 0.5, true),
            m.numeric({
                name: "illuminance_calibration",
                cluster: "customClusterEwelink",
                attribute: "illuminationCompensationOffset",
                description: "Illuminance compensation offset",
                valueMin: -1000,
                valueMax: 1000,
                unit: "lx",
                entityCategory: "config",
            }),
            m.numeric({
                name: "radar_sensitivity",
                cluster: "customClusterEwelink",
                attribute: "radarSensitivitySetting",
                description: "Radar sensitivity level",
                valueMin: -6,
                valueMax: 6,
                valueStep: 1,
                entityCategory: "config",
                label: "Fine-tune Sensitivity",
            }),
            sonoffExtend.spatialLearning(),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            const bindClusters = ["genPowerCfg", "ssIasZone"];
            if (endpoint) {
                await reporting.bind(endpoint, coordinatorEndpoint, bindClusters);
                await endpoint.read("msOccupancySensing", ["pirOToUDelay"]);
                await endpoint.read("customClusterEwelink", ["occupancyZoneEnable"]).catch((error) => {
                    logger_1.logger.warning(`SNZB-06P24 configure: read occupancyZoneEnable failed, ${error}`, NS);
                });
            }
        },
    },
    {
        zigbeeModel: ["MINI-ZB1GSP"],
        model: "MINI-ZB1GSP",
        vendor: "SONOFF",
        description: "Zigbee smart switch with power monitoring",
        fromZigbee: [fzLocal.on_off_clear_electricity],
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    networkLed: { name: "networkLed", ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    faultCode: { name: "faultCode", ID: 0x0010, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    radioPower: { name: "radioPower", ID: 0x0012, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                    delayedPowerOnState: { name: "delayedPowerOnState", ID: 0x0014, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    delayedPowerOnTime: { name: "delayedPowerOnTime", ID: 0x0015, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true },
                    externalTriggerMode: { name: "externalTriggerMode", ID: 0x0016, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true },
                    detachRelayMode2: { name: "detachRelayMode2", ID: 0x0019, type: zigbee_herdsman_1.Zcl.DataType.BITMAP8, write: true },
                    detachRelayActionEvent: { name: "detachRelayActionEvent", ID: 0x0028, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
                    acCurrentCurrentValue: { name: "acCurrentCurrentValue", ID: 0x7004, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    acCurrentVoltageValue: { name: "acCurrentVoltageValue", ID: 0x7005, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    acCurrentPowerValue: { name: "acCurrentPowerValue", ID: 0x7006, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    energyToday: { name: "energyToday", ID: 0x7009, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    energyMonth: { name: "energyMonth", ID: 0x700a, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    energyYesterday: { name: "energyYesterday", ID: 0x700b, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    localFastSceneConfiguration: { name: "localFastSceneConfiguration", ID: 0x7016, type: zigbee_herdsman_1.Zcl.DataType.ARRAY, write: true },
                    outputEnergyToday: { name: "outputEnergyToday", ID: 0x7018, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    outputEnergyMonth: { name: "outputEnergyMonth", ID: 0x7019, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    totalEnergyConsumption: { name: "totalEnergyConsumption", ID: 0x701e, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    totalOutputEnergyConsumption: { name: "totalOutputEnergyConsumption", ID: 0x701f, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                },
                commands: {
                    protocolData: { name: "protocolData", ID: 0x01, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                },
                commandsResponse: {},
            }),
            m.onOff({
                powerOnBehavior: true,
                skipDuplicateTransaction: true,
                configureReporting: true,
            }),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Turn the blue network status indicator on or off.",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.binary({
                name: "turbo_mode",
                cluster: "customClusterEwelink",
                attribute: "radioPower",
                description: "Boost Zigbee radio transmit power to improve range.",
                entityCategory: "config",
                valueOff: [false, 0x09],
                valueOn: [true, 0x14],
            }),
            sonoffExtend.inchingControlSet({}, 86399.5),
            m.binary({
                name: "delayed_power_on_state",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnState",
                description: "Restore the plug output after the configured power-on delay.",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.numeric({
                name: "delayed_power_on_time",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnTime",
                description: "Delay before the plug output is restored after power returns.",
                entityCategory: "config",
                unit: "s",
                scale: 2,
                valueMin: 0.5,
                valueMax: 3599.5,
                valueStep: 0.5,
            }),
            sonoffExtend.externalSwitchTriggerMode(),
            sonoffExtend.detachRelayModeControl(1),
            sonoffExtend.detachRelayActionEvent(),
            m.numeric({
                name: "power",
                cluster: "customClusterEwelink",
                attribute: "acCurrentPowerValue",
                description: "Power used by the connected load.",
                unit: "W",
                access: "STATE_GET",
                fzConvert: (model, msg, publish, options, meta) => {
                    if ("acCurrentPowerValue" in msg.data) {
                        return { power: (0, sonoff_1.signedInt32MilliToValue)(msg.data.acCurrentPowerValue) };
                    }
                },
            }),
            m.numeric({
                name: "current",
                cluster: "customClusterEwelink",
                attribute: "acCurrentCurrentValue",
                description: "Current drawn by the connected load.",
                unit: "A",
                access: "STATE_GET",
                fzConvert: (model, msg, publish, options, meta) => {
                    if ("acCurrentCurrentValue" in msg.data) {
                        return { current: msg.data.acCurrentCurrentValue / 1000 };
                    }
                },
            }),
            m.numeric({
                name: "voltage",
                cluster: "customClusterEwelink",
                attribute: "acCurrentVoltageValue",
                description: "Supply voltage measured by the plug.",
                unit: "V",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_today",
                cluster: "customClusterEwelink",
                attribute: "energyToday",
                description: "Energy used today by the connected load.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "output_energy_today",
                label: "Export energy today",
                cluster: "customClusterEwelink",
                attribute: "outputEnergyToday",
                description: "Energy fed back today through the plug.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_month",
                label: "Energy this month",
                cluster: "customClusterEwelink",
                attribute: "energyMonth",
                description: "Energy used this month by the connected load.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "output_energy_month",
                label: "Export energy this month",
                cluster: "customClusterEwelink",
                attribute: "outputEnergyMonth",
                description: "Energy fed back this month through the plug.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "total_energy",
                cluster: "customClusterEwelink",
                attribute: "totalEnergyConsumption",
                description: "Total energy used by the connected load.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "total_output_energy",
                label: "Total export energy",
                cluster: "customClusterEwelink",
                attribute: "totalOutputEnergyConsumption",
                description: "Total energy fed back through the plug.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            sonoffExtend.faultCodeMiniZb1gsp({ hasSwitch: true }),
            sonoffExtend.localFastSceneConfiguration({ hasSwitch: true }),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff", "customClusterEwelink"]);
            await endpoint.read("customClusterEwelink", ["faultCode"], defaultResponseOptions);
        },
    },
    {
        zigbeeModel: ["MINI-ZB1GP"],
        model: "MINI-ZB1GP",
        vendor: "SONOFF",
        description: "Zigbee smart power monitoring sensor",
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    networkLed: { name: "networkLed", ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    faultCode: { name: "faultCode", ID: 0x0010, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    radioPower: { name: "radioPower", ID: 0x0012, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                    acCurrentCurrentValue: { name: "acCurrentCurrentValue", ID: 0x7004, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    acCurrentVoltageValue: { name: "acCurrentVoltageValue", ID: 0x7005, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    acCurrentPowerValue: { name: "acCurrentPowerValue", ID: 0x7006, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    energyToday: { name: "energyToday", ID: 0x7009, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    energyMonth: { name: "energyMonth", ID: 0x700a, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    energyYesterday: { name: "energyYesterday", ID: 0x700b, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    outputEnergyToday: { name: "outputEnergyToday", ID: 0x7018, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    outputEnergyMonth: { name: "outputEnergyMonth", ID: 0x7019, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    totalEnergyConsumption: { name: "totalEnergyConsumption", ID: 0x701e, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    totalOutputEnergyConsumption: { name: "totalOutputEnergyConsumption", ID: 0x701f, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                },
                commands: {},
                commandsResponse: {},
            }),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Turn the blue network status indicator on or off.",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.binary({
                name: "turbo_mode",
                cluster: "customClusterEwelink",
                attribute: "radioPower",
                description: "Boost Zigbee radio transmit power to improve range.",
                entityCategory: "config",
                valueOff: [false, 0x09],
                valueOn: [true, 0x14],
            }),
            m.numeric({
                name: "power",
                cluster: "customClusterEwelink",
                attribute: "acCurrentPowerValue",
                description: "Power used by the connected load.",
                unit: "W",
                access: "STATE_GET",
                fzConvert: (model, msg, publish, options, meta) => {
                    if ("acCurrentPowerValue" in msg.data) {
                        return { power: (0, sonoff_1.signedInt32MilliToValue)(msg.data.acCurrentPowerValue) };
                    }
                },
            }),
            m.numeric({
                name: "current",
                cluster: "customClusterEwelink",
                attribute: "acCurrentCurrentValue",
                description: "Current drawn by the connected load.",
                unit: "A",
                access: "STATE_GET",
                fzConvert: (model, msg, publish, options, meta) => {
                    if ("acCurrentCurrentValue" in msg.data) {
                        return { current: msg.data.acCurrentCurrentValue / 1000 };
                    }
                },
            }),
            m.numeric({
                name: "voltage",
                cluster: "customClusterEwelink",
                attribute: "acCurrentVoltageValue",
                description: "Supply voltage measured by the plug.",
                unit: "V",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_today",
                cluster: "customClusterEwelink",
                attribute: "energyToday",
                description: "Energy used today by the connected load.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "output_energy_today",
                label: "Export energy today",
                cluster: "customClusterEwelink",
                attribute: "outputEnergyToday",
                description: "Energy fed back today through the plug.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_month",
                label: "Energy this month",
                cluster: "customClusterEwelink",
                attribute: "energyMonth",
                description: "Energy used this month by the connected load.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "output_energy_month",
                label: "Export energy this month",
                cluster: "customClusterEwelink",
                attribute: "outputEnergyMonth",
                description: "Energy fed back this month through the plug.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "total_energy",
                label: "Total energy",
                cluster: "customClusterEwelink",
                attribute: "totalEnergyConsumption",
                description: "Total energy used by the connected load.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "total_output_energy",
                label: "Total export energy",
                cluster: "customClusterEwelink",
                attribute: "totalOutputEnergyConsumption",
                description: "Total energy fed back through the plug.",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            sonoffExtend.faultCodeMiniZb1gsp({ hasSwitch: false }),
            sonoffExtend.localFastSceneConfiguration({ hasSwitch: false }),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff", "customClusterEwelink"]);
            await endpoint.read("customClusterEwelink", ["faultCode"], defaultResponseOptions);
        },
    },
    {
        zigbeeModel: ["SNZB-09P"],
        model: "SNZB-09P",
        vendor: "SONOFF",
        description: "Siren",
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    powerSupplyMode: { name: "powerSupplyMode", ID: 0x0024, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
                    alarmSoundEnable: { name: "alarmSoundEnable", ID: 0x2026, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    alarmLightEnable: { name: "alarmLightEnable", ID: 0x2022, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    alarmSoundType: { name: "alarmSoundType", ID: 0x2023, type: zigbee_herdsman_1.Zcl.DataType.ENUM8, write: true },
                    alarmVolumeLevel: { name: "alarmVolumeLevel", ID: 0x2024, type: zigbee_herdsman_1.Zcl.DataType.ENUM8, write: true },
                    alarmDuration: { name: "alarmDuration", ID: 0x2025, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true },
                    spilt: { name: "spilt", ID: 0x2000, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true },
                },
                commands: {
                    alertCommand: { name: "alertCommand", ID: 0x0f, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                },
                commandsResponse: {},
            }),
            sonoffExtend.powerSupplyModeWithChangeBatteryState(),
            sonoffExtend.batteryWithPowerSupplyMode(),
            m.binary({
                name: "alarm_sound_enable",
                cluster: "customClusterEwelink",
                attribute: "alarmSoundEnable",
                entityCategory: "config",
                zigbeeCommandOptions: manufacturerOptions,
                description: "Enable or disable the alarm sound.",
                valueOn: ["ON", 0x01],
                valueOff: ["OFF", 0x00],
            }),
            m.binary({
                name: "alarm_light_enable",
                cluster: "customClusterEwelink",
                attribute: "alarmLightEnable",
                entityCategory: "config",
                zigbeeCommandOptions: manufacturerOptions,
                description: "Enable or disable the alarm light.",
                valueOn: ["ON", 0x01],
                valueOff: ["OFF", 0x00],
            }),
            m.binary({
                name: "tamper",
                cluster: "customClusterEwelink",
                attribute: "spilt",
                entityCategory: "diagnostic",
                access: "STATE_GET",
                zigbeeCommandOptions: manufacturerOptions,
                description: "Tamper-proof status",
                valueOn: [true, 0x01],
                valueOff: [false, 0x00],
            }),
            m.enumLookup({
                name: "alarm_sound_type",
                lookup: {
                    siren_classic: 0x00,
                    siren_steady: 0x01,
                    siren_rising: 0x03,
                    siren_warning: 0x05,
                    siren_rapid: 0x06,
                    siren_emergency: 0x08,
                    tone_chirp: 0x02,
                    tone_hi_lo: 0x04,
                    tone_intermittent: 0x07,
                    tone_pulse: 0x09,
                },
                cluster: "customClusterEwelink",
                attribute: "alarmSoundType",
                entityCategory: "config",
                description: "Select the alarm sound preset.",
            }),
            m.enumLookup({
                name: "alarm_volume_level",
                lookup: { low: 0x00, medium: 0x01, high: 0x02, max: 0x03 },
                cluster: "customClusterEwelink",
                attribute: "alarmVolumeLevel",
                entityCategory: "config",
                description: "Set the alarm sound volume level.",
            }),
            m.numeric({
                name: "alarm_duration",
                cluster: "customClusterEwelink",
                attribute: "alarmDuration",
                entityCategory: "config",
                description: "Alarm duration in seconds.",
                valueMin: 1,
                valueMax: 900,
                unit: "s",
            }),
        ],
        ota: true,
        fromZigbee: [fzLocal.snzb_09p_alert],
        toZigbee: [tzLocal.snzb_09p_alert],
        exposes: [
            e
                .binary("siren_on", ea.SET, "ON", "OFF")
                .withLabel("Siren on")
                .withDescription("using the configured sound, light, volume, and duration."),
        ],
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["customClusterEwelink"]);
            await endpoint.read("customClusterEwelink", ["spilt"], manufacturerOptions);
        },
    },
    {
        zigbeeModel: ["SNZB-03PR2"],
        model: "SNZB-03PR2",
        vendor: "SONOFF",
        description: "Zigbee PIR sensor",
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    illuminationCompensationOffset: {
                        name: "illuminationCompensationOffset",
                        ID: 0x2018,
                        type: zigbee_herdsman_1.Zcl.DataType.INT16,
                        write: true,
                    },
                },
                commands: {},
                commandsResponse: {},
            }),
            m.occupancy({ reporting: false }),
            m.illuminance({ reporting: false }),
            m.battery({
                percentage: true,
                voltage: false,
            }),
            m.numeric({
                name: "pir_occupied_to_unoccupied_delay",
                cluster: "msOccupancySensing",
                attribute: { ID: 0x0010, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
                description: "Detection Duration",
                valueMin: 5,
                valueMax: 60,
                unit: "s",
                access: "ALL",
                entityCategory: "config",
                label: "Detection Duration",
                fzConvert: (model, msg) => {
                    const data = msg.data;
                    // This device is not fully spec-compliant and may report this value via raw attribute keys.
                    const candidates = [data.pirOToUDelay, data["16"], data["15360"]];
                    const value = candidates.find((candidate) => typeof candidate === "number");
                    if (typeof value === "number") {
                        return { pir_occupied_to_unoccupied_delay: value };
                    }
                },
            }),
            m.numeric({
                name: "illumination_compensation_offset",
                cluster: "customClusterEwelink",
                attribute: "illuminationCompensationOffset",
                description: "Light intensity calibration offset",
                label: "Illumination calibration",
                valueMin: -1000,
                valueMax: 1000,
                unit: "lx",
                entityCategory: "config",
                access: "ALL",
            }),
        ],
        ota: true,
    },
    {
        zigbeeModel: ["MINI-ZB1GS"],
        model: "MINI-ZB1GS",
        vendor: "SONOFF",
        description: "Zigbee smart switch",
        fromZigbee: [fz.on_off],
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    networkLed: { name: "networkLed", ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    faultCode: { name: "faultCode", ID: 0x0010, type: zigbee_herdsman_1.Zcl.DataType.UINT32 },
                    radioPower: { name: "radioPower", ID: 0x0012, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                    delayedPowerOnState: { name: "delayedPowerOnState", ID: 0x0014, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    delayedPowerOnTime: { name: "delayedPowerOnTime", ID: 0x0015, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true },
                    externalTriggerMode: { name: "externalTriggerMode", ID: 0x0016, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true },
                    detachRelayMode2: { name: "detachRelayMode2", ID: 0x0019, type: zigbee_herdsman_1.Zcl.DataType.BITMAP8, write: true },
                    detachRelayActionEvent: { name: "detachRelayActionEvent", ID: 0x0028, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
                },
                commands: {
                    protocolData: { name: "protocolData", ID: 0x01, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                },
                commandsResponse: {},
            }),
            m.onOff({
                powerOnBehavior: true,
                skipDuplicateTransaction: true,
                configureReporting: true,
            }),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Turn the blue network status indicator on or off.",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.binary({
                name: "turbo_mode",
                cluster: "customClusterEwelink",
                attribute: "radioPower",
                description: "Boost Zigbee radio transmit power to improve range.",
                entityCategory: "config",
                valueOff: [false, 0x09],
                valueOn: [true, 0x14],
            }),
            sonoffExtend.inchingControlSet({}, 86399.5),
            m.binary({
                name: "delayed_power_on_state",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnState",
                description: "Restore the plug output after the configured power-on delay.",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.numeric({
                name: "delayed_power_on_time",
                cluster: "customClusterEwelink",
                attribute: "delayedPowerOnTime",
                description: "Delay before the plug output is restored after power returns.",
                entityCategory: "config",
                unit: "s",
                scale: 2,
                valueMin: 0.5,
                valueMax: 3599.5,
                valueStep: 0.5,
            }),
            sonoffExtend.externalSwitchTriggerMode(),
            sonoffExtend.detachRelayModeControl(1),
            sonoffExtend.detachRelayActionEvent(),
            sonoffExtend.faultCodeMiniZb1gs(),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff", "customClusterEwelink"]);
            await endpoint.read("customClusterEwelink", ["faultCode"], defaultResponseOptions);
        },
    },
    {
        zigbeeModel: ["SNZB-02UL"],
        model: "SNZB-02UL",
        vendor: "SONOFF",
        description: "E-ink screen temperature and humidity sensor",
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    comfortTemperatureMax: { name: "comfortTemperatureMax", ID: 0x0003, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                    comfortTemperatureMin: { name: "comfortTemperatureMin", ID: 0x0004, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                    comfortHumidityMin: { name: "comfortHumidityMin", ID: 0x0005, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true },
                    comfortHumidityMax: { name: "comfortHumidityMax", ID: 0x0006, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true },
                    temperatureUnits: { name: "temperatureUnits", ID: 0x0007, type: zigbee_herdsman_1.Zcl.DataType.UINT16, write: true },
                    temperatureCalibration: { name: "temperatureCalibration", ID: 0x2003, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                    humidityCalibration: { name: "humidityCalibration", ID: 0x2004, type: zigbee_herdsman_1.Zcl.DataType.INT16, write: true },
                },
                commands: {},
                commandsResponse: {},
            }),
            m.battery(),
            m.temperature({ valueMin: 0, valueMax: 50 }),
            m.humidity({ valueMin: 5, valueMax: 95 }),
            sonoffExtend.temperatureHumidityCalculatedValues(),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
            m.numeric({
                name: "comfort_temperature_min",
                cluster: "customClusterEwelink",
                attribute: "comfortTemperatureMin",
                entityCategory: "config",
                description: "Minimum temperature that is considered comfortable. The device will display ❄️ when the temperature is lower than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: 0,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "comfort_temperature_max",
                cluster: "customClusterEwelink",
                attribute: "comfortTemperatureMax",
                entityCategory: "config",
                description: "Maximum temperature that is considered comfortable. The device will display 🔥 when the temperature is higher than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: 0,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.enumLookup({
                name: "temperature_units",
                lookup: { celsius: 0, fahrenheit: 1 },
                cluster: "customClusterEwelink",
                attribute: "temperatureUnits",
                entityCategory: "config",
                description: "The unit of the temperature displayed on the device screen. Note: wake up the device by pressing the button on the back before changing this value.",
            }),
            m.numeric({
                name: "comfort_humidity_min",
                cluster: "customClusterEwelink",
                attribute: "comfortHumidityMin",
                entityCategory: "config",
                description: "Minimum relative humidity that is considered comfortable. The device will display ☀️ when the humidity is lower than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: 5,
                valueMax: 95,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
            m.numeric({
                name: "comfort_humidity_max",
                cluster: "customClusterEwelink",
                attribute: "comfortHumidityMax",
                entityCategory: "config",
                description: "Maximum relative humidity that is considered comfortable. The device will display 💧 when the humidity is higher than this value. Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: 5,
                valueMax: 95,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
            m.numeric({
                name: "temperature_calibration",
                cluster: "customClusterEwelink",
                attribute: "temperatureCalibration",
                entityCategory: "config",
                description: "Calibrated temperature target value (supports 0.1°C step). Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: -50,
                valueMax: 50,
                scale: 100,
                valueStep: 0.1,
                unit: "°C",
            }),
            m.numeric({
                name: "humidity_calibration",
                cluster: "customClusterEwelink",
                attribute: "humidityCalibration",
                entityCategory: "config",
                description: "Calibrated relative humidity target value (supports 0.1% step). Note: wake up the device by pressing the button on the back before changing this value.",
                valueMin: -95,
                valueMax: 95,
                scale: 100,
                valueStep: 0.1,
                unit: "%",
            }),
        ],
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            if (!endpoint) {
                throw new Error("Endpoint 1 not found");
            }
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff"]);
        },
        ota: true,
    },
    {
        zigbeeModel: ["S61SZBTPB"],
        model: "S61SZBTPB",
        vendor: "SONOFF",
        description: "Zigbee smart plug with power monitoring",
        extend: [
            m.deviceAddCustomCluster("customClusterEwelink", {
                name: "customClusterEwelink",
                ID: 0xfc11,
                attributes: {
                    networkLed: { name: "networkLed", ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN, write: true },
                    faultCode: { name: "faultCode", ID: 0x0010, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    limitsOfThresholdValue: { name: "limitsOfThresholdValue", ID: 0x7003, type: zigbee_herdsman_1.Zcl.DataType.CHAR_STR, write: true },
                    acCurrentCurrentValue: { name: "acCurrentCurrentValue", ID: 0x7004, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    acCurrentVoltageValue: { name: "acCurrentVoltageValue", ID: 0x7005, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    acCurrentPowerValue: { name: "acCurrentPowerValue", ID: 0x7006, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    outlet_control_protect: { name: "outlet_control_protect", ID: 0x7007, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    energyToday: { name: "energyToday", ID: 0x7009, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    energyMonth: { name: "energyMonth", ID: 0x700a, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    energyYesterday: { name: "energyYesterday", ID: 0x700b, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                    acCurrentMaxOverloadEnable: { name: "acCurrentMaxOverloadEnable", ID: 0x700c, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    acCurrentMaxOverload: { name: "acCurrentMaxOverload", ID: 0x700d, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                    acVoltageMaxOverloadEnable: { name: "acVoltageMaxOverloadEnable", ID: 0x700e, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    acVoltageMaxOverload: { name: "acVoltageMaxOverload", ID: 0x700f, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                    acPowerMaxOverloadEnable: { name: "acPowerMaxOverloadEnable", ID: 0x7010, type: zigbee_herdsman_1.Zcl.DataType.UINT8, write: true, max: 0xff },
                    acPowerMaxOverload: { name: "acPowerMaxOverload", ID: 0x7011, type: zigbee_herdsman_1.Zcl.DataType.UINT32, write: true, max: 0xffffffff },
                    totalEnergyConsumption: { name: "totalEnergyConsumption", ID: 0x701e, type: zigbee_herdsman_1.Zcl.DataType.UINT32, max: 0xffffffff },
                },
                commands: {
                    protocolData: { name: "protocolData", ID: 0x01, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                    clearHistory: {
                        name: "clearHistory",
                        ID: 0x0c,
                        parameters: [
                            { name: "deviceType", type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
                            { name: "deviceLength", type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
                            { name: "eventType", type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
                        ],
                    },
                    readRecord: { name: "readRecord", ID: 0x02, parameters: [{ name: "data", type: zigbee_herdsman_1.Zcl.BuffaloZclDataType.LIST_UINT8 }] },
                },
                commandsResponse: {},
            }),
            m.onOff({
                powerOnBehavior: true,
                skipDuplicateTransaction: true,
                configureReporting: true,
            }),
            m.binary({
                name: "network_indicator",
                cluster: "customClusterEwelink",
                attribute: "networkLed",
                description: "Network indicator settings, turn off/on the blue online status network indicator.",
                entityCategory: "config",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.numeric({
                name: "power",
                cluster: "customClusterEwelink",
                attribute: "acCurrentPowerValue",
                description: "Active power",
                unit: "W",
                access: "STATE_GET",
                reporting: { min: "10_SECONDS", max: "MAX", change: 0 },
                fzConvert: (model, msg, publish, options, meta) => {
                    // Device keeps reporting a acCurrentPowerValue after turning OFF.
                    // Make sure power = 0 when turned OFF
                    // https://github.com/Koenkk/zigbee2mqtt/issues/28470
                    if ("acCurrentPowerValue" in msg.data) {
                        const power = meta.state?.state === "ON" ? msg.data.acCurrentPowerValue / 1000 : 0;
                        return { power, ac_current_power_value: power };
                    }
                },
            }),
            m.numeric({
                name: "current",
                cluster: "customClusterEwelink",
                attribute: "acCurrentCurrentValue",
                description: "Current",
                unit: "A",
                access: "STATE_GET",
                // https://github.com/Koenkk/zigbee2mqtt/issues/28470#issuecomment-3369116710
                reporting: { min: "10_SECONDS", max: "MAX", change: 2 },
                fzConvert: (model, msg, publish, options, meta) => {
                    // Device keeps reporting a acCurrentCurrentValue after turning OFF.
                    // Make sure power = 0 when turned OFF
                    // https://github.com/Koenkk/zigbee2mqtt/issues/28470
                    if ("acCurrentCurrentValue" in msg.data) {
                        const current = meta.state?.state === "ON" ? msg.data.acCurrentCurrentValue / 1000 : 0;
                        return { current, ac_current_current_value: current };
                    }
                },
            }),
            m.numeric({
                name: "voltage",
                cluster: "customClusterEwelink",
                attribute: "acCurrentVoltageValue",
                description: "Voltage",
                unit: "V",
                access: "STATE_GET",
                scale: 1000,
            }),
            m.numeric({
                name: "total_energy_consumption",
                cluster: "seMetering",
                attribute: "currentSummDelivered",
                description: "CurrentSummationDelivered",
                unit: "kWh",
                access: "STATE_GET",
                fzConvert: (model, msg) => {
                    if (msg.data.currentSummDelivered === undefined) {
                        return;
                    }
                    const value = msg.data.currentSummDelivered;
                    const numericValue = typeof value === "bigint" ? Number(value) : value;
                    if (typeof numericValue !== "number" || numericValue === 0xffffffffffff || Number.isNaN(numericValue)) {
                        return;
                    }
                    const multiplier = msg.endpoint.getClusterAttributeValue("seMetering", "multiplier") || 1;
                    const divisor = msg.endpoint.getClusterAttributeValue("seMetering", "divisor") || 1000;
                    const factor = divisor ? multiplier / divisor : 1;
                    return { total_energy_consumption: numericValue * factor };
                },
            }),
            m.numeric({
                name: "energy_today",
                cluster: "customClusterEwelink",
                attribute: "energyToday",
                description: "Electricity consumption for the day",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_month",
                cluster: "customClusterEwelink",
                attribute: "energyMonth",
                description: "Electricity consumption for the month",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.numeric({
                name: "energy_yesterday",
                cluster: "customClusterEwelink",
                attribute: "energyYesterday",
                description: "Electricity consumption for the yesterday",
                unit: "kWh",
                scale: 1000,
                access: "STATE_GET",
            }),
            m.binary({
                name: "outlet_control_protect",
                cluster: "customClusterEwelink",
                attribute: "outlet_control_protect",
                description: "When enabled, the device turns off immediately when the configured threshold is reached. After protection is triggered, it can only be restored manually and cannot be turned on via Z2M.",
                valueOff: [false, 0],
                valueOn: [true, 1],
            }),
            m.binary({
                name: "ac_current_max_overload_enable",
                cluster: "customClusterEwelink",
                attribute: "acCurrentMaxOverloadEnable",
                valueOn: ["ON", 1],
                valueOff: ["OFF", 0],
                description: "AC current overload protection enable",
                access: "ALL",
                entityCategory: "config",
            }),
            m.numeric({
                name: "ac_current_max_overload",
                cluster: "customClusterEwelink",
                attribute: "acCurrentMaxOverload",
                description: "AC current overload threshold",
                unit: "A",
                scale: 1000,
                valueMin: 0.1,
                valueMax: 15,
                valueStep: 0.1,
                access: "ALL",
                entityCategory: "config",
            }),
            m.binary({
                name: "ac_voltage_max_overload_enable",
                cluster: "customClusterEwelink",
                attribute: "acVoltageMaxOverloadEnable",
                valueOn: ["ON", 1],
                valueOff: ["OFF", 0],
                description: "AC voltage overload protection enable",
                access: "ALL",
                entityCategory: "config",
            }),
            m.numeric({
                name: "ac_voltage_max_overload",
                cluster: "customClusterEwelink",
                attribute: "acVoltageMaxOverload",
                description: "AC voltage overload threshold (runtime validated by detected supply band)",
                unit: "V",
                scale: 1000,
                valueMin: 85,
                valueMax: 277,
                valueStep: 1,
                access: "ALL",
                entityCategory: "config",
            }),
            m.binary({
                name: "ac_power_max_overload_enable",
                cluster: "customClusterEwelink",
                attribute: "acPowerMaxOverloadEnable",
                valueOn: ["ON", 1],
                valueOff: ["OFF", 0],
                description: "AC power overload protection enable",
                access: "ALL",
                entityCategory: "config",
            }),
            m.numeric({
                name: "ac_power_max_overload",
                cluster: "customClusterEwelink",
                attribute: "acPowerMaxOverload",
                description: "AC power overload threshold (runtime validated by detected supply band)",
                unit: "W",
                scale: 1000,
                valueMin: 10,
                valueMax: 3600,
                valueStep: 1,
                access: "ALL",
                entityCategory: "config",
            }),
            sonoffExtend.readConsumptionRecord("customClusterEwelink", "readRecord"),
            sonoffExtend.clearConsumptionHistory(),
            sonoffExtend.inchingControlSet(),
        ],
        ota: true,
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff", "customClusterEwelink", "seMetering"]);
            await reporting.onOff(endpoint, { min: 1, max: 1800, change: 0 });
            await endpoint.read("customClusterEwelink", ["acCurrentCurrentValue", "acCurrentVoltageValue", "acCurrentPowerValue", 0x7003, "outlet_control_protect", "totalEnergyConsumption"], defaultResponseOptions);
            await endpoint.configureReporting("customClusterEwelink", [
                { attribute: "energyMonth", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
                { attribute: "energyYesterday", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
                { attribute: "energyToday", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
                { attribute: "totalEnergyConsumption", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 50 },
            ]);
            await endpoint.read("seMetering", ["multiplier", "divisor"]);
            await reporting.currentSummDelivered(endpoint);
        },
    },
    {
        zigbeeModel: ["CK-TLSR8656-SS5-01(7037)", "CK-TLSR8656-Z123SE24DY-01(7037)"],
        model: "CK-TLSR8656-SS5-01(7037)",
        vendor: "eWeLink",
        whiteLabel: [
            {
                model: "CK-TLSR8656-Z123SE24DY-01(7037)",
                vendor: "eWeLink",
                fingerprint: [{ modelID: "CK-TLSR8656-Z123SE24DY-01(7037)", manufacturerName: "eWeLink" }],
            },
        ],
        description: "Zigbee CO sensor",
        ota: true,
        extend: [
            ewelinkBattery(),
            m.iasZoneAlarm({ zoneType: "carbon_monoxide", zoneAttributes: ["alarm_1"] }),
            m.numeric({
                name: "co",
                unit: "ppm",
                valueMin: 0,
                valueMax: 1000,
                cluster: "msCarbonMonoxide",
                attribute: "measuredValue",
                description: "The measured CO level",
                access: "STATE_GET",
            }),
            m.bindCluster({ cluster: "genPollCtrl", clusterType: "input" }),
        ],
        configure: async (device, coordinatorEndpoint) => {
            const endpoint = device.getEndpoint(1);
            await reporting.bind(endpoint, coordinatorEndpoint, ["msCarbonMonoxide", "ssIasZone"]);
            await endpoint.read("genPowerCfg", ["batteryPercentageRemaining", "batteryVoltage"]);
            await endpoint.read("msCarbonMonoxide", ["measuredValue"]);
            await endpoint.read("ssIasZone", ["zoneStatus", "zoneState", "iasCieAddr", "zoneId"]);
        },
    },
];
//# sourceMappingURL=sonoff.js.map