frontend/smart-hut/src/components/dashboard/devices/TypesOfDevices.js

25 lines
407 B
JavaScript
Raw Normal View History

export const LightDevice = {
2020-05-12 13:18:33 +00:00
img: '/img/lightOff.svg',
imgClick: '/img/lightOn.svg',
};
export const SmartPlugDevice = {
2020-05-12 13:18:33 +00:00
img: '/img/smart-plug.svg',
imgClick: '/img/smart-plug-off.svg',
};
export const TemperatureSensor = {
2020-05-12 13:18:33 +00:00
type: 'temperature_sensor',
img: '',
imgClick: '',
units: 'ºC',
};
2020-03-23 20:24:17 +00:00
export const deviceList = [
2020-05-12 13:18:33 +00:00
'Light',
'Dimmer',
'Switcher',
'Smart Plug',
'Sensor',
2020-03-23 20:24:17 +00:00
];