Tested with 15 Comet valves in my HA setup, working good.
import {Zcl} from "zigbee-herdsman";
import * as fz from "zigbee-herdsman-converters/converters/fromZigbee";
import * as tz from "zigbee-herdsman-converters/converters/toZigbee";
import * as exposes from "zigbee-herdsman-converters/lib/exposes";
import * as reporting from "zigbee-herdsman-converters/lib/reporting";
const e = exposes.presets;
const ea = exposes.access;
/** @type{import('zigbee-herdsman-converters/lib/types').DefinitionWithExtend | import('zigbee-herdsman-converters/lib/types').DefinitionWithExtend[]} */
export default [
{
fingerprint: [
{modelID: "SPZB0001", manufacturerName: "Eurotronic", dateCode: "20221110"},
{modelID: "SPZB0001", manufacturerName: "Eurotronic", dateCode: "20240821"},
{modelID: "SPZB0001", manufacturerName: "Eurotronic", dateCode: "20241105"},
],
model: "COZB0001",
vendor: "Eurotronic",
description: "Comet Zigbee wireless heater thermostat",
meta: {thermostat: {dontMapPIHeatingDemand: true}},
fromZigbee: [fz.eurotronic_thermostat, fz.battery],
toZigbee: [
tz.thermostat_occupied_heating_setpoint,
tz.thermostat_unoccupied_heating_setpoint,
tz.thermostat_local_temperature_calibration,
tz.eurotronic_host_flags,
tz.eurotronic_error_status,
tz.thermostat_setpoint_raise_lower,
tz.thermostat_control_sequence_of_operation,
tz.thermostat_remote_sensing,
tz.thermostat_local_temperature,
tz.thermostat_running_state,
tz.eurotronic_current_heating_setpoint,
tz.eurotronic_trv_mode,
tz.eurotronic_valve_position,
tz.eurotronic_child_lock,
tz.eurotronic_mirror_display,
],
exposes: [
e.battery(),
e.child_lock(),
e
.climate()
.withSetpoint("occupied_heating_setpoint", 8, 28, 0.5)
.withLocalTemperature()
.withSystemMode(["off", "auto", "heat"])
.withRunningState(["idle", "heat"])
.withLocalTemperatureCalibration()
.withPiHeatingDemand(),
e
.enum("trv_mode", exposes.access.ALL, [1, 2])
.withDescription(
"Select between direct control of the valve via the `valve_position` or automatic control of the valve based on the `current_heating_setpoint`. For manual control set the value to 1, for automatic control set the value to 2 (the default). When switched to manual mode the display shows a value from 0 (valve closed) to 100 (valve fully open) and the buttons on the device are disabled.",
),
e
.numeric("valve_position", exposes.access.ALL)
.withValueMin(0)
.withValueMax(255)
.withDescription(
"Directly control the radiator valve when `trv_mode` is set to 1. The values range from 0 (valve closed) to 255 (valve fully open)",
),
e
.binary("mirror_display", ea.ALL, "ON", "OFF")
.withDescription("Mirror display of the thermostat. Useful when it is mounted in a way where the display is presented upside down."),
],
ota: true,
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
const options = {manufacturerCode: Zcl.ManufacturerCode.NXP_SEMICONDUCTORS};
await reporting.bind(endpoint, coordinatorEndpoint, ["genPowerCfg", "hvacThermostat"]);
await reporting.thermostatTemperature(endpoint);
await reporting.thermostatPIHeatingDemand(endpoint);
await reporting.thermostatOccupiedHeatingSetpoint(endpoint);
await reporting.thermostatUnoccupiedHeatingSetpoint(endpoint);
await endpoint.configureReporting(
"hvacThermostat",
[
{
attribute: {ID: 0x4003, type: 41},
minimumReportInterval: 0,
maximumReportInterval: constants.repInterval.HOUR,
reportableChange: 25,
},
],
options,
);
await endpoint.configureReporting(
"hvacThermostat",
[
{
attribute: {ID: 0x4008, type: 34},
minimumReportInterval: 0,
maximumReportInterval: constants.repInterval.HOUR,
reportableChange: 1,
},
],
options,
);
await reporting.batteryPercentageRemaining(endpoint, {min: 3600, max: 86400, change: 1});
},
}
];
Suggest adding
{modelID: "SPZB0001", manufacturerName: "Eurotronic", dateCode: "20241105"}to the fingerprint section of devices/eurotronics.ts.
Tested with 15 Comet valves in my HA setup, working good.
Converter
-- unchanged besides adding fingerprint to list --