@Russ that's what I thought, it's working turning off/on so I will not change it. Thanks
Posts made by KenJ
-
RE: SmartThings Button not a Switch?
-
RE: SmartThings Button not a Switch?
@Russ Thanks, will remove the on/off function? So does it effect everything.
-
SmartThings Button not a Switch?
Is there a way to create a SmartThings Button, not a switch?
I am using this for a Whole House Audio system the Power on works for Switching the zone on/off, but I am also using to increase/decrease the volume and just need a button.
-
RE: MonoAMP from monoprice 6 zone amplifier
@nate-hales said in MonoAMP from monoprice 6 zone amplifier:
Check out this video for detailed instructions:
https://www.youtube.com/watch?v=fHB_gjc1w8QChange volume of a zone:
curl "http://localhost:50233/api/Value?Channel=0&command=Volume&value=15"
Change input (aka channel) of zone 0:
curl "http://localhost:50233/api/Value?Channel=0&Property=CH&value=1"
Power on zone 0:
curl "http://localhost:50233/api/Value?Channel=0&Property=PR&value=1"
Are these the only commands that you have?
Thanks
Ken
-
RE: MonoAMP from monoprice 6 zone amplifier
@clconner09 I just started this and created a file called Power.bat:
curl "http://192.168.1.150:50233/api/ValueUp?Channel=%1&command=Power"
Then create the trigger with a variable by running "Power 0"
This will turn on /off Zone 1, For Zone 2 it would be "Power 1" etc...