ti-powerbar/app/settings.py

73 lines
2.8 KiB
Python
Raw Normal View History

2023-11-22 09:09:11 +00:00
groups = [
{
2023-12-16 23:45:37 +00:00
"name" : "All Space Lights",
2023-12-16 23:57:50 +00:00
"devices" : [ { "powerbar" : "powerbar-main-space", "outlets" : [ 5, 6, 7, 8, 11, 12, 15 ] },
2023-12-16 23:45:37 +00:00
{ "powerbar" : "powerbar-aux-space", "outlets" : [ 1, 17, 13] }],
},
{
"name" : "Main Space Lights",
2023-12-16 23:57:50 +00:00
"devices" : [ { "powerbar" : "powerbar-main-space", "outlets" : [ 5, 6, 7, 8, 11, 12, 15 ] } ],
2023-12-16 23:45:37 +00:00
},
2023-11-22 09:09:11 +00:00
{
2023-11-22 09:53:45 +00:00
"name" : "Aux Space Lights",
2023-11-22 09:09:11 +00:00
"devices" : [ { "powerbar": "powerbar-aux-space", "outlets" : [ 1, 17, 13] } ],
2023-12-17 00:02:37 +00:00
},
2023-11-22 09:09:11 +00:00
]
2023-11-19 00:07:25 +00:00
powerbars = {
"powerbar-aux-space" : {
"name" : "Powerbar Aux Space",
"host" : "10.209.10.111",
2024-02-01 22:48:19 +00:00
"username" : "admin",
"password" : "admin",
"port" : 2167,
2023-11-20 10:33:19 +00:00
"type" : "baytech",
2024-02-01 10:58:27 +00:00
"method" : "telnet",
2023-11-19 00:07:25 +00:00
"description" : "Powerbar Controlling Aux Space",
"outlets" : {
2023-11-19 00:50:09 +00:00
4 : { "name" : "Power solderlane" },
2023-11-19 20:36:21 +00:00
# 7: { "name" : "Broken permanent on. Plotter + computer" },
# 10: { "name" : "Power main table" },
2023-11-19 00:07:25 +00:00
13 : { "name" : "Solder Lane Top Light Right" },
2023-11-19 20:36:21 +00:00
# 15 : { "name" : "Broken permanent on. PoE adapter wifi" },
2023-11-19 00:07:25 +00:00
17 : { "name" : "Solder Lane Top Light Left" },
2024-01-30 17:24:59 +00:00
18 : { "name" : "Plotter", "password" : "Yahma3lah9ailoes7pae" },
2023-11-19 20:36:21 +00:00
# 19 : { "name" : "Broken-ish leds entry aux-space" },
2023-12-17 00:05:32 +00:00
1 : { "name" : "Aux Main Table Light" },
2024-01-10 16:10:35 +00:00
# 20 : { "name" : "Power extension cord top shelf near glass room" },
2023-11-22 09:09:11 +00:00
}
2023-11-19 01:00:14 +00:00
},
2023-11-22 09:09:11 +00:00
2023-11-19 01:00:14 +00:00
"powerbar-main-space" : {
"name" : "Powerbar Main Space",
"host" : "10.209.10.111",
2024-02-01 22:48:19 +00:00
"username" : "admin",
"password" : "admin",
"port" : 2168,
2023-11-20 10:33:19 +00:00
"type" : "baytech",
2024-02-01 10:58:27 +00:00
"method" : "telnet",
2023-11-19 01:00:14 +00:00
"description" : "Powerbar Controlling Main Space",
"outlets" : {
2023-12-16 01:10:55 +00:00
9 : { "name" : "3D Printers" },
2024-01-27 15:01:13 +00:00
19 : { "name" : "Laser Cutter", "password" : "Ozoa1vaijoilie1ohpho" },
2023-11-19 01:00:14 +00:00
4 : { "name" : "LIGHT_MAKERTABLE" },
5 : { "name" : "LIGHT_TABLE" },
2023-12-16 01:10:55 +00:00
6 : { "name" : "LIGHT_HAM" },
2023-11-19 01:00:14 +00:00
7 : { "name" : "LIGHT_ENTRANCE" },
8 : { "name" : "LIGHT_KITCHEN" },
10 : { "name" : "LIGHT_SOFA" },
11 : { "name" : "LIGHT_KITCHEN_SPOTS" },
12 : { "name" : "LEDWALL" },
13 : { "name" : "AUDIO_AMPLIFIER" },
14 : { "name" : "AUDIO_MIXER" },
15 : { "name" : "LIGHT_MAKERLANE" },
16 : { "name" : "RADIO_LANE_CTRL_OUTLETS" },
17 : { "name" : "MONITOR_3D_1" },
18 : { "name" : "MONITOR_3D_2" },
20 : { "name" : "MONITOR_AV_2" },
2023-11-22 09:09:11 +00:00
}
2023-11-19 00:07:25 +00:00
}
2023-11-19 01:00:14 +00:00
}
2023-11-20 10:33:19 +00:00