diff --git a/README.md b/README.md index bf5c499..2fba634 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # ha-bridge -Emulates Philips Hue api to other home automation gateways such as an Amazon Echo. The Bridge has helpers to build devices for the gateway for the Vera, Vera Lite or Vera Edge. Alternatively the Bridge supports custom calls as well. The Bridge handles basic commands such as "On", "Off" and "brightness" commands of the hue protocol. +Emulates Philips Hue api to other home automation gateways such as an Amazon Echo. The Bridge has helpers to build devices for the gateway for the Logitech Harmony Hub, Vera, Vera Lite or Vera Edge. Alternatively the Bridge supports custom calls as well. The Bridge handles basic commands such as "On", "Off" and "brightness" commands of the hue protocol. ## Build To customize and build it yourself, build a new jar with maven: ``` @@ -9,7 +9,7 @@ Otherwise, downloads are available at https://github.com/bwssytems/ha-bridge/rel ## Run Then locate the jar and start the server with: ``` -java -jar -Dvera.address=X.Y.Z.A ha-bridge-0.X.Y.jar +java -jar -Dvera.address=X.Y.Z.A -Dharmony.address=X.Y.Z.A -Dharmony.user=myself -Dharmony.pwd=passwd ha-bridge-0.X.Y.jar ``` ## Available Arguments ### -Dvera.address=`` @@ -32,8 +32,6 @@ The password for the user name of the MyHarmony.com account for the Harmony Hub. Upnp has been very closed on this platform to try and respond as a hue and there is now a setting to control if it is more open or strict, Add -Dupnp.strict=`` to your command line to have the emulator respond to what it thinks is an echo to a hue or any other device. The default is upnp.strict=true. ### -Dtrace.upnp=`` Turn on tracing for upnp discovery messages. The default is false. -### -Dvtwo.compatibility=`` -Turns on compatibility for upnp detection and response as it was in the original version of amazon-echo-ha-bridge. The default is false. ## Web Config Configure by going to the url for the host you are running on or localhost with port you have assigned: ``` @@ -104,4 +102,9 @@ To view or remove devices that Alexa knows about, you can use the mobile app Men To turn on debugging for the bridge, use the following extra parm in the command line: ``` -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG +``` +## Development Mode +To turn on development mode so that it will not need an Harmony Hub for testing, use the following extra parm in the command line and the harmony ip and login info will not be needed: +``` +java -jar -Ddev.mode=true ha-bridge-0.X.Y.jar ``` \ No newline at end of file diff --git a/pom.xml b/pom.xml index 02315a3..1de53c6 100644 --- a/pom.xml +++ b/pom.xml @@ -5,11 +5,11 @@ com.bwssystems.HABridge ha-bridge - 1.0.3 + 1.0.5 jar HA Bridge - Emulates a Philips Hue bridge to allow the Amazon Echo to hook up to other HA systems, i.e. Vera, using lightweight frameworks + Emulates a Philips Hue bridge to allow the Amazon Echo to hook up to other HA systems, i.e. Vera or Harmony Hub, using lightweight frameworks 1.8 @@ -88,6 +88,22 @@ + + + src/main/resources + + version.properties + + true + + + src/main/resources + + version.properties + + false + + org.apache.maven.plugins @@ -113,21 +129,20 @@ META-INF/services/** META-INF/DEPENDENCIES about_files/** - *.properties - - org.slf4j:* - - ** - - - - commons-logging:commons-logging - - ** - - + + org.slf4j:* + + ** + + + + commons-logging:commons-logging + + ** + + supportedVerbs = new HashSet<>(Arrays.asList("get", "put", "post")); - public DeviceResource(BridgeSettings theSettings, HarmonyHandler myHarmony) { + public DeviceResource(BridgeSettings theSettings, Version theVersion, HarmonyHandler myHarmony) { super(); - deviceRepository = new DeviceRepository(theSettings.getUpnpDeviceDb()); - veraInfo = new VeraInfo(theSettings.getVeraAddress(), theSettings.isValidVera()); - myHarmonyHandler = myHarmony; + this.deviceRepository = new DeviceRepository(theSettings.getUpnpDeviceDb()); + this.veraInfo = new VeraInfo(theSettings.getVeraAddress(), theSettings.isValidVera()); + this.myHarmonyHandler = myHarmony; + this.version = theVersion; setupEndpoints(); } @@ -130,6 +133,12 @@ public class DeviceResource { return null; }, new JsonTransformer()); + get (API_CONTEXT + "/habridge/version", "application/json", (request, response) -> { + log.debug("Get HA Bridge version: v" + version.getVersion()); + response.status(HttpStatus.SC_OK); + return "{\"version\":\"" + version.getVersion() + "\"}"; + }); + get (API_CONTEXT + "/vera/devices", "application/json", (request, response) -> { log.debug("Get vera devices"); Sdata sData = veraInfo.getSdata(); diff --git a/src/main/java/com/bwssystems/HABridge/upnp/UpnpListener.java b/src/main/java/com/bwssystems/HABridge/upnp/UpnpListener.java index 71a1f97..78a5520 100644 --- a/src/main/java/com/bwssystems/HABridge/upnp/UpnpListener.java +++ b/src/main/java/com/bwssystems/HABridge/upnp/UpnpListener.java @@ -27,8 +27,6 @@ public class UpnpListener { private boolean traceupnp; - private boolean vTwoCompatibility; - public UpnpListener(BridgeSettings theSettings) { super(); upnpResponsePort = Integer.valueOf(theSettings.getUpnpResponsePort()); @@ -36,7 +34,6 @@ public class UpnpListener { responseAddress = theSettings.getUpnpConfigAddress(); strict = theSettings.isUpnpStrict(); traceupnp = theSettings.isTraceupnp(); - vTwoCompatibility = theSettings.isVtwocompatibility(); } public void startListening(){ @@ -113,18 +110,18 @@ public class UpnpListener { if(strict && body.startsWith("M-SEARCH * HTTP/1.1") && body.contains("MAN: \"ssdp:discover\"") && (body.contains("ST: urn:schemas-upnp-org:device:basic:1") || body.contains("ST: upnp:rootdevice") || body.contains("ST: ssdp:all"))) { if(traceupnp) - log.info("Traceupnp: isSSDPDiscovery found message to be valid under strict rules - strict: " + strict + ", vTwo.Compatibility: " + vTwoCompatibility); + log.info("Traceupnp: isSSDPDiscovery found message to be valid under strict rules - strict: " + strict); return true; } - else if (!strict || vTwoCompatibility) + else if (!strict) { if(traceupnp) - log.info("Traceupnp: isSSDPDiscovery found message to be valid under loose rules - strict: " + strict + ", vTwo.Compatibility: " + vTwoCompatibility); + log.info("Traceupnp: isSSDPDiscovery found message to be valid under loose rules - strict: " + strict); return true; } } if(traceupnp) - log.info("Traceupnp: isSSDPDiscovery found message to not be valid - strict: " + strict + ", vTwo.Compatibility: " + vTwoCompatibility); + log.info("Traceupnp: isSSDPDiscovery found message to not be valid - strict: " + strict); return false; } @@ -135,20 +132,9 @@ public class UpnpListener { "SERVER: FreeRTOS/6.0.5, UPnP/1.0, IpBridge/0.1\r\n" + "ST: urn:schemas-upnp-org:device:basic:1\r\n" + "USN: uuid:Socket-1_0-221438K0100073::urn:schemas-upnp-org:device:basic:1\r\n\r\n"; - String discoveryTemplateVTwo = "HTTP/1.1 200 OK\r\n" + - "CACHE-CONTROL: max-age=86400\r\n" + - "EXT:\r\n" + - "LOCATION: http://%s:%s/description.xml\r\n" + - "OPT: \"http://schemas.upnp.org/upnp/1/0/\"; ns=01\r\n" + - "01-NLS: %s\r\n" + - "ST: urn:schemas-upnp-org:device:basic:1\r\n" + - "USN: uuid:Socket-1_0-221438K0100073::urn:Belkin:device:**\r\n\r\n"; protected void sendUpnpResponse(DatagramSocket socket, InetAddress requester, int sourcePort) throws IOException { String discoveryResponse = null; - if(vTwoCompatibility) - discoveryResponse = String.format(discoveryTemplateVTwo, responseAddress, httpServerPort, getRandomUUIDString()); - else - discoveryResponse = String.format(discoveryTemplate, responseAddress, httpServerPort, getRandomUUIDString()); + discoveryResponse = String.format(discoveryTemplate, responseAddress, httpServerPort, getRandomUUIDString()); if(traceupnp) log.info("Traceupnp: sendUpnpResponse: " + discoveryResponse); else diff --git a/src/main/java/com/bwssystems/HABridge/upnp/UpnpSettingsResource.java b/src/main/java/com/bwssystems/HABridge/upnp/UpnpSettingsResource.java index 8d838f4..01b0acd 100644 --- a/src/main/java/com/bwssystems/HABridge/upnp/UpnpSettingsResource.java +++ b/src/main/java/com/bwssystems/HABridge/upnp/UpnpSettingsResource.java @@ -40,53 +40,6 @@ public class UpnpSettingsResource { + "24\n" + "hue_logo_3.png\n" + "\n" + "\n" + "\n" + "\n"; - private String hueTemplateVTwo = "\n" + - "\n" + - "\n" + - "1\n" + - "0\n" + - "\n" + - "http://%s:%s/\n" + //hostname string - "\n" + - "urn:schemas-upnp-org:device:Basic:1\n" + - "Amazon-Echo-HA-Bridge (%s)\n" + - "Royal Philips Electronics\n" + - "http://www.bwssystems.com\n" + - "Hue Emulator for Amazon Echo bridge\n" + - "Philips hue bridge 2012\n" + - "929000226503\n" + - "http://www.bwssystems.com/apps.html\n" + - "01189998819991197253\n" + - "uuid:88f6698f-2c83-4393-bd03-cd54a9f8595\n" + - "\n" + - "\n" + - "(null)\n" + - "(null)\n" + - "(null)\n" + - "(null)\n" + - "(null)\n" + - "\n" + - "\n" + - "index.html\n" + - "\n" + - "\n" + - "image/png\n" + - "48\n" + - "48\n" + - "24\n" + - "hue_logo_0.png\n" + - "\n" + - "\n" + - "image/png\n" + - "120\n" + - "120\n" + - "24\n" + - "hue_logo_3.png\n" + - "\n" + - "\n" + - "\n" + - "\n"; - public UpnpSettingsResource(BridgeSettings theSettings) { super(); this.theSettings = theSettings; @@ -102,10 +55,7 @@ public class UpnpSettingsResource { log.debug("upnp device settings requested: " + request.params(":id") + " from " + request.ip() + ":" + request.port()); String portNumber = Integer.toString(request.port()); String filledTemplate = null; - if(theSettings.isVtwocompatibility()) - filledTemplate = String.format(hueTemplateVTwo, theSettings.getUpnpConfigAddress(), portNumber, theSettings.getUpnpConfigAddress()); - else - filledTemplate = String.format(hueTemplate, theSettings.getUpnpConfigAddress(), portNumber, theSettings.getUpnpConfigAddress()); + filledTemplate = String.format(hueTemplate, theSettings.getUpnpConfigAddress(), portNumber, theSettings.getUpnpConfigAddress()); if(theSettings.isTraceupnp()) log.info("Traceupnp: upnp device settings response: " + filledTemplate); else diff --git a/src/main/java/com/bwssystems/harmony/HarmonyServer.java b/src/main/java/com/bwssystems/harmony/HarmonyServer.java index 43af20c..417744c 100644 --- a/src/main/java/com/bwssystems/harmony/HarmonyServer.java +++ b/src/main/java/com/bwssystems/harmony/HarmonyServer.java @@ -35,9 +35,11 @@ public class HarmonyServer { return new HarmonyServer(); } Injector injector = null; - injector = Guice.createInjector(new HarmonyClientModule()); + if(!bridgeSettings.isDevMode()) + injector = Guice.createInjector(new HarmonyClientModule()); HarmonyServer mainObject = new HarmonyServer(); - injector.injectMembers(mainObject); + if(!bridgeSettings.isDevMode()) + injector.injectMembers(mainObject); mainObject.execute(bridgeSettings); return mainObject; } diff --git a/src/main/resources/config.data b/src/main/resources/config.data new file mode 100644 index 0000000..86fca42 --- /dev/null +++ b/src/main/resources/config.data @@ -0,0 +1 @@ +{"content":{"contentUserHost":"https://content.dhg.myharmony.com/1.0/User;{userProfileUri}","contentDeviceHost":"https://content.dhg.myharmony.com/1.0/Device;{deviceProfileUri}","contentServiceHost":"https://content.dhg.myharmony.com/1.0/Service/{providerId}","contentImageHost":"https://d1tk8oqnnsddt5.cloudfront.net/1.0/station/{stationId}/image;maxX=40;maxY=40","householdUserProfileUri":"svcs.myharmony.com/res//household/asdfasfasdfadsf/asdfasfasfas/asdfasfasdfasd=/user/default" },"global":{ "timeStampHash":"826ab8cb-85b7-462d-a2f5-a4cdcfccb51fb6dd50f2-f5b7-43e0-9424-063fdcf3cc8c/701c3848-b12b-4c15-8337-ad63060asdfasdas99992-655d-42e3-b76c-7dc92afasdfasd3333356f1e2-0555-447b-b053-5ffbc998637289112Some+Huben-USUS0201834834289342893428959773america%2fthisplace","locale":"en-US" },"deviceLabels":{ "29671764":"TiVo DVR","29671749":"Yamaha AV Receiver","29695485":"Google Media Player","29671742":"Vizio TV","29695438":"Sony DVD","29695467":"Amazon Fire TV Stick","29695418":"Toshiba DVD" }, "activity" : [ { "label" : "Listen to Radio", "suggestedDisplay" : "Default", "id" : 15839510, "activityTypeDisplayName" : "Default", "controlGroup" : [ { "name" : "NumericBasic", "function" : [ { "name" : "NumberEnter", "label" : "Number Enter", "action" : "{\"command\":\"NumberEnter\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number0", "label" : "0", "action" : "{\"command\":\"0\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number1", "label" : "1", "action" : "{\"command\":\"1\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number2", "label" : "2", "action" : "{\"command\":\"2\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number3", "label" : "3", "action" : "{\"command\":\"3\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number4", "label" : "4", "action" : "{\"command\":\"4\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number5", "label" : "5", "action" : "{\"command\":\"5\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number6", "label" : "6", "action" : "{\"command\":\"6\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number7", "label" : "7", "action" : "{\"command\":\"7\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number8", "label" : "8", "action" : "{\"command\":\"8\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number9", "label" : "9", "action" : "{\"command\":\"9\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "Volume", "function" : [ { "name" : "Mute", "label" : "Mute", "action" : "{\"command\":\"Mute\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeDown", "label" : "Volume Down", "action" : "{\"command\":\"VolumeDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeUp", "label" : "Volume Up", "action" : "{\"command\":\"VolumeUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"Enter\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Return", "label" : "Return", "action" : "{\"command\":\"Return\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "RadioTuner", "function" : [ { "name" : "PrevPreset", "label" : "Prev Preset", "action" : "{\"command\":\"PresetPrev\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "ScanDown", "label" : "Scan Down", "action" : "{\"command\":\"TuneDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "ScanUp", "label" : "Scan Up", "action" : "{\"command\":\"TuneUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "NextPreset", "label" : "Next Preset", "action" : "{\"command\":\"PresetNext\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "NavigationExtended", "function" : [ { "name" : "Info", "label" : "Info", "action" : "{\"command\":\"Info\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "Setup", "function" : [ { "name" : "Sleep", "label" : "Sleep", "action" : "{\"command\":\"Sleep\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] } ], "activityOrder" : 1, "fixit" : { "29671749" : { "id" : "29671749", "Power" : "On", "Input" : "Tuner", "isAlwaysOn" : false, "isRelativePower" : true }, "29695418" : { "id" : "29695418", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29671742" : { "id" : "29671742", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29671764" : { "id" : "29671764", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695438" : { "id" : "29695438", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29695467" : { "id" : "29695467", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695485" : { "id" : "29695485", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false } }, "type" : "VirtualCdMulti", "icon" : "userdata: 0x4454e0", "baseImageUri" : "https://rcbu-test-ssl-amr.s3.amazonaws.com/", "isTuningDefault" : false }, { "label" : "Watch TV", "suggestedDisplay" : "Default", "id" : 15823996, "activityTypeDisplayName" : "Default", "controlGroup" : [ { "name" : "NumericBasic", "function" : [ { "name" : "NumberEnter", "label" : "Number Enter", "action" : "{\"command\":\"Enter\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Hyphen", "label" : "-", "action" : "{\"command\":\"-\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number0", "label" : "0", "action" : "{\"command\":\"0\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number1", "label" : "1", "action" : "{\"command\":\"1\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number2", "label" : "2", "action" : "{\"command\":\"2\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number3", "label" : "3", "action" : "{\"command\":\"3\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number4", "label" : "4", "action" : "{\"command\":\"4\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number5", "label" : "5", "action" : "{\"command\":\"5\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number6", "label" : "6", "action" : "{\"command\":\"6\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number7", "label" : "7", "action" : "{\"command\":\"7\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number8", "label" : "8", "action" : "{\"command\":\"8\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number9", "label" : "9", "action" : "{\"command\":\"9\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "Volume", "function" : [ { "name" : "Mute", "label" : "Mute", "action" : "{\"command\":\"Mute\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeDown", "label" : "Volume Down", "action" : "{\"command\":\"VolumeDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeUp", "label" : "Volume Up", "action" : "{\"command\":\"VolumeUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "Channel", "function" : [ { "name" : "PrevChannel", "label" : "Prev Channel", "action" : "{\"command\":\"Last\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "ChannelDown", "label" : "Channel Down", "action" : "{\"command\":\"ChannelDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "ChannelUp", "label" : "Channel Up", "action" : "{\"command\":\"ChannelUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"Select\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "TransportBasic", "function" : [ { "name" : "Play", "label" : "Play", "action" : "{\"command\":\"Play\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Rewind", "label" : "Rewind", "action" : "{\"command\":\"Rewind\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Pause", "label" : "Pause", "action" : "{\"command\":\"Pause\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "FastForward", "label" : "Fast Forward", "action" : "{\"command\":\"FastForward\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "TransportRecording", "function" : [ { "name" : "Record", "label" : "Record", "action" : "{\"command\":\"Record\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "TransportExtended", "function" : [ { "name" : "FrameAdvance", "label" : "Frame Advance", "action" : "{\"command\":\"Slow\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "SkipBackward", "label" : "Skip Backward", "action" : "{\"command\":\"Replay\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "SkipForward", "label" : "Skip Forward", "action" : "{\"command\":\"Advance\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Back", "label" : "Back", "action" : "{\"command\":\"Back\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "NavigationDSTB", "function" : [ { "name" : "C", "label" : "C", "action" : "{\"command\":\"C\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "B", "label" : "B", "action" : "{\"command\":\"B\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "D", "label" : "D", "action" : "{\"command\":\"D\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "A", "label" : "A", "action" : "{\"command\":\"A\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "List", "label" : "List", "action" : "{\"command\":\"List\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Live", "label" : "Live", "action" : "{\"command\":\"LiveTv\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "TiVo", "function" : [ { "name" : "ThumbsDown", "label" : "Thumbs Down", "action" : "{\"command\":\"ThumbsDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "ThumbsUp", "label" : "Thumbs Up", "action" : "{\"command\":\"ThumbsUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "TiVo", "label" : "TiVo", "action" : "{\"command\":\"TiVo\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "NavigationExtended", "function" : [ { "name" : "Guide", "label" : "Guide", "action" : "{\"command\":\"Guide\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Info", "label" : "Info", "action" : "{\"command\":\"Info\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Clear", "label" : "Backspace", "action" : "{\"command\":\"Clear\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "ColoredButtons", "function" : [ { "name" : "Green", "label" : "Green", "action" : "{\"command\":\"Green\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Red", "label" : "Red", "action" : "{\"command\":\"Red\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Blue", "label" : "Blue", "action" : "{\"command\":\"Blue\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Yellow", "label" : "Yellow", "action" : "{\"command\":\"Yellow\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] } ], "activityOrder" : 0, "fixit" : { "29671749" : { "id" : "29671749", "Power" : "On", "Input" : "HDMI 4", "isAlwaysOn" : false, "isRelativePower" : true }, "29695418" : { "id" : "29695418", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29671742" : { "id" : "29671742", "Power" : "On", "Input" : "", "isAlwaysOn" : false, "isRelativePower" : false }, "29671764" : { "id" : "29671764", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695438" : { "id" : "29695438", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29695467" : { "id" : "29695467", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695485" : { "id" : "29695485", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false } }, "type" : "VirtualTelevisionN", "icon" : "userdata: 0x4454e0", "baseImageUri" : "https://rcbu-test-ssl-amr.s3.amazonaws.com/", "isTuningDefault" : true }, { "label" : "Watch Chromecast", "suggestedDisplay" : "SmartTV", "id" : 15839553, "activityTypeDisplayName" : "Default", "controlGroup" : [ { "name" : "Volume", "function" : [ { "name" : "Mute", "label" : "Mute", "action" : "{\"command\":\"Mute\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeDown", "label" : "Volume Down", "action" : "{\"command\":\"VolumeDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeUp", "label" : "Volume Up", "action" : "{\"command\":\"VolumeUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "Channel", "function" : [ { "name" : "PrevChannel", "label" : "Prev Channel", "action" : "{\"command\":\"Last\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"Ok\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "TransportBasic", "function" : [ { "name" : "Stop", "label" : "Stop", "action" : "{\"command\":\"Stop\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Play", "label" : "Play", "action" : "{\"command\":\"Play\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Rewind", "label" : "Rewind", "action" : "{\"command\":\"Rewind\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Pause", "label" : "Pause", "action" : "{\"command\":\"Pause\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "FastForward", "label" : "Fast Forward", "action" : "{\"command\":\"FastForward\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "TransportRecording", "function" : [ { "name" : "Record", "label" : "Record", "action" : "{\"command\":\"Record\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Return", "label" : "Return", "action" : "{\"command\":\"Return\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Menu", "label" : "Menu", "action" : "{\"command\":\"Menu\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "SmartMenu", "label" : "SmartMenu", "action" : "{\"command\":\"VIA\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationDSTB", "function" : [ { "name" : "List", "label" : "List", "action" : "{\"command\":\"List\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationExtended", "function" : [ { "name" : "Guide", "label" : "Guide", "action" : "{\"command\":\"Guide\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Info", "label" : "Info", "action" : "{\"command\":\"Info\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Exit", "label" : "Exit", "action" : "{\"command\":\"Exit\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Exit", "label" : "Esc", "action" : "{\"command\":\"Exit\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "ColoredButtons", "function" : [ { "name" : "Green", "label" : "Green", "action" : "{\"command\":\"Green\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Red", "label" : "Red", "action" : "{\"command\":\"Red\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Blue", "label" : "Blue", "action" : "{\"command\":\"Blue\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Yellow", "label" : "Yellow", "action" : "{\"command\":\"Yellow\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] } ], "activityOrder" : 4, "fixit" : { "29671749" : { "id" : "29671749", "Power" : "On", "Input" : "HDMI 3", "isAlwaysOn" : false, "isRelativePower" : true }, "29695418" : { "id" : "29695418", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29671742" : { "id" : "29671742", "Power" : "On", "Input" : "", "isAlwaysOn" : false, "isRelativePower" : false }, "29671764" : { "id" : "29671764", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695438" : { "id" : "29695438", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29695467" : { "id" : "29695467", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695485" : { "id" : "29695485", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false } }, "type" : "VirtualGeneric", "icon" : "userdata: 0x4454e0", "baseImageUri" : "https://rcbu-test-ssl-amr.s3.amazonaws.com/", "isTuningDefault" : false }, { "label" : "Listen to Changer", "suggestedDisplay" : "Default", "id" : 15839569, "activityTypeDisplayName" : "Default", "controlGroup" : [ { "name" : "NumericBasic", "function" : [ { "name" : "Number0", "label" : "0", "action" : "{\"command\":\"0\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number1", "label" : "1", "action" : "{\"command\":\"1\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number2", "label" : "2", "action" : "{\"command\":\"2\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number3", "label" : "3", "action" : "{\"command\":\"3\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number4", "label" : "4", "action" : "{\"command\":\"4\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number5", "label" : "5", "action" : "{\"command\":\"5\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number6", "label" : "6", "action" : "{\"command\":\"6\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number7", "label" : "7", "action" : "{\"command\":\"7\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number8", "label" : "8", "action" : "{\"command\":\"8\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number9", "label" : "9", "action" : "{\"command\":\"9\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Clear", "label" : "Clear", "action" : "{\"command\":\"Clear\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "Volume", "function" : [ { "name" : "Mute", "label" : "Mute", "action" : "{\"command\":\"Mute\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeDown", "label" : "Volume Down", "action" : "{\"command\":\"VolumeDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeUp", "label" : "Volume Up", "action" : "{\"command\":\"VolumeUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"Select\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "TransportBasic", "function" : [ { "name" : "Stop", "label" : "Stop", "action" : "{\"command\":\"Stop\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Play", "label" : "Play", "action" : "{\"command\":\"Play\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Rewind", "label" : "Rewind", "action" : "{\"command\":\"Rewind\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Eject", "label" : "Eject", "action" : "{\"command\":\"Eject\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Pause", "label" : "Pause", "action" : "{\"command\":\"Pause\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "FastForward", "label" : "Fast Forward", "action" : "{\"command\":\"FastForward\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "TransportExtended", "function" : [ { "name" : "SkipBackward", "label" : "Skip Backward", "action" : "{\"command\":\"ChapterPrev\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "SkipForward", "label" : "Skip Forward", "action" : "{\"command\":\"ChapterNext\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Return", "label" : "Return", "action" : "{\"command\":\"Return\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "TopMenu", "label" : "Top Menu", "action" : "{\"command\":\"TopMenu\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Menu", "label" : "Menu", "action" : "{\"command\":\"Menu\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Subtitle", "label" : "Subtitle", "action" : "{\"command\":\"Subtitle\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "PlayMode", "function" : [ { "name" : "Repeat", "label" : "Repeat", "action" : "{\"command\":\"Repeat\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "DiscAccess", "function" : [ { "name" : "PreviousDisc", "label" : "Previous Disc", "action" : "{\"command\":\"DiscPrev\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "NextDisc", "label" : "Next Disc", "action" : "{\"command\":\"DiscNext\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] } ], "activityOrder" : 5, "fixit" : { "29671749" : { "id" : "29671749", "Power" : "On", "Input" : "AV 1", "isAlwaysOn" : false, "isRelativePower" : true }, "29695418" : { "id" : "29695418", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29671742" : { "id" : "29671742", "Power" : "On", "Input" : "", "isAlwaysOn" : false, "isRelativePower" : false }, "29671764" : { "id" : "29671764", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695438" : { "id" : "29695438", "Power" : "On", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29695467" : { "id" : "29695467", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695485" : { "id" : "29695485", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false } }, "type" : "VirtualCdMulti", "icon" : "userdata: 0x4454e0", "baseImageUri" : "https://rcbu-test-ssl-amr.s3.amazonaws.com/", "isTuningDefault" : false }, { "label" : "PowerOff", "suggestedDisplay" : "Default", "id" : -1, "activityTypeDisplayName" : "Default", "controlGroup" : [ ], "activityOrder" : null, "fixit" : { "29671749" : { "id" : "29671749", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29695418" : { "id" : "29695418", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29671742" : { "id" : "29671742", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29671764" : { "id" : "29671764", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695438" : { "id" : "29695438", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29695467" : { "id" : "29695467", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695485" : { "id" : "29695485", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false } }, "type" : "PowerOff", "icon" : "Default", "baseImageUri" : null, "isTuningDefault" : false }, { "label" : "Watch a Movie", "suggestedDisplay" : "Default", "id" : 15839533, "activityTypeDisplayName" : "Default", "controlGroup" : [ { "name" : "NumericBasic", "function" : [ { "name" : "Number0", "label" : "0", "action" : "{\"command\":\"0\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number1", "label" : "1", "action" : "{\"command\":\"1\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number2", "label" : "2", "action" : "{\"command\":\"2\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number3", "label" : "3", "action" : "{\"command\":\"3\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number4", "label" : "4", "action" : "{\"command\":\"4\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number5", "label" : "5", "action" : "{\"command\":\"5\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number6", "label" : "6", "action" : "{\"command\":\"6\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number7", "label" : "7", "action" : "{\"command\":\"7\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number8", "label" : "8", "action" : "{\"command\":\"8\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number9", "label" : "9", "action" : "{\"command\":\"9\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Clear", "label" : "Clear", "action" : "{\"command\":\"Clear\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "Volume", "function" : [ { "name" : "Mute", "label" : "Mute", "action" : "{\"command\":\"Mute\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeDown", "label" : "Volume Down", "action" : "{\"command\":\"VolumeDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeUp", "label" : "Volume Up", "action" : "{\"command\":\"VolumeUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"Ok\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "TransportBasic", "function" : [ { "name" : "Stop", "label" : "Stop", "action" : "{\"command\":\"Stop\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Play", "label" : "Play", "action" : "{\"command\":\"Play\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Rewind", "label" : "Rewind", "action" : "{\"command\":\"Rewind\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Eject", "label" : "Eject", "action" : "{\"command\":\"Eject\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Pause", "label" : "Pause", "action" : "{\"command\":\"Pause\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "FastForward", "label" : "Fast Forward", "action" : "{\"command\":\"FastForward\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "TransportExtended", "function" : [ { "name" : "FrameAdvance", "label" : "Frame Advance", "action" : "{\"command\":\"Step\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "SkipBackward", "label" : "Skip Backward", "action" : "{\"command\":\"SkipBack\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "SkipForward", "label" : "Skip Forward", "action" : "{\"command\":\"SkipForward\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Return", "label" : "Return", "action" : "{\"command\":\"Return\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "TopMenu", "label" : "Top Menu", "action" : "{\"command\":\"TopMenu\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Menu", "label" : "Menu", "action" : "{\"command\":\"Menu\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Subtitle", "label" : "Subtitle", "action" : "{\"command\":\"Subtitle\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "PlayMode", "function" : [ { "name" : "Repeat", "label" : "Repeat", "action" : "{\"command\":\"Repeat\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "Program", "function" : [ { "name" : "Program", "label" : "Program", "action" : "{\"command\":\"Program\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Bookmark", "label" : "Bookmark", "action" : "{\"command\":\"Bookmark\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "GameType3", "function" : [ { "name" : "Home", "label" : "Home", "action" : "{\"command\":\"Home\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "NavigationExtended", "function" : [ { "name" : "Clear", "label" : "Backspace", "action" : "{\"command\":\"Clear\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "ColoredButtons", "function" : [ { "name" : "Green", "label" : "Green", "action" : "{\"command\":\"Green\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Red", "label" : "Red", "action" : "{\"command\":\"Red\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Blue", "label" : "Blue", "action" : "{\"command\":\"Blue\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Yellow", "label" : "Yellow", "action" : "{\"command\":\"Yellow\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] } ], "activityOrder" : 3, "fixit" : { "29671749" : { "id" : "29671749", "Power" : "On", "Input" : "HDMI 2", "isAlwaysOn" : false, "isRelativePower" : true }, "29695418" : { "id" : "29695418", "Power" : "On", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29671742" : { "id" : "29671742", "Power" : "On", "Input" : "", "isAlwaysOn" : false, "isRelativePower" : false }, "29671764" : { "id" : "29671764", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695438" : { "id" : "29695438", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29695467" : { "id" : "29695467", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695485" : { "id" : "29695485", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false } }, "type" : "VirtualDvd", "icon" : "userdata: 0x4454e0", "baseImageUri" : "https://rcbu-test-ssl-amr.s3.amazonaws.com/", "isTuningDefault" : false }, { "label" : "Fire Tv", "suggestedDisplay" : "Default", "id" : 15839526, "activityTypeDisplayName" : "Default", "controlGroup" : [ { "name" : "NumericBasic", "function" : [ { "name" : "Hyphen", "label" : "-", "action" : "{\"command\":\"-\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number0", "label" : "0", "action" : "{\"command\":\"0\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number1", "label" : "1", "action" : "{\"command\":\"1\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number2", "label" : "2", "action" : "{\"command\":\"2\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number3", "label" : "3", "action" : "{\"command\":\"3\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number4", "label" : "4", "action" : "{\"command\":\"4\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number5", "label" : "5", "action" : "{\"command\":\"5\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number6", "label" : "6", "action" : "{\"command\":\"6\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number7", "label" : "7", "action" : "{\"command\":\"7\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number8", "label" : "8", "action" : "{\"command\":\"8\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number9", "label" : "9", "action" : "{\"command\":\"9\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "Volume", "function" : [ { "name" : "Mute", "label" : "Mute", "action" : "{\"command\":\"Mute\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeDown", "label" : "Volume Down", "action" : "{\"command\":\"VolumeDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeUp", "label" : "Volume Up", "action" : "{\"command\":\"VolumeUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "Channel", "function" : [ { "name" : "PrevChannel", "label" : "Prev Channel", "action" : "{\"command\":\"Last\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "ChannelDown", "label" : "Channel Down", "action" : "{\"command\":\"ChannelDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "ChannelUp", "label" : "Channel Up", "action" : "{\"command\":\"ChannelUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"Ok\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "TransportBasic", "function" : [ { "name" : "Stop", "label" : "Stop", "action" : "{\"command\":\"Stop\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Play", "label" : "Play", "action" : "{\"command\":\"Play\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Rewind", "label" : "Rewind", "action" : "{\"command\":\"Rewind\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Pause", "label" : "Pause", "action" : "{\"command\":\"Pause\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "FastForward", "label" : "Fast Forward", "action" : "{\"command\":\"FastForward\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "TransportRecording", "function" : [ { "name" : "Record", "label" : "Record", "action" : "{\"command\":\"Record\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Return", "label" : "Return", "action" : "{\"command\":\"Return\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Menu", "label" : "Menu", "action" : "{\"command\":\"Menu\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationDSTB", "function" : [ { "name" : "List", "label" : "List", "action" : "{\"command\":\"List\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationExtended", "function" : [ { "name" : "Guide", "label" : "Guide", "action" : "{\"command\":\"Guide\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Info", "label" : "Info", "action" : "{\"command\":\"Info\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Exit", "label" : "Exit", "action" : "{\"command\":\"Exit\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "ColoredButtons", "function" : [ { "name" : "Green", "label" : "Green", "action" : "{\"command\":\"Green\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Red", "label" : "Red", "action" : "{\"command\":\"Red\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Blue", "label" : "Blue", "action" : "{\"command\":\"Blue\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Yellow", "label" : "Yellow", "action" : "{\"command\":\"Yellow\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] } ], "activityOrder" : 2, "fixit" : { "29671749" : { "id" : "29671749", "Power" : "On", "Input" : "HDMI 1", "isAlwaysOn" : false, "isRelativePower" : true }, "29695418" : { "id" : "29695418", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29671742" : { "id" : "29671742", "Power" : "On", "Input" : "", "isAlwaysOn" : false, "isRelativePower" : false }, "29671764" : { "id" : "29671764", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695438" : { "id" : "29695438", "Power" : "Off", "Input" : null, "isAlwaysOn" : false, "isRelativePower" : true }, "29695467" : { "id" : "29695467", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false }, "29695485" : { "id" : "29695485", "Power" : null, "Input" : null, "isAlwaysOn" : false, "isRelativePower" : false } }, "type" : "VirtualGeneric", "icon" : "userdata: 0x4454e0", "baseImageUri" : "https://rcbu-test-ssl-amr.s3.amazonaws.com/", "isTuningDefault" : false } ], "device" : [ { "id" : 29671749, "label" : "Yamaha AV Receiver", "type" : "StereoReceiver", "suggestedDisplay" : "DEFAULT", "deviceTypeDisplayName" : "StereoReceiver", "controlGroup" : [ { "name" : "Power", "function" : [ { "name" : "PowerOff", "label" : "Power Off", "action" : "{\"command\":\"PowerOff\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "PowerOn", "label" : "Power On", "action" : "{\"command\":\"PowerOn\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "PowerToggle", "label" : "Power Toggle", "action" : "{\"command\":\"PowerToggle\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "NumericBasic", "function" : [ { "name" : "NumberEnter", "label" : "Number Enter", "action" : "{\"command\":\"NumberEnter\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number0", "label" : "0", "action" : "{\"command\":\"0\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number1", "label" : "1", "action" : "{\"command\":\"1\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number2", "label" : "2", "action" : "{\"command\":\"2\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number3", "label" : "3", "action" : "{\"command\":\"3\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number4", "label" : "4", "action" : "{\"command\":\"4\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number5", "label" : "5", "action" : "{\"command\":\"5\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number6", "label" : "6", "action" : "{\"command\":\"6\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number7", "label" : "7", "action" : "{\"command\":\"7\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number8", "label" : "8", "action" : "{\"command\":\"8\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Number9", "label" : "9", "action" : "{\"command\":\"9\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "Volume", "function" : [ { "name" : "Mute", "label" : "Mute", "action" : "{\"command\":\"Mute\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeDown", "label" : "Volume Down", "action" : "{\"command\":\"VolumeDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "VolumeUp", "label" : "Volume Up", "action" : "{\"command\":\"VolumeUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"Enter\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Return", "label" : "Return", "action" : "{\"command\":\"Return\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "RadioTuner", "function" : [ { "name" : "PrevPreset", "label" : "Prev Preset", "action" : "{\"command\":\"PresetPrev\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "ScanDown", "label" : "Scan Down", "action" : "{\"command\":\"TuneDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "ScanUp", "label" : "Scan Up", "action" : "{\"command\":\"TuneUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "NextPreset", "label" : "Next Preset", "action" : "{\"command\":\"PresetNext\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "Setup", "function" : [ { "name" : "Setup", "label" : "Setup", "action" : "{\"command\":\"Setup\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Sleep", "label" : "Sleep", "action" : "{\"command\":\"Sleep\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "NavigationExtended", "function" : [ { "name" : "Info", "label" : "Info", "action" : "{\"command\":\"Info\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "DisplayMode", "function" : [ { "name" : "Display", "label" : "Display", "action" : "{\"command\":\"Display\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] }, { "name" : "Miscellaneous", "function" : [ { "name" : "DSP-Direct", "label" : "DSP-Direct", "action" : "{\"command\":\"DSP-Direct\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "DSP-Movie", "label" : "DSP-Movie", "action" : "{\"command\":\"DSP-Movie\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "DSP-Music", "label" : "DSP-Music", "action" : "{\"command\":\"DSP-Music\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "DSP-Stereo/Enhancer", "label" : "DSP-Stereo/Enhancer", "action" : "{\"command\":\"DSP-Stereo\\/Enhancer\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "DSP-Straight", "label" : "DSP-Straight", "action" : "{\"command\":\"DSP-Straight\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "DSP-SurrDecode", "label" : "DSP-SurrDecode", "action" : "{\"command\":\"DSP-SurrDecode\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputAudio1", "label" : "InputAudio1", "action" : "{\"command\":\"InputAudio1\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputAudio2", "label" : "InputAudio2", "action" : "{\"command\":\"InputAudio2\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputAv1", "label" : "InputAv1", "action" : "{\"command\":\"InputAv1\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputAv2", "label" : "InputAv2", "action" : "{\"command\":\"InputAv2\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputAv3", "label" : "InputAv3", "action" : "{\"command\":\"InputAv3\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputAv4", "label" : "InputAv4", "action" : "{\"command\":\"InputAv4\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputAv5", "label" : "InputAv5", "action" : "{\"command\":\"InputAv5\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputAv6", "label" : "InputAv6", "action" : "{\"command\":\"InputAv6\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputDock", "label" : "InputDock", "action" : "{\"command\":\"InputDock\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputHdmi1", "label" : "InputHdmi1", "action" : "{\"command\":\"InputHdmi1\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputHdmi2", "label" : "InputHdmi2", "action" : "{\"command\":\"InputHdmi2\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputHdmi3", "label" : "InputHdmi3", "action" : "{\"command\":\"InputHdmi3\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputHdmi4", "label" : "InputHdmi4", "action" : "{\"command\":\"InputHdmi4\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputTuner", "label" : "InputTuner", "action" : "{\"command\":\"InputTuner\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "InputV-Aux", "label" : "InputV-Aux", "action" : "{\"command\":\"InputV-Aux\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodDisplay", "label" : "iPodDisplay", "action" : "{\"command\":\"iPodDisplay\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodDown", "label" : "iPodDown", "action" : "{\"command\":\"iPodDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodEnter", "label" : "iPodEnter", "action" : "{\"command\":\"iPodEnter\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodFastForward", "label" : "iPodFastForward", "action" : "{\"command\":\"iPodFastForward\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodLeft", "label" : "iPodLeft", "action" : "{\"command\":\"iPodLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodNextTrack", "label" : "iPodNextTrack", "action" : "{\"command\":\"iPodNextTrack\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodPause", "label" : "iPodPause", "action" : "{\"command\":\"iPodPause\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodPlay", "label" : "iPodPlay", "action" : "{\"command\":\"iPodPlay\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodPreviousTrack", "label" : "iPodPreviousTrack", "action" : "{\"command\":\"iPodPreviousTrack\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodRewind", "label" : "iPodRewind", "action" : "{\"command\":\"iPodRewind\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodRight", "label" : "iPodRight", "action" : "{\"command\":\"iPodRight\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodStop", "label" : "iPodStop", "action" : "{\"command\":\"iPodStop\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "iPodUp", "label" : "iPodUp", "action" : "{\"command\":\"iPodUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Memory", "label" : "Memory", "action" : "{\"command\":\"Memory\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "Option", "label" : "Option", "action" : "{\"command\":\"Option\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "SceneBd/Dvd", "label" : "SceneBd/Dvd", "action" : "{\"command\":\"SceneBd\\/Dvd\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "SceneCd", "label" : "SceneCd", "action" : "{\"command\":\"SceneCd\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "SceneRadio", "label" : "SceneRadio", "action" : "{\"command\":\"SceneRadio\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "SceneTv", "label" : "SceneTv", "action" : "{\"command\":\"SceneTv\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "SelectAm", "label" : "SelectAm", "action" : "{\"command\":\"SelectAm\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" }, { "name" : "SelectFm", "label" : "SelectFm", "action" : "{\"command\":\"SelectFm\",\"type\":\"IRCommand\",\"deviceId\":\"29671749\"}" } ] } ], "model" : "HTR-5063", "deviceProfileUri" : "svcs.myharmony.com/res/device/29671749-qVE4lSVuAqkVmhj1KOiyYIRjQrTaPAxfie7iIgbt3kQ=", "manufacturer" : "Yamaha", "icon" : "5", "Transport" : 1, "Capabilities" : [ 1, 5, 8 ], "DongleRFID" : 0, "ControlPort" : "7", "IsKeyboardAssociated" : false, "isManualPower" : false }, { "id" : 29695418, "label" : "Toshiba DVD", "type" : "DVD", "suggestedDisplay" : "DEFAULT", "deviceTypeDisplayName" : "DVD", "controlGroup" : [ { "name" : "Power", "function" : [ { "name" : "PowerToggle", "label" : "Power Toggle", "action" : "{\"command\":\"PowerToggle\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "NumericBasic", "function" : [ { "name" : "Number0", "label" : "0", "action" : "{\"command\":\"0\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number1", "label" : "1", "action" : "{\"command\":\"1\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number2", "label" : "2", "action" : "{\"command\":\"2\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number3", "label" : "3", "action" : "{\"command\":\"3\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number4", "label" : "4", "action" : "{\"command\":\"4\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number5", "label" : "5", "action" : "{\"command\":\"5\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number6", "label" : "6", "action" : "{\"command\":\"6\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number7", "label" : "7", "action" : "{\"command\":\"7\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number8", "label" : "8", "action" : "{\"command\":\"8\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Number9", "label" : "9", "action" : "{\"command\":\"9\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Clear", "label" : "Clear", "action" : "{\"command\":\"Clear\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"Ok\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "TransportBasic", "function" : [ { "name" : "Stop", "label" : "Stop", "action" : "{\"command\":\"Stop\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Play", "label" : "Play", "action" : "{\"command\":\"Play\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Rewind", "label" : "Rewind", "action" : "{\"command\":\"Rewind\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Eject", "label" : "Eject", "action" : "{\"command\":\"Eject\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Pause", "label" : "Pause", "action" : "{\"command\":\"Pause\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "FastForward", "label" : "Fast Forward", "action" : "{\"command\":\"FastForward\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "TransportExtended", "function" : [ { "name" : "FrameAdvance", "label" : "Frame Advance", "action" : "{\"command\":\"Step\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "SkipBackward", "label" : "Skip Backward", "action" : "{\"command\":\"SkipBack\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "SkipForward", "label" : "Skip Forward", "action" : "{\"command\":\"SkipForward\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Return", "label" : "Return", "action" : "{\"command\":\"Return\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "TopMenu", "label" : "Top Menu", "action" : "{\"command\":\"TopMenu\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Menu", "label" : "Menu", "action" : "{\"command\":\"Menu\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Subtitle", "label" : "Subtitle", "action" : "{\"command\":\"Subtitle\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Audio", "label" : "Audio", "action" : "{\"command\":\"Audio\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Angle", "label" : "Angle", "action" : "{\"command\":\"Angle\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "PlayMode", "function" : [ { "name" : "Repeat", "label" : "Repeat", "action" : "{\"command\":\"Repeat\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "RepeatAB", "label" : "Repeat A-B", "action" : "{\"command\":\"RepeatA-B\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "Program", "function" : [ { "name" : "Program", "label" : "Program", "action" : "{\"command\":\"Program\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Bookmark", "label" : "Bookmark", "action" : "{\"command\":\"Bookmark\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "PictureInPicture", "function" : [ { "name" : "PipToggle", "label" : "Pip Toggle", "action" : "{\"command\":\"PIP\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "ColoredButtons", "function" : [ { "name" : "Green", "label" : "Green", "action" : "{\"command\":\"Green\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Red", "label" : "Red", "action" : "{\"command\":\"Red\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Blue", "label" : "Blue", "action" : "{\"command\":\"Blue\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Yellow", "label" : "Yellow", "action" : "{\"command\":\"Yellow\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "DisplayMode", "function" : [ { "name" : "Display", "label" : "Display", "action" : "{\"command\":\"Display\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Zoom", "label" : "Zoom", "action" : "{\"command\":\"Zoom\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "GoogleTVNavigation", "function" : [ { "name" : "Netflix", "label" : "Netflix", "action" : "{\"command\":\"Netflix\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] }, { "name" : "Miscellaneous", "function" : [ { "name" : "Connected", "label" : "Connected", "action" : "{\"command\":\"Connected\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Digest", "label" : "Digest", "action" : "{\"command\":\"Digest\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Goto", "label" : "Goto", "action" : "{\"command\":\"Goto\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Home", "label" : "Home", "action" : "{\"command\":\"Home\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "OnScreen", "label" : "OnScreen", "action" : "{\"command\":\"OnScreen\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "PopUp", "label" : "PopUp", "action" : "{\"command\":\"PopUp\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "SecondaryAudio", "label" : "SecondaryAudio", "action" : "{\"command\":\"SecondaryAudio\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" }, { "name" : "Slow", "label" : "Slow", "action" : "{\"command\":\"Slow\",\"type\":\"IRCommand\",\"deviceId\":\"29695418\"}" } ] } ], "model" : "bdk33", "deviceProfileUri" : "svcs.myharmony.com/res/device/29695418-D8Q8Amm9TDPWK5OxPaGiCPZ+iJKJJdHmqQL7MGcMHMY=", "manufacturer" : "Toshiba", "icon" : "4", "Transport" : 1, "Capabilities" : [ 1, 5, 6, 9, 10 ], "DongleRFID" : 0, "ControlPort" : "7", "IsKeyboardAssociated" : false, "isManualPower" : false }, { "id" : 29695485, "label" : "Google Media Player", "type" : "MediaCenterPC", "suggestedDisplay" : "DEFAULT", "deviceTypeDisplayName" : "MediaCenterPC", "controlGroup" : [ ], "model" : "Chromecast", "deviceProfileUri" : "svcs.myharmony.com/res/device/29695485-/Djh7UrPGPdGcKvoGm/2KBecvX/4OVw3ePgOijZG+OA=", "manufacturer" : "Google", "icon" : "35", "Transport" : 1, "Capabilities" : [ 1, 2, 3, 4, 5, 6, 8, 9, 10, 15, 31 ], "DongleRFID" : 0, "ControlPort" : "7", "IsKeyboardAssociated" : false, "isManualPower" : true }, { "id" : 29695467, "label" : "Amazon Fire TV Stick", "type" : "Default", "suggestedDisplay" : "DEFAULT", "deviceTypeDisplayName" : "MediaPlayer", "controlGroup" : [ { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"OK\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" } ] }, { "name" : "TransportBasic", "function" : [ { "name" : "Stop", "label" : "Stop", "action" : "{\"command\":\"Stop\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" }, { "name" : "Play", "label" : "Play", "action" : "{\"command\":\"Play\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" }, { "name" : "Rewind", "label" : "Rewind", "action" : "{\"command\":\"Rewind\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" }, { "name" : "Pause", "label" : "Pause", "action" : "{\"command\":\"Pause\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" }, { "name" : "FastForward", "label" : "Fast Forward", "action" : "{\"command\":\"FastForward\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" } ] }, { "name" : "TransportExtended", "function" : [ { "name" : "SkipBackward", "label" : "Skip Backward", "action" : "{\"command\":\"SkipBackward\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" }, { "name" : "SkipForward", "label" : "Skip Forward", "action" : "{\"command\":\"SkipForward\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Menu", "label" : "Menu", "action" : "{\"command\":\"Menu\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" }, { "name" : "Back", "label" : "Back", "action" : "{\"command\":\"Back\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" } ] }, { "name" : "NavigationDSTB", "function" : [ { "name" : "Search", "label" : "Search", "action" : "{\"command\":\"Search\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" } ] }, { "name" : "GoogleTVNavigation", "function" : [ { "name" : "Delete", "label" : "Backspace", "action" : "{\"command\":\"Delete\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" } ] }, { "name" : "Miscellaneous", "function" : [ { "name" : "Home", "label" : "Home", "action" : "{\"command\":\"Home\",\"type\":\"IRCommand\",\"deviceId\":\"29695467\"}" } ] } ], "model" : "Fire TV Stick", "deviceProfileUri" : "svcs.myharmony.com/res/device/29695467-O4Wxz1+ttxMeFhyaUS/oZfiG6o5qxq5kRjd4XFtlacw=", "manufacturer" : "Amazon", "icon" : "64", "Transport" : 33, "Capabilities" : [ 5, 32, 17, 16, 18 ], "DongleRFID" : 0, "ControlPort" : "1", "IsKeyboardAssociated" : false, "isManualPower" : true }, { "id" : 29695438, "label" : "Sony DVD", "type" : "DVD", "suggestedDisplay" : "DEFAULT", "deviceTypeDisplayName" : "DVD", "controlGroup" : [ { "name" : "Power", "function" : [ { "name" : "PowerOff", "label" : "Power Off", "action" : "{\"command\":\"PowerOff\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "PowerOn", "label" : "Power On", "action" : "{\"command\":\"PowerOn\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "PowerToggle", "label" : "Power Toggle", "action" : "{\"command\":\"PowerToggle\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "NumericBasic", "function" : [ { "name" : "Number0", "label" : "0", "action" : "{\"command\":\"0\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number1", "label" : "1", "action" : "{\"command\":\"1\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number2", "label" : "2", "action" : "{\"command\":\"2\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number3", "label" : "3", "action" : "{\"command\":\"3\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number4", "label" : "4", "action" : "{\"command\":\"4\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number5", "label" : "5", "action" : "{\"command\":\"5\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number6", "label" : "6", "action" : "{\"command\":\"6\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number7", "label" : "7", "action" : "{\"command\":\"7\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number8", "label" : "8", "action" : "{\"command\":\"8\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Number9", "label" : "9", "action" : "{\"command\":\"9\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Clear", "label" : "Clear", "action" : "{\"command\":\"Clear\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"Select\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "TransportBasic", "function" : [ { "name" : "Stop", "label" : "Stop", "action" : "{\"command\":\"Stop\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Play", "label" : "Play", "action" : "{\"command\":\"Play\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Rewind", "label" : "Rewind", "action" : "{\"command\":\"Rewind\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Eject", "label" : "Eject", "action" : "{\"command\":\"Eject\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Pause", "label" : "Pause", "action" : "{\"command\":\"Pause\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "FastForward", "label" : "Fast Forward", "action" : "{\"command\":\"FastForward\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "TransportExtended", "function" : [ { "name" : "SkipBackward", "label" : "Skip Backward", "action" : "{\"command\":\"ChapterPrev\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "SkipForward", "label" : "Skip Forward", "action" : "{\"command\":\"ChapterNext\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Return", "label" : "Return", "action" : "{\"command\":\"Return\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "TopMenu", "label" : "Top Menu", "action" : "{\"command\":\"TopMenu\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Menu", "label" : "Menu", "action" : "{\"command\":\"Menu\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Subtitle", "label" : "Subtitle", "action" : "{\"command\":\"Subtitle\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Audio", "label" : "Audio", "action" : "{\"command\":\"Audio\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Angle", "label" : "Angle", "action" : "{\"command\":\"Angle\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "PlayMode", "function" : [ { "name" : "Repeat", "label" : "Repeat", "action" : "{\"command\":\"Repeat\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "DiscAccess", "function" : [ { "name" : "PreviousDisc", "label" : "Previous Disc", "action" : "{\"command\":\"DiscPrev\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "NextDisc", "label" : "Next Disc", "action" : "{\"command\":\"DiscNext\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "DisplayMode", "function" : [ { "name" : "Display", "label" : "Display", "action" : "{\"command\":\"Display\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] }, { "name" : "Miscellaneous", "function" : [ { "name" : "Edit", "label" : "Edit", "action" : "{\"command\":\"Edit\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "File", "label" : "File", "action" : "{\"command\":\"File\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Folder", "label" : "Folder", "action" : "{\"command\":\"Folder\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "InstantReplay", "label" : "InstantReplay", "action" : "{\"command\":\"InstantReplay\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "InstantSearch", "label" : "InstantSearch", "action" : "{\"command\":\"InstantSearch\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Multi/2-CH", "label" : "Multi/2-CH", "action" : "{\"command\":\"Multi\\/2-CH\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "PictureMemory", "label" : "PictureMemory", "action" : "{\"command\":\"PictureMemory\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "PictureNavi", "label" : "PictureNavi", "action" : "{\"command\":\"PictureNavi\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "SACD/CD", "label" : "SACD/CD", "action" : "{\"command\":\"SACD\\/CD\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "SearchBackward", "label" : "SearchBackward", "action" : "{\"command\":\"SearchBackward\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "SearchForward", "label" : "SearchForward", "action" : "{\"command\":\"SearchForward\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Sort", "label" : "Sort", "action" : "{\"command\":\"Sort\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Surround", "label" : "Surround", "action" : "{\"command\":\"Surround\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "Time/Text", "label" : "Time/Text", "action" : "{\"command\":\"Time\\/Text\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" }, { "name" : "VideoControl", "label" : "VideoControl", "action" : "{\"command\":\"VideoControl\",\"type\":\"IRCommand\",\"deviceId\":\"29695438\"}" } ] } ], "model" : "DVP-CX985V", "deviceProfileUri" : "svcs.myharmony.com/res/device/29695438-O/cqsIF0Dc5xRF9JDzaW6YX/fyTej8Q8LsMCVOB/qlg=", "manufacturer" : "Sony", "icon" : "4", "Transport" : 1, "Capabilities" : [ 1, 5, 6, 9, 10 ], "DongleRFID" : 0, "ControlPort" : "7", "IsKeyboardAssociated" : false, "isManualPower" : false }, { "id" : 29671764, "label" : "TiVo DVR", "type" : "PVR", "suggestedDisplay" : "DEFAULT", "deviceTypeDisplayName" : "PVR", "controlGroup" : [ { "name" : "Power", "function" : [ { "name" : "PowerToggle", "label" : "Power Toggle", "action" : "{\"command\":\"PowerToggle\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "NumericBasic", "function" : [ { "name" : "NumberEnter", "label" : "Number Enter", "action" : "{\"command\":\"Enter\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Hyphen", "label" : "-", "action" : "{\"command\":\"-\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number0", "label" : "0", "action" : "{\"command\":\"0\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number1", "label" : "1", "action" : "{\"command\":\"1\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number2", "label" : "2", "action" : "{\"command\":\"2\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number3", "label" : "3", "action" : "{\"command\":\"3\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number4", "label" : "4", "action" : "{\"command\":\"4\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number5", "label" : "5", "action" : "{\"command\":\"5\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number6", "label" : "6", "action" : "{\"command\":\"6\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number7", "label" : "7", "action" : "{\"command\":\"7\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number8", "label" : "8", "action" : "{\"command\":\"8\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Number9", "label" : "9", "action" : "{\"command\":\"9\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Clear", "label" : "Clear", "action" : "{\"command\":\"Clear\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "Volume", "function" : [ { "name" : "Mute", "label" : "Mute", "action" : "{\"command\":\"Mute\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "VolumeDown", "label" : "Volume Down", "action" : "{\"command\":\"VolumeDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "VolumeUp", "label" : "Volume Up", "action" : "{\"command\":\"VolumeUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "Channel", "function" : [ { "name" : "PrevChannel", "label" : "Prev Channel", "action" : "{\"command\":\"Last\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "ChannelDown", "label" : "Channel Down", "action" : "{\"command\":\"ChannelDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "ChannelUp", "label" : "Channel Up", "action" : "{\"command\":\"ChannelUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"Select\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "TransportBasic", "function" : [ { "name" : "Play", "label" : "Play", "action" : "{\"command\":\"Play\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Rewind", "label" : "Rewind", "action" : "{\"command\":\"Rewind\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Pause", "label" : "Pause", "action" : "{\"command\":\"Pause\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "FastForward", "label" : "Fast Forward", "action" : "{\"command\":\"FastForward\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "TransportRecording", "function" : [ { "name" : "Record", "label" : "Record", "action" : "{\"command\":\"Record\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "TransportExtended", "function" : [ { "name" : "FrameAdvance", "label" : "Frame Advance", "action" : "{\"command\":\"Slow\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "SkipBackward", "label" : "Skip Backward", "action" : "{\"command\":\"Replay\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "SkipForward", "label" : "Skip Forward", "action" : "{\"command\":\"Advance\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Back", "label" : "Back", "action" : "{\"command\":\"Back\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "NavigationDSTB", "function" : [ { "name" : "C", "label" : "C", "action" : "{\"command\":\"C\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "B", "label" : "B", "action" : "{\"command\":\"B\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "D", "label" : "D", "action" : "{\"command\":\"D\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "A", "label" : "A", "action" : "{\"command\":\"A\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "List", "label" : "List", "action" : "{\"command\":\"List\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Live", "label" : "Live", "action" : "{\"command\":\"LiveTv\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "TiVo", "function" : [ { "name" : "ThumbsDown", "label" : "Thumbs Down", "action" : "{\"command\":\"ThumbsDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "ThumbsUp", "label" : "Thumbs Up", "action" : "{\"command\":\"ThumbsUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "TiVo", "label" : "TiVo", "action" : "{\"command\":\"TiVo\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "ColoredButtons", "function" : [ { "name" : "Green", "label" : "Green", "action" : "{\"command\":\"Green\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Red", "label" : "Red", "action" : "{\"command\":\"Red\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Blue", "label" : "Blue", "action" : "{\"command\":\"Blue\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Yellow", "label" : "Yellow", "action" : "{\"command\":\"Yellow\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "NavigationExtended", "function" : [ { "name" : "Guide", "label" : "Guide", "action" : "{\"command\":\"Guide\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" }, { "name" : "Info", "label" : "Info", "action" : "{\"command\":\"Info\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "DisplayMode", "function" : [ { "name" : "Zoom", "label" : "Zoom", "action" : "{\"command\":\"Zoom\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] }, { "name" : "Miscellaneous", "function" : [ { "name" : "Input", "label" : "Input", "action" : "{\"command\":\"Input\",\"type\":\"IRCommand\",\"deviceId\":\"29671764\"}" } ] } ], "model" : "Roamio", "deviceProfileUri" : "svcs.myharmony.com/res/device/29671764-cHwNy7hVnn2nv50GTQPDpnpg/vjl6/ggU9YEtQgzbfk=", "manufacturer" : "TiVo", "icon" : "18", "Transport" : 1, "Capabilities" : [ 1, 3, 5, 6, 9, 10 ], "DongleRFID" : 0, "ControlPort" : "7", "IsKeyboardAssociated" : false, "isManualPower" : true }, { "id" : 29671742, "label" : "Vizio TV", "type" : "Television", "suggestedDisplay" : "DEFAULT", "deviceTypeDisplayName" : "Television", "controlGroup" : [ { "name" : "Power", "function" : [ { "name" : "PowerOff", "label" : "Power Off", "action" : "{\"command\":\"PowerOff\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "PowerOn", "label" : "Power On", "action" : "{\"command\":\"PowerOn\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "PowerToggle", "label" : "Power Toggle", "action" : "{\"command\":\"PowerToggle\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NumericBasic", "function" : [ { "name" : "Hyphen", "label" : "-", "action" : "{\"command\":\"-\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number0", "label" : "0", "action" : "{\"command\":\"0\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number1", "label" : "1", "action" : "{\"command\":\"1\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number2", "label" : "2", "action" : "{\"command\":\"2\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number3", "label" : "3", "action" : "{\"command\":\"3\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number4", "label" : "4", "action" : "{\"command\":\"4\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number5", "label" : "5", "action" : "{\"command\":\"5\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number6", "label" : "6", "action" : "{\"command\":\"6\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number7", "label" : "7", "action" : "{\"command\":\"7\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number8", "label" : "8", "action" : "{\"command\":\"8\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Number9", "label" : "9", "action" : "{\"command\":\"9\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "Volume", "function" : [ { "name" : "Mute", "label" : "Mute", "action" : "{\"command\":\"Mute\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "VolumeDown", "label" : "Volume Down", "action" : "{\"command\":\"VolumeDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "VolumeUp", "label" : "Volume Up", "action" : "{\"command\":\"VolumeUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "Channel", "function" : [ { "name" : "PrevChannel", "label" : "Prev Channel", "action" : "{\"command\":\"Last\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "ChannelDown", "label" : "Channel Down", "action" : "{\"command\":\"ChannelDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "ChannelUp", "label" : "Channel Up", "action" : "{\"command\":\"ChannelUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationBasic", "function" : [ { "name" : "DirectionDown", "label" : "Direction Down", "action" : "{\"command\":\"DirectionDown\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "DirectionLeft", "label" : "Direction Left", "action" : "{\"command\":\"DirectionLeft\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "DirectionRight", "label" : "Direction Right", "action" : "{\"command\":\"DirectionRight\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "DirectionUp", "label" : "Direction Up", "action" : "{\"command\":\"DirectionUp\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Select", "label" : "Select", "action" : "{\"command\":\"Ok\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "TransportBasic", "function" : [ { "name" : "Stop", "label" : "Stop", "action" : "{\"command\":\"Stop\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Play", "label" : "Play", "action" : "{\"command\":\"Play\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Rewind", "label" : "Rewind", "action" : "{\"command\":\"Rewind\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Pause", "label" : "Pause", "action" : "{\"command\":\"Pause\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "FastForward", "label" : "Fast Forward", "action" : "{\"command\":\"FastForward\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "TransportRecording", "function" : [ { "name" : "Record", "label" : "Record", "action" : "{\"command\":\"Record\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationDVD", "function" : [ { "name" : "Return", "label" : "Return", "action" : "{\"command\":\"Return\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Menu", "label" : "Menu", "action" : "{\"command\":\"Menu\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationDSTB", "function" : [ { "name" : "List", "label" : "List", "action" : "{\"command\":\"List\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "PictureInPicture", "function" : [ { "name" : "PipToggle", "label" : "Pip Toggle", "action" : "{\"command\":\"Pip\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "ColoredButtons", "function" : [ { "name" : "Green", "label" : "Green", "action" : "{\"command\":\"Green\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Red", "label" : "Red", "action" : "{\"command\":\"Red\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Blue", "label" : "Blue", "action" : "{\"command\":\"Blue\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Yellow", "label" : "Yellow", "action" : "{\"command\":\"Yellow\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "NavigationExtended", "function" : [ { "name" : "Guide", "label" : "Guide", "action" : "{\"command\":\"Guide\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Info", "label" : "Info", "action" : "{\"command\":\"Info\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Exit", "label" : "Exit", "action" : "{\"command\":\"Exit\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] }, { "name" : "Miscellaneous", "function" : [ { "name" : "3D", "label" : "3D", "action" : "{\"command\":\"3D\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Input", "label" : "Input", "action" : "{\"command\":\"Input\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "InputAv1", "label" : "InputAv1", "action" : "{\"command\":\"InputAv1\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "InputComponent1", "label" : "InputComponent1", "action" : "{\"command\":\"InputComponent1\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "InputHdmi1", "label" : "InputHdmi1", "action" : "{\"command\":\"InputHdmi1\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "InputHdmi2", "label" : "InputHdmi2", "action" : "{\"command\":\"InputHdmi2\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "InputHdmi3", "label" : "InputHdmi3", "action" : "{\"command\":\"InputHdmi3\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "InputHdmi4", "label" : "InputHdmi4", "action" : "{\"command\":\"InputHdmi4\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "InputHdmi5", "label" : "InputHdmi5", "action" : "{\"command\":\"InputHdmi5\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "InputRgb", "label" : "InputRgb", "action" : "{\"command\":\"InputRgb\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "InputTv", "label" : "InputTv", "action" : "{\"command\":\"InputTv\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Netflix", "label" : "Netflix", "action" : "{\"command\":\"Netflix\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "VIA", "label" : "VIA", "action" : "{\"command\":\"VIA\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" }, { "name" : "Vudu", "label" : "Vudu", "action" : "{\"command\":\"Vudu\",\"type\":\"IRCommand\",\"deviceId\":\"29671742\"}" } ] } ], "model" : "XVT553SV", "deviceProfileUri" : "svcs.myharmony.com/res/device/29671742-9HMNpQGcFvnY817mshPlkwfIfNJeh9fOEBiQTfwLung=", "manufacturer" : "Vizio", "icon" : "1", "Transport" : 1, "Capabilities" : [ 1, 2, 3, 5, 8, 9, 10, 16, 24, 47 ], "DongleRFID" : 0, "ControlPort" : "7", "IsKeyboardAssociated" : false, "isManualPower" : false } ] } \ No newline at end of file diff --git a/src/main/resources/public/index.html b/src/main/resources/public/index.html index 96549c8..656c3fe 100644 --- a/src/main/resources/public/index.html +++ b/src/main/resources/public/index.html @@ -16,7 +16,7 @@