// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT export enum WidgetType { lamp, appliance, overhead, info, graph, control, music, hvac, camera, dishwasher, microwave, alarm, weatherInfo, timeInfo, powerInfo } struct Widget { id: string, type: WidgetType, visible: bool, } export struct ComponentData { id: string, x: int, y: int, width: int, height: int, visible: bool, background: brush } export struct DataGroup { id: string, components: [ComponentData] } import "../fonts/Poppins-Bold.ttf"; import "../fonts/Poppins-Light.ttf"; import "../fonts/Poppins-Medium.ttf"; import "../fonts/Poppins-Regular.ttf"; import "../fonts/Poppins-Thin.ttf"; export global AppState { in-out property first-run: true; in-out property current-page: 0; // Don't use this directly. Use target-page instead. in-out property target-page: 0; out property current-layout-data: pageData[current-page]; in property window-width; in property window-height; out property x-scale: window-width / 1920px; out property y-scale: window-height / 1080px; in-out property showing-full-screen: false; out property full-screen-index: -1; in-out property last-selected-index: -1; callback showFullScreen(int); showFullScreen(index)=> { full-screen-index = index; if full-screen-index != -1 { last-selected-index = index; showing-full-screen = true; } } out property default-font-family: "Poppins"; out property <[{id: string, name: string, type: WidgetType }]> component-details: [ { id: "lamp1", name: "His Nightstand", type: WidgetType.lamp }, { id: "lamp2", name: "Her Nightstand", type: WidgetType.lamp }, { id: "lamp3", name: "Stove", type: WidgetType.lamp }, { id: "lamp4", name: "Front Entry", type: WidgetType.lamp }, { id: "lamp5", name: "Back Porch", type: WidgetType.lamp }, { id: "lamp6", name: "Yard", type: WidgetType.lamp }, { id: "lamp7", name: "Hall Lights", type: WidgetType.lamp }, { id: "appliance1",name: "Dishwasher", type: WidgetType.dishwasher }, { id: "appliance2",name: "Microwave", type: WidgetType.microwave }, { id: "overhead1", name: "Dining Area", type: WidgetType.overhead, }, { id: "overhead2", name: "Kitchen Island", type: WidgetType.overhead, }, { id: "overhead3", name: "Stove", type: WidgetType.overhead, }, { id: "overhead4", name: "Walk-In Closet", type: WidgetType.overhead, }, { id: "overhead5",name: "En-Suite Bathroom", type: WidgetType.overhead, }, { id: "overhead6",name: "Master Bedroom 1", type: WidgetType.overhead, }, { id: "overhead7",name: "Master Bedroom 2", type: WidgetType.overhead, }, { id: "overhead8",name: "Master Bedroom 3", type: WidgetType.overhead, }, { id: "overhead9",name: "Master Bedroom 4", type: WidgetType.overhead, }, { id: "overhead10",name: "Office", type: WidgetType.overhead, }, { id: "overhead11",name: "Basement", type: WidgetType.overhead, }, { id: "info1", name:"Date-Time",type: WidgetType.timeInfo }, { id: "info2", name:"Weather",type: WidgetType.weatherInfo }, { id: "info3", name:"Power Usage",type: WidgetType.powerInfo }, { id: "graph1", name:"Humidity",type: WidgetType.graph }, { id: "graph2", name:"Pressure",type: WidgetType.graph }, { id: "control1", name:"Music",type: WidgetType.music }, { id: "control2", name:"Front Camera",type: WidgetType.camera }, { id: "control3", name:"Alarm",type: WidgetType.alarm }, { id: "control4", name:"Heating / Air Conditioning",type: WidgetType.hvac }, ]; out property <[DataGroup]> pageData: [ { id: "house", components: [ { id: "lamp1", x: 890.063, y: 620.552, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp2", x: 890.063, y: 620.552, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp3", x: 890.063, y: 620.552, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp4", x: 36.41, y: 157.445, width: 435.0, height: 314.0, background: #ffbe00, visible: true }, { id: "lamp5", x: 507.41, y: 157.445, width: 435.0, height: 314.0, background: #ffbe00, visible: true }, { id: "lamp6", x: 978.41, y: 157.445, width: 435.0, height: 314.0, background: #ffbe00, visible: true }, { id: "lamp7", x: 915.453, y: 645.893, width: 89.914, height: 90.012, background: #ffbe00, visible: false }, { id: "appliance1", x: 890.063, y: 620.552, width: 140.693, height: 140.693, background: #b5b5b5, visible: false }, { id: "appliance2", x: 890.063, y: 620.552, width: 140.693, height: 140.693, background: #b5b5b5, visible: false }, { id: "overhead1", x: 915.453, y: 645.941, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead2", x: 915.453, y: 645.941, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead3", x: 915.453, y: 645.941, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead4", x: 915.453, y: 645.941, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead5", x: 915.453, y: 645.941, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead6", x: 839.284, y: 645.941, width: 242.252, height: 89.914, background: #fff291, visible: false }, { id: "overhead7", x: 915.453, y: 645.941, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead8", x: 915.453, y: 645.941, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead9", x: 915.453, y: 645.941, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead10", x: 915.453, y: 645.941, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead11", x: 915.453, y: 645.941, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "info1", x: 1449.41, y: 854.445, width: 435.0, height: 121.0, background: #00acff, visible: true }, { id: "info2", x: 1449.41, y: 697.445, width: 435.0, height: 121.0, background: #00acff, visible: true }, { id: "info3", x: 1449.41, y: 540.445, width: 435.0, height: 121.0, background: #00acff, visible: true }, { id: "graph1", x: 890.063, y: 620.552, width: 140.693, height: 140.693, background: #ba00ff, visible: false }, { id: "graph2", x: 864.674, y: 620.552, width: 191.473, height: 140.693, background: #ba00ff, visible: false }, { id: "control1", x: 1449.41, y: 36.445, width: 435.0, height: 471.0, background: #00bf1d, visible: true }, { id: "control2", x: 36.41, y: 507.445, width: 435.0, height: 471.0, background: #00bf1d, visible: true }, { id: "control3", x: 507.41, y: 507.445, width: 435.0, height: 471.0, background: #00bf1d, visible: true }, { id: "control4", x: 978.41, y: 507.445, width: 435.0, height: 471.0, background: #00bf1d, visible: true }, { id: "filter", x: 36.41, y: 1007.85, width: 1848.0, height: 72.6, background: #8d8d8d, visible: true }, { id: "nav", x: 36.41, y: 0.145, width: 1377.0, height: 121.0, background: #8d8d8d, visible: true }, ] }, { id: "kitchen", components: [ { id: "lamp1", x: 430.614, y: 398.545, width: 121.0, height: 121.0, background: #ffbe00, visible: false }, { id: "lamp2", x: 430.614, y: 398.545, width: 121.0, height: 121.0, background: #ffbe00, visible: false }, { id: "lamp3", x: 430.614, y: 398.545, width: 121.0, height: 121.0, background: #ffbe00, visible: false }, { id: "lamp4", x: 430.614, y: 398.545, width: 121.0, height: 121.0, background: #ffbe00, visible: false }, { id: "lamp5", x: 430.614, y: 398.545, width: 121.0, height: 121.0, background: #ffbe00, visible: false }, { id: "lamp6", x: 430.614, y: 398.545, width: 121.0, height: 121.0, background: #ffbe00, visible: false }, { id: "lamp7", x: 452.449, y: 420.339, width: 77.329, height: 77.412, background: #ffbe00, visible: false }, { id: "appliance1", x: 507.642, y: 157.445, width: 435.0, height: 471.0, background: #b5b5b5, visible: true }, { id: "appliance2", x: 36.642, y: 157.445, width: 435.0, height: 471.0, background: #b5b5b5, visible: true }, { id: "overhead1", x: 36.642, y: 664.445, width: 278.0, height: 314.0, background: #fff291, visible: true }, { id: "overhead2", x: 350.642, y: 664.445, width: 278.0, height: 314.0, background: #fff291, visible: true }, { id: "overhead3", x: 664.642, y: 664.445, width: 278.0, height: 314.0, background: #fff291, visible: true }, { id: "overhead4", x: 452.449, y: 420.381, width: 77.329, height: 77.329, background: #fff291, visible: false }, { id: "overhead5", x: 452.449, y: 420.381, width: 77.329, height: 77.329, background: #fff291, visible: false }, { id: "overhead6", x: 386.942, y: 420.381, width: 208.343, height: 77.329, background: #fff291, visible: false }, { id: "overhead7", x: 452.449, y: 420.381, width: 77.329, height: 77.329, background: #fff291, visible: false }, { id: "overhead8", x: 452.449, y: 420.381, width: 77.329, height: 77.329, background: #fff291, visible: false }, { id: "overhead9", x: 452.449, y: 420.381, width: 77.329, height: 77.329, background: #fff291, visible: false }, { id: "overhead10", x: 452.449, y: 420.381, width: 77.329, height: 77.329, background: #fff291, visible: false }, { id: "overhead11", x: 452.449, y: 420.381, width: 77.329, height: 77.329, background: #fff291, visible: false }, { id: "info1", x: 978.642, y: 700.445, width: 435.0, height: 121.0, background: #00acff, visible: true }, { id: "info2", x: 978.642, y: 857.445, width: 435.0, height: 121.0, background: #00acff, visible: true }, { id: "info3", x: 430.614, y: 442.217, width: 121.0, height: 33.657, background: #00acff, visible: false }, { id: "graph1", x: 978.642, y: 157.445, width: 435.0, height: 507.0, background: #ba00ff, visible: true }, { id: "graph2", x: 408.778, y: 398.545, width: 164.671, height: 121.0, background: #ba00ff, visible: false }, { id: "control1", x: 1449.64, y: 36.445, width: 435.0, height: 942.0, background: #00bf1d, visible: true }, { id: "control2", x: 430.614, y: 420.381, width: 121.0, height: 77.329, background: #00bf1d, visible: false }, { id: "control3", x: 430.614, y: 420.381, width: 121.0, height: 77.329, background: #00bf1d, visible: false }, { id: "control4", x: 1259.29, y: 628.145, width: 121.0, height: 121.0, background: #00ac0f, visible: false }, { id: "filter", x: 36.642, y: 1007.85, width: 1848.0, height: 72.6, background: #8d8d8d, visible: true }, { id: "nav", x: 36.642, y: 0.445, width: 1377.0, height: 121.0, background: #8d8d8d, visible: true }, ] }, { id: "bedroom1", components: [ { id: "lamp1", x: 36.86, y: 543.745, width: 435.0, height: 435.0, background: #ffbe00, visible: true }, { id: "lamp2", x: 978.86, y: 543.745, width: 435.0, height: 435.0, background: #ffbe00, visible: true }, { id: "lamp3", x: 852.921, y: 687.395, width: 105.071, height: 105.071, background: #ffbe00, visible: false }, { id: "lamp4", x: 852.921, y: 687.395, width: 105.071, height: 105.071, background: #ffbe00, visible: false }, { id: "lamp5", x: 852.921, y: 687.395, width: 105.071, height: 105.071, background: #ffbe00, visible: false }, { id: "lamp6", x: 892.968, y: 685.715, width: 65.233, height: 64.659, background: #ffbe00, visible: false }, { id: "lamp7", x: 891.162, y: 691.453, width: 64.824, height: 64.426, background: #ffbe00, visible: false }, { id: "appliance1", x: 852.921, y: 687.395, width: 105.071, height: 105.071, background: #b5b5b5, visible: false }, { id: "appliance2", x: 852.921, y: 687.395, width: 105.071, height: 105.071, background: #b5b5b5, visible: false }, { id: "overhead1", x: 477.76, y: 664.745, width: 278.0, height: 121.0, background: #fff291, visible: false }, { id: "overhead2", x: 791.76, y: 664.745, width: 278.0, height: 121.0, background: #fff291, visible: false }, { id: "overhead3", x: 1105.76, y: 664.745, width: 278.0, height: 121.0, background: #fff291, visible: false }, { id: "overhead4", x: 1135.86, y: 354.977, width: 277.716, height: 152.469, background: #fff291, visible: true }, { id: "overhead5", x: 822.144, y: 354.977, width: 277.716, height: 152.469, background: #fff291, visible: true }, { id: "overhead6", x: 507.86, y: 354.977, width: 277.716, height: 152.469, background: #fff291, visible: true }, { id: "overhead7", x: 507.86, y: 157.145, width: 278.0, height: 152.469, background: #fff291, visible: true }, { id: "overhead8", x: 1135.86, y: 157.145, width: 277.716, height: 152.469, background: #fff291, visible: true }, { id: "overhead9", x: 821.86, y: 157.145, width: 275.274, height: 152.469, background: #fff291, visible: true }, { id: "overhead10", x: 871.882, y: 706.356, width: 67.149, height: 67.149, background: #fff291, visible: false }, { id: "overhead11", x: 871.882, y: 706.356, width: 67.149, height: 67.149, background: #fff291, visible: false }, { id: "info1", x: 880.956, y: 733.116, width: 49.0, height: 13.63, background: #00acff, visible: false }, { id: "info2", x: 880.956, y: 733.116, width: 49.0, height: 13.63, background: #00acff, visible: false }, { id: "info3", x: 852.921, y: 725.318, width: 105.071, height: 29.227, background: #00acff, visible: false }, { id: "graph1", x: 773.46, y: 507.445, width: 435.0, height: 435.0, background: #ba00ff, visible: false }, { id: "graph2", x: 833.96, y: 687.395, width: 142.994, height: 105.071, background: #ba00ff, visible: false }, { id: "control1", x: 1449.86, y: 36.445, width: 435.0, height: 942.0, background: #00bf1d, visible: true }, { id: "control2", x: 36.86, y: 157.145, width: 435.0, height: 350.3, background: #00bf1d, visible: true }, { id: "control3", x: 852.921, y: 706.356, width: 105.071, height: 67.149, background: #00bf1d, visible: false }, { id: "control4", x: 852.921, y: 687.395, width: 105.071, height: 105.071, background: #00ac0f, visible: false }, { id: "filter", x: 36.86, y: 1007.85, width: 1848.0, height: 72.6, background: #8d8d8d, visible: true }, { id: "nav", x: 36.86, y: 0.445, width: 1377.0, height: 121.0, background: #8d8d8d, visible: true }, ] }, { id: "office", components: [ { id: "lamp1", x: 181.594, y: 362.545, width: 435.0, height: 435.0, background: #ffbe00, visible: false }, { id: "lamp2", x: 1123.59, y: 362.545, width: 435.0, height: 435.0, background: #ffbe00, visible: false }, { id: "lamp3", x: 864.855, y: 542.195, width: 105.071, height: 105.071, background: #ffbe00, visible: false }, { id: "lamp4", x: 864.855, y: 542.195, width: 105.071, height: 105.071, background: #ffbe00, visible: false }, { id: "lamp5", x: 864.855, y: 542.195, width: 105.071, height: 105.071, background: #ffbe00, visible: false }, { id: "lamp6", x: 904.902, y: 540.515, width: 65.233, height: 64.659, background: #ffbe00, visible: false }, { id: "lamp7", x: 36.678, y: 157.145, width: 278.016, height: 278.0, background: #ffbe00, visible: true }, { id: "appliance1", x: 864.855, y: 542.195, width: 105.071, height: 105.071, background: #b5b5b5, visible: false }, { id: "appliance2", x: 864.855, y: 542.195, width: 105.071, height: 105.071, background: #b5b5b5, visible: false }, { id: "overhead1", x: 489.694, y: 519.545, width: 278.0, height: 121.0, background: #fff291, visible: false }, { id: "overhead2", x: 803.694, y: 519.545, width: 278.0, height: 121.0, background: #fff291, visible: false }, { id: "overhead3", x: 1117.69, y: 519.545, width: 278.0, height: 121.0, background: #fff291, visible: false }, { id: "overhead4", x: 1111.78, y: 598.045, width: 277.716, height: 121.0, background: #fff291, visible: false }, { id: "overhead5", x: 798.062, y: 598.045, width: 277.716, height: 121.0, background: #fff291, visible: false }, { id: "overhead6", x: 483.778, y: 598.045, width: 277.716, height: 121.0, background: #fff291, visible: false }, { id: "overhead7", x: 483.778, y: 441.045, width: 278.0, height: 121.0, background: #fff291, visible: false }, { id: "overhead8", x: 1111.78, y: 441.045, width: 277.716, height: 121.0, background: #fff291, visible: false }, { id: "overhead9", x: 797.778, y: 441.045, width: 275.274, height: 121.0, background: #fff291, visible: false }, { id: "overhead10", x: 350.694, y: 157.145, width: 278.0, height: 278.0, background: #fff291, visible: true }, { id: "overhead11", x: 883.816, y: 561.156, width: 67.149, height: 67.149, background: #fff291, visible: false }, { id: "info1", x: 892.89, y: 587.916, width: 49.0, height: 13.63, background: #00acff, visible: false }, { id: "info2", x: 660.558, y: 314.145, width: 753.136, height: 121.0, background: #00acff, visible: true }, { id: "info3", x: 660.558, y: 157.145, width: 753.136, height: 121.0, background: #00acff, visible: true }, { id: "graph1", x: 652.594, y: 362.545, width: 435.0, height: 435.0, background: #ba00ff, visible: false }, { id: "graph2", x: 845.894, y: 542.195, width: 142.994, height: 105.071, background: #ba00ff, visible: false }, { id: "control1", x: 1449.86, y: 36.445, width: 435.0, height: 942.0, background: #00bf1d, visible: true }, { id: "control2", x: 36.678, y: 471.445, width: 435.0, height: 504.0, background: #00bf1d, visible: true }, { id: "control3", x: 507.694, y: 471.445, width: 435.0, height: 504.0, background: #00bf1d, visible: true }, { id: "control4", x: 978.694, y: 471.445, width: 435.0, height: 504.0, background: #00ac0f, visible: true }, { id: "filter", x: 36.694, y: 1007.85, width: 1848.0, height: 72.6, background: #8d8d8d, visible: true }, { id: "nav", x: 36.694, y: 0.145, width: 1377.0, height: 121.0, background: #8d8d8d, visible: true }, ] }, { id: "controls", components: [ { id: "lamp1", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #ffbe00, visible: false }, { id: "lamp2", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #ffbe00, visible: false }, { id: "lamp3", x: 836.464, y: 752.053, width: 67.312, height: 67.384, background: #ffbe00, visible: false }, { id: "lamp4", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #ffbe00, visible: false }, { id: "lamp5", x: 836.464, y: 752.053, width: 67.312, height: 67.384, background: #ffbe00, visible: false }, { id: "lamp6", x: 836.464, y: 752.053, width: 67.312, height: 67.384, background: #ffbe00, visible: false }, { id: "lamp7", x: 836.464, y: 752.053, width: 67.312, height: 67.384, background: #ffbe00, visible: false }, { id: "appliance1", x: 817.457, y: 733.082, width: 105.326, height: 105.326, background: #b5b5b5, visible: false }, { id: "appliance2", x: 817.457, y: 733.082, width: 105.326, height: 105.326, background: #b5b5b5, visible: false }, { id: "overhead1", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #fff291, visible: false }, { id: "overhead2", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #fff291, visible: false }, { id: "overhead3", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #fff291, visible: false }, { id: "overhead4", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #fff291, visible: false }, { id: "overhead5", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #fff291, visible: false }, { id: "overhead6", x: 779.442, y: 752.089, width: 181.354, height: 67.312, background: #fff291, visible: false }, { id: "overhead7", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #fff291, visible: false }, { id: "overhead8", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #fff291, visible: false }, { id: "overhead9", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #fff291, visible: false }, { id: "overhead10", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #fff291, visible: false }, { id: "overhead11", x: 836.464, y: 752.089, width: 67.312, height: 67.312, background: #fff291, visible: false }, { id: "info1", x: 817.457, y: 771.096, width: 105.326, height: 29.297, background: #00acff, visible: false }, { id: "info2", x: 817.457, y: 771.096, width: 105.326, height: 29.297, background: #00acff, visible: false }, { id: "info3", x: 817.457, y: 771.096, width: 105.326, height: 29.297, background: #00acff, visible: false }, { id: "graph1", x: 817.457, y: 733.082, width: 105.326, height: 105.326, background: #ba00ff, visible: false }, { id: "graph2", x: 798.45, y: 733.082, width: 143.34, height: 105.326, background: #ba00ff, visible: false }, { id: "control1", x: 36.719, y: 157.745, width: 435.0, height: 435.0, background: #00bf1d, visible: true }, { id: "control2", x: 507.719, y: 157.745, width: 435.0, height: 435.0, background: #00bf1d, visible: true }, { id: "control3", x: 978.719, y: 157.745, width: 435.0, height: 435.0, background: #00bf1d, visible: true }, { id: "control4", x: 1449.72, y: 157.745, width: 435.0, height: 435.0, background: #00bf1d, visible: true }, { id: "filter", x: 36.719, y: 1008.14, width: 1848.0, height: 72.6, background: #8d8d8d, visible: true }, { id: "nav", x: 36.719, y: 0.445, width: 1848.0, height: 121.0, background: #8d8d8d, visible: true }, ] }, { id: "lamps", components: [ { id: "lamp1", x: 36.147, y: 157.745, width: 278.0, height: 278.0, background: #ffbe00, visible: true }, { id: "lamp2", x: 350.147, y: 157.745, width: 278.0, height: 278.0, background: #ffbe00, visible: true }, { id: "lamp3", x: 664.147, y: 157.445, width: 278.0, height: 278.3, background: #ffbe00, visible: true }, { id: "lamp4", x: 978.147, y: 157.144, width: 278.0, height: 278.0, background: #ffbe00, visible: true }, { id: "lamp5", x: 1292.15, y: 157.745, width: 278.0, height: 278.3, background: #ffbe00, visible: true }, { id: "lamp6", x: 1606.15, y: 156.844, width: 278.0, height: 278.3, background: #ffbe00, visible: true }, { id: "lamp7", x: 36.147, y: 471.144, width: 278.0, height: 278.3, background: #ffbe00, visible: true }, { id: "appliance1", x: 931.21, y: 642.871, width: 70.274, height: 70.274, background: #b5b5b5, visible: false }, { id: "appliance2", x: 931.21, y: 642.871, width: 70.274, height: 70.274, background: #b5b5b5, visible: false }, { id: "overhead1", x: 943.892, y: 655.553, width: 44.911, height: 44.911, background: #fff291, visible: false }, { id: "overhead2", x: 943.892, y: 655.553, width: 44.911, height: 44.911, background: #fff291, visible: false }, { id: "overhead3", x: 943.892, y: 655.553, width: 44.911, height: 44.911, background: #fff291, visible: false }, { id: "overhead4", x: 943.892, y: 655.553, width: 44.911, height: 44.911, background: #fff291, visible: false }, { id: "overhead5", x: 943.892, y: 655.553, width: 44.911, height: 44.911, background: #fff291, visible: false }, { id: "overhead6", x: 905.847, y: 655.553, width: 121.0, height: 44.911, background: #fff291, visible: false }, { id: "overhead7", x: 943.892, y: 655.553, width: 44.911, height: 44.911, background: #fff291, visible: false }, { id: "overhead8", x: 943.892, y: 655.553, width: 44.911, height: 44.911, background: #fff291, visible: false }, { id: "overhead9", x: 943.892, y: 655.553, width: 44.911, height: 44.911, background: #fff291, visible: false }, { id: "overhead10", x: 943.892, y: 655.553, width: 44.911, height: 44.911, background: #fff291, visible: false }, { id: "overhead11", x: 943.892, y: 655.553, width: 44.911, height: 44.911, background: #fff291, visible: false }, { id: "info1", x: 931.21, y: 668.234, width: 70.274, height: 19.547, background: #00acff, visible: false }, { id: "info2", x: 931.21, y: 668.234, width: 70.274, height: 19.547, background: #00acff, visible: false }, { id: "info3", x: 931.21, y: 668.234, width: 70.274, height: 19.547, background: #00acff, visible: false }, { id: "graph1", x: 931.21, y: 642.871, width: 70.274, height: 70.274, background: #ba00ff, visible: false }, { id: "graph2", x: 918.529, y: 642.871, width: 95.637, height: 70.274, background: #ba00ff, visible: false }, { id: "control1", x: 931.21, y: 642.871, width: 70.274, height: 70.274, background: #00bf1d, visible: false }, { id: "control2", x: 931.21, y: 642.871, width: 70.274, height: 70.274, background: #00bf1d, visible: false }, { id: "control3", x: 931.21, y: 642.871, width: 70.274, height: 70.274, background: #00bf1d, visible: false }, { id: "control4", x: 931.21, y: 642.871, width: 70.274, height: 70.274, background: #00ac0f, visible: false }, { id: "filter", x: 36.147, y: 1002.95, width: 1848.0, height: 72.6, background: #8d8d8d, visible: true }, { id: "nav", x: 36.147, y: 0.445, width: 1848.0, height: 121.0, background: #8d8d8d, visible: true }, ] }, { id: "overhead", components: [ { id: "lamp1", x: 835.959, y: 752.089, width: 67.312, height: 67.312, background: #ffbe00, visible: false }, { id: "lamp2", x: 835.959, y: 752.089, width: 67.312, height: 67.312, background: #ffbe00, visible: false }, { id: "lamp3", x: 835.959, y: 752.053, width: 67.312, height: 67.384, background: #ffbe00, visible: false }, { id: "lamp4", x: 835.959, y: 752.089, width: 67.312, height: 67.312, background: #ffbe00, visible: false }, { id: "lamp5", x: 835.959, y: 752.053, width: 67.312, height: 67.384, background: #ffbe00, visible: false }, { id: "lamp6", x: 835.959, y: 752.053, width: 67.312, height: 67.384, background: #ffbe00, visible: false }, { id: "lamp7", x: 835.959, y: 752.053, width: 67.312, height: 67.384, background: #ffbe00, visible: false }, { id: "appliance1", x: 816.952, y: 733.082, width: 105.326, height: 105.326, background: #b5b5b5, visible: false }, { id: "appliance2", x: 816.952, y: 733.082, width: 105.326, height: 105.326, background: #b5b5b5, visible: false }, { id: "overhead1", x: 36.215, y: 157.745, width: 435.0, height: 157.0, background: #fff291, visible: true }, { id: "overhead2", x: 507.215, y: 157.745, width: 435.0, height: 157.0, background: #fff291, visible: true }, { id: "overhead3", x: 978.215, y: 157.745, width: 435.0, height: 157.0, background: #fff291, visible: true }, { id: "overhead4", x: 1449.21, y: 157.745, width: 435.0, height: 157.0, background: #fff291, visible: true }, { id: "overhead5", x: 36.991, y: 350.745, width: 434.223, height: 157.0, background: #fff291, visible: true }, { id: "overhead6", x: 507.215, y: 350.745, width: 435.0, height: 157.0, background: #fff291, visible: true }, { id: "overhead7", x: 978.215, y: 350.745, width: 435.0, height: 157.0, background: #fff291, visible: true }, { id: "overhead8", x: 1449.21, y: 347.795, width: 435.0, height: 157.0, background: #fff291, visible: true }, { id: "overhead9", x: 36.991, y: 543.745, width: 434.223, height: 157.0, background: #fff291, visible: true }, { id: "overhead10", x: 507.215, y: 543.745, width: 435.0, height: 157.0, background: #fff291, visible: true }, { id: "overhead11", x: 978.215, y: 543.745, width: 435.0, height: 157.0, background: #fff291, visible: true }, { id: "info1", x: 816.952, y: 771.096, width: 105.326, height: 29.297, background: #00acff, visible: false }, { id: "info2", x: 816.952, y: 771.096, width: 105.326, height: 29.297, background: #00acff, visible: false }, { id: "info3", x: 816.952, y: 771.096, width: 105.326, height: 29.297, background: #00acff, visible: false }, { id: "graph1", x: 816.952, y: 733.082, width: 105.326, height: 105.326, background: #ba00ff, visible: false }, { id: "graph2", x: 797.945, y: 733.082, width: 143.34, height: 105.326, background: #ba00ff, visible: false }, { id: "control1", x: 24.115, y: 567.945, width: 435.0, height: 435.0, background: #00bf1d, visible: false }, { id: "control2", x: 491.149, y: 166.5, width: 435.0, height: 435.0, background: #00bf1d, visible: false }, { id: "control3", x: 1437.12, y: 531.945, width: 435.0, height: 435.0, background: #00bf1d, visible: false }, { id: "control4", x: 1449.21, y: 157.745, width: 435.0, height: 435.0, background: #00bf1d, visible: false }, { id: "filter", x: 36.215, y: 1008.14, width: 1848.0, height: 72.6, background: #8d8d8d, visible: true }, { id: "nav", x: 36.215, y: 0.445, width: 1848.0, height: 121.0, background: #8d8d8d, visible: true }, ] }, { id: "appliances", components: [ { id: "lamp1", x: 890.347, y: 620.851, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp2", x: 890.347, y: 620.851, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp3", x: 890.347, y: 620.851, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp4", x: 36.694, y: 157.745, width: 435.0, height: 314.0, background: #ffbe00, visible: false }, { id: "lamp5", x: 507.694, y: 157.745, width: 435.0, height: 314.0, background: #ffbe00, visible: false }, { id: "lamp6", x: 978.694, y: 157.745, width: 435.0, height: 314.0, background: #ffbe00, visible: false }, { id: "lamp7", x: 915.736, y: 646.192, width: 89.914, height: 90.012, background: #ffbe00, visible: false }, { id: "appliance1", x: 36.694, y: 157.745, width: 435.0, height: 471.0, background: #b5b5b5, visible: true }, { id: "appliance2", x: 507.694, y: 157.745, width: 435.0, height: 471.0, background: #b5b5b5, visible: true }, { id: "overhead1", x: 915.736, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead2", x: 915.736, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead3", x: 915.736, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead4", x: 915.736, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead5", x: 915.736, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead6", x: 839.568, y: 646.241, width: 242.252, height: 89.914, background: #fff291, visible: false }, { id: "overhead7", x: 915.736, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead8", x: 915.736, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead9", x: 915.736, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead10", x: 915.736, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead11", x: 915.736, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "info1", x: 36.694, y: 157.745, width: 592.0, height: 121.0, background: #00acff, visible: false }, { id: "info2", x: 664.694, y: 157.745, width: 592.0, height: 121.0, background: #00acff, visible: false }, { id: "info3", x: 1292.69, y: 157.745, width: 592.0, height: 121.0, background: #00acff, visible: false }, { id: "graph1", x: 890.347, y: 620.851, width: 140.693, height: 140.693, background: #ba00ff, visible: false }, { id: "graph2", x: 864.957, y: 620.851, width: 191.473, height: 140.693, background: #ba00ff, visible: false }, { id: "control1", x: 1449.69, y: 36.745, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "control2", x: 36.694, y: 507.745, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "control3", x: 507.694, y: 507.745, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "control4", x: 978.694, y: 507.745, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "filter", x: 36.694, y: 1008.14, width: 1848.0, height: 72.6, background: #8d8d8d, visible: true }, { id: "nav", x: 36.694, y: 0.445, width: 1848.0, height: 121.0, background: #8d8d8d, visible: true }, ] }, { id: "info", components: [ { id: "lamp1", x: 890.509, y: 620.851, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp2", x: 890.509, y: 620.851, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp3", x: 890.509, y: 620.851, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp4", x: 36.856, y: 157.745, width: 435.0, height: 314.0, background: #ffbe00, visible: false }, { id: "lamp5", x: 507.856, y: 157.745, width: 435.0, height: 314.0, background: #ffbe00, visible: false }, { id: "lamp6", x: 978.856, y: 157.745, width: 435.0, height: 314.0, background: #ffbe00, visible: false }, { id: "lamp7", x: 915.899, y: 646.192, width: 89.914, height: 90.012, background: #ffbe00, visible: false }, { id: "appliance1", x: 890.509, y: 620.851, width: 140.693, height: 140.693, background: #b5b5b5, visible: false }, { id: "appliance2", x: 890.509, y: 620.851, width: 140.693, height: 140.693, background: #b5b5b5, visible: false }, { id: "overhead1", x: 915.899, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead2", x: 915.899, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead3", x: 915.899, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead4", x: 915.899, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead5", x: 915.899, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead6", x: 839.73, y: 646.241, width: 242.252, height: 89.914, background: #fff291, visible: false }, { id: "overhead7", x: 915.899, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead8", x: 915.899, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead9", x: 915.899, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead10", x: 915.899, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead11", x: 915.899, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "info1", x: 36.856, y: 157.745, width: 592.0, height: 121.0, background: #00acff, visible: true }, { id: "info2", x: 36.856, y: 314.445, width: 592.0, height: 121.0, background: #00acff, visible: true }, { id: "info3", x: 36.856, y: 471.745, width: 592.0, height: 121.0, background: #00acff, visible: true }, { id: "graph1", x: 890.509, y: 620.851, width: 140.693, height: 140.693, background: #ba00ff, visible: false }, { id: "graph2", x: 865.12, y: 620.851, width: 191.473, height: 140.693, background: #ba00ff, visible: false }, { id: "control1", x: 495.756, y: 423.345, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "control2", x: 36.856, y: 507.745, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "control3", x: 507.856, y: 507.745, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "control4", x: 978.856, y: 507.745, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "filter", x: 36.856, y: 1008.14, width: 1848.0, height: 72.6, background: #8d8d8d, visible: true }, { id: "nav", x: 36.856, y: 0.445, width: 1848.0, height: 121.0, background: #8d8d8d, visible: true }, ] }, { id: "graphs", components: [ { id: "lamp1", x: 889.685, y: 620.851, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp2", x: 889.685, y: 620.851, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp3", x: 889.685, y: 620.851, width: 140.693, height: 140.693, background: #ffbe00, visible: false }, { id: "lamp4", x: 36.031, y: 157.745, width: 435.0, height: 314.0, background: #ffbe00, visible: false }, { id: "lamp5", x: 507.031, y: 157.745, width: 435.0, height: 314.0, background: #ffbe00, visible: false }, { id: "lamp6", x: 978.031, y: 157.745, width: 435.0, height: 314.0, background: #ffbe00, visible: false }, { id: "lamp7", x: 915.074, y: 646.192, width: 89.914, height: 90.012, background: #ffbe00, visible: false }, { id: "appliance1", x: 36.031, y: 157.745, width: 278.0, height: 314.0, background: #b5b5b5, visible: false }, { id: "appliance2", x: 350.031, y: 157.745, width: 275.747, height: 314.0, background: #b5b5b5, visible: false }, { id: "overhead1", x: 915.074, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead2", x: 915.074, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead3", x: 915.074, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead4", x: 915.074, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead5", x: 915.074, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead6", x: 838.906, y: 646.241, width: 242.252, height: 89.914, background: #fff291, visible: false }, { id: "overhead7", x: 915.074, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead8", x: 915.074, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead9", x: 915.074, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead10", x: 915.074, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "overhead11", x: 915.074, y: 646.241, width: 89.914, height: 89.914, background: #fff291, visible: false }, { id: "info1", x: 36.031, y: 157.745, width: 592.0, height: 121.0, background: #00acff, visible: false }, { id: "info2", x: 664.031, y: 157.745, width: 592.0, height: 121.0, background: #00acff, visible: false }, { id: "info3", x: 1292.03, y: 157.745, width: 592.0, height: 121.0, background: #00acff, visible: false }, { id: "graph1", x: 36.031, y: 157.745, width: 435.0, height: 471.0, background: #ba00ff, visible: true }, { id: "graph2", x: 507.031, y: 157.745, width: 435.0, height: 471.0, background: #ba00ff, visible: true }, { id: "control1", x: 1449.03, y: 36.745, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "control2", x: 36.031, y: 507.745, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "control3", x: 507.031, y: 507.745, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "control4", x: 978.031, y: 507.745, width: 435.0, height: 471.0, background: #00bf1d, visible: false }, { id: "filter", x: 36.031, y: 1008.14, width: 1848.0, height: 72.6, background: #8d8d8d, visible: true }, { id: "nav", x: 36.031, y: 0.445, width: 1848.0, height: 121.0, background: #8d8d8d, visible: true }, ] }, ]; }