Updated club layout.
This commit is contained in:
parent
fb7c4617d4
commit
20f74e2711
1 changed files with 9 additions and 3 deletions
12
c4ctrl.py
12
c4ctrl.py
|
@ -770,7 +770,8 @@ class Plenarsaal(C4Room): # {{{1
|
||||||
("Vorne/Wand", "licht/plenar/vornewand"),
|
("Vorne/Wand", "licht/plenar/vornewand"),
|
||||||
("Vorne/Fenster", "licht/plenar/vornefenster"),
|
("Vorne/Fenster", "licht/plenar/vornefenster"),
|
||||||
("Hinten/Wand", "licht/plenar/hintenwand"),
|
("Hinten/Wand", "licht/plenar/hintenwand"),
|
||||||
("Hinten/Fenster", "licht/plenar/hintenfenster")
|
("Hinten/Fenster", "licht/plenar/hintenfenster"),
|
||||||
|
("Verstärker", "relais/plenar/amp")
|
||||||
)
|
)
|
||||||
master = Dmx7("dmx/plenar/master")
|
master = Dmx7("dmx/plenar/master")
|
||||||
lights = (
|
lights = (
|
||||||
|
@ -791,7 +792,8 @@ class Fnordcenter(C4Room): # {{{1
|
||||||
name = "Fnordcenter"
|
name = "Fnordcenter"
|
||||||
switches = (
|
switches = (
|
||||||
("Links (Fairydust)", "licht/fnord/links"),
|
("Links (Fairydust)", "licht/fnord/links"),
|
||||||
("Rechts (SCUMM)", "licht/fnord/rechts")
|
("Rechts (SCUMM)", "licht/fnord/rechts"),
|
||||||
|
("Lautsprecher", "relais/fnord/audio")
|
||||||
)
|
)
|
||||||
master = Dmx4("dmx/fnord/master")
|
master = Dmx4("dmx/fnord/master")
|
||||||
lights = (
|
lights = (
|
||||||
|
@ -808,9 +810,13 @@ class Keller(C4Room): # {{{1
|
||||||
|
|
||||||
name = "Keller"
|
name = "Keller"
|
||||||
switches = (
|
switches = (
|
||||||
|
("Vorne", "licht/keller/vorne"),
|
||||||
("Mitte", "licht/keller/mitte"),
|
("Mitte", "licht/keller/mitte"),
|
||||||
("Lötplatz", "licht/keller/loet"),
|
("Lötplatz", "licht/keller/loet"),
|
||||||
("Vorne", "licht/keller/vorne")
|
("Werkbank (kalt)", "led/keller/werkbankkalt"),
|
||||||
|
("Werkbank (warm)", "led/keller/werkbankwarm"),
|
||||||
|
("Hinten (kalt)", "led/keller/hintenkalt"),
|
||||||
|
("Hinten (warm)", "led/keller/hintenwarm")
|
||||||
)
|
)
|
||||||
master = None
|
master = None
|
||||||
lights = ()
|
lights = ()
|
||||||
|
|
Loading…
Reference in a new issue