UNPKG

homey-zigbeedriver

Version:

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

17 lines (14 loc) 290 B
'use strict'; const commandMap = { up: 'upOpen', idle: 'stop', down: 'downClose', }; /** * Cluster capability configuration for `windowcoverings_state`. * @type {ClusterCapabilityConfiguration} */ module.exports = { set: value => commandMap[value], setParser: () => ({}), };