UNPKG

homey-zigbeedriver

Version:

This module can be used to make the development of Zigbee apps for Homey easier.

18 lines (16 loc) 302 B
'use strict'; /** * Cluster capability configuration for `alarm_motion`. * @type {ClusterCapabilityConfiguration} */ module.exports = { get: 'presentValue', report: 'presentValue', /** * @param {number} value * @returns {boolean} */ reportParser(value) { return value; }, };