Last active
April 27, 2023 23:23
-
-
Save Slyke/d0b84367fbfb59aa7fb9095458c567b6 to your computer and use it in GitHub Desktop.
Database of devices
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
devices: { | |
bedroomLight: { | |
type: "switch" | |
}, | |
denLight: { | |
type: "dimmable" | |
}, | |
livingroomLight: { | |
type: "dimmable" | |
}, | |
livingroomSensor: { | |
type: "sensor", | |
senses: ['lux', 'temperature', 'humidity'] | |
} | |
}, | |
dataStores: { | |
influx: { | |
stores: "temperature" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment