diff --git a/device.js b/device.js index 12c71e3..fc7ab9a 100644 --- a/device.js +++ b/device.js @@ -83,6 +83,12 @@ class Device { value: false } } + case 'event': { + return { + instance: parameters.instance, + value: undefined + } + } default: { logger.log('error', {message: `Unsupported capability type: ${type}`}); return undefined;