Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function makeThing() {
const thing = new Thing('MastodonMultiLevelSwitchExample', 'multiLevelSwitch', 'An actuator example that just blog');
thing.addProperty(
new Property(thing,
'level',
new Value(0, handleLevelUpdate),
{
label: 'Level',
type: 'number',
description: 'Whether the output is changed',
}));
return thing;
}
function makeThing() {
const thing = new Thing('GpioBinarySensorExample',
'binarySensor',
'A sensor example that monitor GPIO input ie: button');
thing.value = new Value(false);
thing.addProperty(
new Property(thing,
'on',
thing.value,
{
'@type': 'OnOffProperty',
label: 'On/Off',
type: 'boolean',
description: 'Whether the input is changed'
}));
return thing;
}
function makeThing() {
const thing = new Thing('urn:dev:ops:my-lamp-1234',
'My Lamp',
['OnOffSwitch', 'Light'],
'A web connected lamp');
thing.addProperty(
new Property(thing,
'on',
new Value(true),
{
'@type': 'OnOffProperty',
title: 'On/Off',
type: 'boolean',
description: 'Whether the lamp is turned on',
}));
thing.addProperty(
new Property(thing,