zigbee-herdsman-converters
Version:
Collection of device converters to be used with zigbee-herdsman
114 lines • 4.79 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.definitions = exports.simplaHomeModernExtend = void 0;
const m = __importStar(require("../lib/modernExtend"));
const utils = __importStar(require("../lib/utils"));
const measurementIntervalMin = 5;
const measurementIntervalMax = 4 * 60 * 60;
exports.simplaHomeModernExtend = {
measurementInterval: (args) => {
const resultName = "measurement_interval";
const resultUnit = "s";
const resultDescription = "Defines how often the device performs measurements";
const result = m.numeric({
name: resultName,
access: "ALL",
unit: resultUnit,
cluster: "genAnalogOutput",
attribute: "presentValue",
scale: 1,
valueMin: measurementIntervalMin,
valueMax: measurementIntervalMax,
description: resultDescription,
...args,
});
// exposes is dynamic based on fw version
result.exposes = [
(device) => {
if (!utils.isDummyDevice(device) && device.softwareBuildID && Number(`0x${device?.softwareBuildID}`) > 0x01010101) {
return result.exposes;
}
return [];
},
];
return result;
},
};
exports.definitions = [
{
zigbeeModel: ["Soil Pro"],
model: "Soil Pro",
vendor: "Simpla Home",
description: "Soil Pro",
extend: [
m.deviceEndpoints({ endpoints: { "1": 1, z1_top: 2, z2_bottom: 3 } }),
m.identify(),
m.temperature({
// the device allows to set the internal measurement interval in the specified range
// the Min/Max reporting interval needs to be aligned in order to synchronize the
// value reporting interval to the measurements
reporting: { min: measurementIntervalMin, max: measurementIntervalMax, change: 10 },
}),
m.soilMoisture({
description: "Soil Moisture of Zone 1 (Top Zone)",
endpointNames: ["z1_top"],
reporting: { min: measurementIntervalMin, max: measurementIntervalMax, change: 100 },
}),
m.soilMoisture({
description: "Soil Moisture of Zone 2 (Bottom Zone)",
endpointNames: ["z2_bottom"],
reporting: { min: measurementIntervalMin, max: measurementIntervalMax, change: 100 },
}),
m.battery(),
exports.simplaHomeModernExtend.measurementInterval(),
m.illuminance({
reporting: { min: measurementIntervalMin, max: measurementIntervalMax, change: 5 },
}),
],
configure: async (device, coordinatorEndpoint, logger) => {
const endpointId = device.getEndpoint(1);
await endpointId.read("genBasic", ["swBuildId"]);
if (Number(`0x${device?.softwareBuildID}`) > 0x01010101) {
const endpointAnalogOutput = device.getEndpoint(2);
await endpointAnalogOutput.bind("genAnalogOutput", coordinatorEndpoint);
await endpointAnalogOutput.read("genAnalogOutput", ["presentValue"]);
}
},
meta: { multiEndpoint: true },
ota: true,
},
];
//# sourceMappingURL=simpla_home.js.map