home-automation-home-assistant/tileboard/pages/cctv.js

27 lines
620 B
JavaScript

var PAGE_CCTV = {
title: 'CCTV',
bg: 'images/bg2.png',
icon: 'mdi-cctv',
groups: [
{
title: 'Kameras',
width: 2,
height: 2,
items: [
{
position: [0, 0],
id: 'camera.office',
type: TYPES.CAMERA_THUMBNAIL,
bgSize: 'cover',
width: 2,
state: false,
fullscreen: {
type: TYPES.CAMERA,
refresh: 1500,
bgSize: 'contain'
},
}
]
}
]
}