Skip to content
This repository has been archived by the owner on Feb 4, 2021. It is now read-only.

Commit

Permalink
Update and add sample config files to demonstrate new options.
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyeden committed Sep 12, 2018
1 parent 03e9a2b commit 480a228
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 2 deletions.
66 changes: 66 additions & 0 deletions config-sample-delaycontrol.json
@@ -0,0 +1,66 @@
{
"Title": "Livewire Simple Delay Control",
"DeviceIP": "192.168.0.15",
"DevicePassword": "",
"DeviceOutputNum": 1,
"Columns": 1,
"CheckUpdatesAuto": true,
"GPI_DeviceIP": "192.168.0.15",
"GPI_DevicePassword": "",
"Sources": [
{
"Name": "Engage",
"SourceNum": "0",
"GPI_IndicationOnly": true,
"DisableRouteChange": true,
"GPI_SwitchPort": 1,
"GPI_SwitchPin": 4,
"TriggerGPIO": [
{
"DeviceIP": "192.168.0.15",
"Type": "GPO",
"Port": 1,
"Pin": 14,
"State": "low",
"Momentary": 1
}
]
},
{
"Name": "Dump",
"SourceNum": "0",
"GPI_IndicationOnly": true,
"DisableRouteChange": true,
"GPI_SwitchPort": 1,
"GPI_SwitchPin": 1,
"TriggerGPIO": [
{
"DeviceIP": "192.168.0.15",
"Type": "GPO",
"Port": 1,
"Pin": 1,
"State": "low",
"Momentary": 1
}
]
},
{
"Name": "Exit",
"SourceNum": "0",
"GPI_IndicationOnly": true,
"DisableRouteChange": true,
"GPI_SwitchPort": 1,
"GPI_SwitchPin": 2,
"TriggerGPIO": [
{
"DeviceIP": "192.168.0.15",
"Type": "GPO",
"Port": 1,
"Pin": 2,
"State": "low",
"Momentary": 1
}
]
}
]
}
6 changes: 4 additions & 2 deletions config-sample-gpiotriggers.json
Expand Up @@ -15,7 +15,8 @@
"Type": "GPO",
"Port": 1,
"Pin": 1,
"State": "low"
"State": "low",
"Momentary": 1
},
{
"DeviceIP": "192.168.0.15",
Expand All @@ -35,7 +36,8 @@
"Type": "GPO",
"Port": 1,
"Pin": 1,
"State": "low"
"State": "low",
"Momentary": 2
},
{
"DeviceIP": "1192.168.0.15",
Expand Down
36 changes: 36 additions & 0 deletions config-sample-windowposition.json
@@ -0,0 +1,36 @@
{
"Title": "Livewire Simple\nDelegation Switcher",
"DeviceIP": "192.168.0.15",
"DevicePassword": "",
"DeviceOutputNum": 1,
"Columns": 1,
"CheckUpdatesAuto": true,

"DefaultWindowWidth": 260,
"DefaultWindowHeight": 440,
"DefaultWindowPosX": 0,
"DefaultWindowPosY": 0,

"Sources": [
{
"Name": "Studio A",
"SourceNum": "101"
},
{
"Name": "Studio B",
"SourceNum": "201"
},
{
"Name": "Automation Computer",
"SourceNum": "51"
},
{
"Name": "Codec",
"SourceNum": "81"
},
{
"Name": "Satellite",
"SourceNum": "82"
}
]
}

0 comments on commit 480a228

Please sign in to comment.