-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
356 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...kotlin/klanglicht/dmx/DmxInterfaceTest.kt → .../klanglicht/model/dmx/DmxInterfaceTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...igits/kotlin/klanglicht/dmx/SimpleTest.kt → ...kotlin/klanglicht/model/dmx/SimpleTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
154 changes: 154 additions & 0 deletions
154
klanglicht-module-base/src/test/resources/.klanglicht/preferences/preferences.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
{ | ||
"name": "wohnzimmer", | ||
"theme": "StarWars", | ||
"fadeDurationDefault": 2000, | ||
|
||
"services": [ | ||
{ | ||
"name": "lmair", | ||
"manufacturer": "JB-Media", | ||
"model": "Light-Manager Air", | ||
"url": "http://192.168.178.28" | ||
}, | ||
{ | ||
"name": "receiver", | ||
"manufacturer": "Yamaha", | ||
"model": "RX-V6A", | ||
"url": "http://192.168.178.46" | ||
} | ||
], | ||
|
||
"shelly": [ | ||
{ | ||
"name": "Starwars", | ||
"model": "shelly-rgbw", | ||
"ipAddress": "192.168.178.54", | ||
"command": "color/0", | ||
"gain": 0.2 | ||
}, | ||
{ | ||
"name": "Rgbw", | ||
"model": "shelly-rgbw", | ||
"ipAddress": "192.168.178.48", | ||
"command": "color/0", | ||
"gain": 0.1 | ||
}, | ||
{ | ||
"name": "Bar", | ||
"model": "shelly-rgbw", | ||
"ipAddress": "192.168.178.55", | ||
"command": "color/0", | ||
"gain": 0.1 | ||
}, | ||
{ | ||
"name": "Flur", | ||
"model": "shelly-1", | ||
"ipAddress": "192.168.178.38", | ||
"command": "relay/0", | ||
"gain": 0 | ||
}, | ||
{ | ||
"name": "Schlafzimmer", | ||
"model": "shelly-1", | ||
"ipAddress": "192.168.178.40", | ||
"command": "relay/0", | ||
"gain": 0 | ||
}, | ||
{ | ||
"name": "Wohnzimmer_Esstisch", | ||
"model": "shelly-2.5", | ||
"ipAddress": "192.168.178.37", | ||
"command": "relay/0", | ||
"gain": 0 | ||
}, | ||
{ | ||
"name": "Wohnzimmer_Deckenlampe", | ||
"model": "shelly-2.5", | ||
"ipAddress": "192.168.178.37", | ||
"command": "relay/1", | ||
"gain": 0 | ||
}, | ||
{ | ||
"name": "Kristall", | ||
"model": "plug-s", | ||
"ipAddress": "192.168.178.51", | ||
"command": "relay/0", | ||
"gain": 0 | ||
}, | ||
{ | ||
"name": "Regal", | ||
"model": "shelly-plug-s", | ||
"ipAddress": "192.168.178.39", | ||
"command": "relay/0", | ||
"gain": 0 | ||
} | ||
], | ||
|
||
"dmx": { | ||
"port": "COM5", | ||
"interfaceType": "Serial", | ||
"frameTime": 40, | ||
"enableRepeater": false, | ||
"devices": [ | ||
{ | ||
"manufacturer": "Cameo", | ||
"model": "Flat PAR Can RGB 10 IR", | ||
"mode": "6-Channel Mode", | ||
"baseChannel": 1, | ||
"gain": 1.0 | ||
}, | ||
{ | ||
"manufacturer": "Cameo", | ||
"model": "Flat PAR Can RGBW", | ||
"mode": "8-Channel Mode", | ||
"baseChannel": 21, | ||
"gain": 1.0 | ||
}, | ||
{ | ||
"manufacturer": "Cameo", | ||
"model": "Flat PAR Can RGB 10 IR", | ||
"mode": "6-Channel Mode", | ||
"baseChannel": 15, | ||
"gain": 1.0 | ||
}, | ||
{ | ||
"manufacturer": "Cameo", | ||
"model": "Flat PAR Can RGB 10 IR", | ||
"mode": "6-Channel Mode", | ||
"baseChannel": 29, | ||
"gain": 1.0 | ||
} | ||
] | ||
}, | ||
|
||
"stage": [ | ||
{ | ||
"type": "shelly", | ||
"id": "Starwars" | ||
}, | ||
{ | ||
"type": "shelly", | ||
"id": "Rgbw" | ||
}, | ||
{ | ||
"type": "dmx", | ||
"id": "15" | ||
}, | ||
{ | ||
"type": "dmx", | ||
"id": "29" | ||
}, | ||
{ | ||
"type": "dmx", | ||
"id": "21" | ||
}, | ||
{ | ||
"type": "dmx", | ||
"id": "1" | ||
}, | ||
{ | ||
"type": "shelly", | ||
"id": "Bar" | ||
} | ||
] | ||
} |
99 changes: 99 additions & 0 deletions
99
klanglicht-module-base/src/test/resources/.klanglicht/preferences/preferences.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
name: wohnzimmer | ||
theme: StarWars | ||
fadeDurationDefault: 2000 | ||
services: | ||
- name: lmair | ||
manufacturer: JB-Media | ||
model: Light-Manager Air | ||
url: http://192.168.178.28 | ||
- name: receiver | ||
manufacturer: Yamaha | ||
model: RX-V6A | ||
url: http://192.168.178.46 | ||
shelly: | ||
- name: Starwars | ||
model: shelly-rgbw | ||
ipAddress: 192.168.178.54 | ||
command: color/0 | ||
gain: 0.2 | ||
- name: Rgbw | ||
model: shelly-rgbw | ||
ipAddress: 192.168.178.48 | ||
command: color/0 | ||
gain: 0.1 | ||
- name: Bar | ||
model: shelly-rgbw | ||
ipAddress: 192.168.178.55 | ||
command: color/0 | ||
gain: 0.1 | ||
- name: Flur | ||
model: shelly-1 | ||
ipAddress: 192.168.178.38 | ||
command: relay/0 | ||
gain: 0 | ||
- name: Schlafzimmer | ||
model: shelly-1 | ||
ipAddress: 192.168.178.40 | ||
command: relay/0 | ||
gain: 0 | ||
- name: Wohnzimmer_Esstisch | ||
model: shelly-2.5 | ||
ipAddress: 192.168.178.37 | ||
command: relay/0 | ||
gain: 0 | ||
- name: Wohnzimmer_Deckenlampe | ||
model: shelly-2.5 | ||
ipAddress: 192.168.178.37 | ||
command: relay/1 | ||
gain: 0 | ||
- name: Kristall | ||
model: plug-s | ||
ipAddress: 192.168.178.51 | ||
command: relay/0 | ||
gain: 0 | ||
- name: Regal | ||
model: shelly-plug-s | ||
ipAddress: 192.168.178.39 | ||
command: relay/0 | ||
gain: 0 | ||
dmx: | ||
port: COM5 | ||
interfaceType: Serial | ||
frameTime: 40 | ||
enableRepeater: false | ||
devices: | ||
- manufacturer: Cameo | ||
model: Flat PAR Can RGB 10 IR | ||
mode: 6-Channel Mode | ||
baseChannel: 1 | ||
gain: 1 | ||
- manufacturer: Cameo | ||
model: Flat PAR Can RGBW | ||
mode: 8-Channel Mode | ||
baseChannel: 21 | ||
gain: 1 | ||
- manufacturer: Cameo | ||
model: Flat PAR Can RGB 10 IR | ||
mode: 6-Channel Mode | ||
baseChannel: 15 | ||
gain: 1 | ||
- manufacturer: Cameo | ||
model: Flat PAR Can RGB 10 IR | ||
mode: 6-Channel Mode | ||
baseChannel: 29 | ||
gain: 1 | ||
stage: | ||
- type: shelly | ||
id: Starwars | ||
- type: shelly | ||
id: Rgbw | ||
- type: dmx | ||
id: '15' | ||
- type: dmx | ||
id: '29' | ||
- type: dmx | ||
id: '21' | ||
- type: dmx | ||
id: '1' | ||
- type: shelly | ||
id: Bar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.