kbrown01

Results 41 comments of kbrown01

More info is posted here: https://github.com/home-assistant/core/issues/83689 I would assume that pyvzio would have a similar issue if it is calling the REST interface. Specifically: `curl -k -H "Content-Type: application/json" -H...

One additional note/workaround ... you can implement a button to call the key command: `curl -k -H "Content-Type: application/json" -H "AUTH: xxxxxxxxx" -X PUT -d "{\"KEYLIST\": [{\"CODESET\": 7,\"CODE\": 1,\"ACTION\":\"KEYPRESS\"}]}" https://192.168.2.20:7345/key_command/`...

I have successfully found the issue, I will leave it to someone to fix. See https://github.com/exiva/Vizio_SmartCast_API/issues/36 Inputs like HDMI-1, HDMI-2, ... CAST are now hdmi1, hdmi2, ... cast.

As my example shows. You are using hdmi2 and not HDMI-2 and in newer TVs the second one no longer works

@r14n ... are you using Home Assistant? If so, can you show me the YAML code you used for that singular command in something like a shell_command entity. I cannot...

All in the escaping ! i will try that one tomorrow. I add {{ip}}, {{port}}. {{auth}}, {{input}} to make it a little more generic so I can call the shell_command...

@r14n, that shell_command does not work for me. what are the ticks directions? All I get is an error that "hashval$(" file does not exist. I think there are some...

`vizio_source_select: 'hashval=$( curl -s -k -H "Content-Type: application/json" -H "AUTH: {{auth}}" -X GET https://{{ip}}:{{port}}/menu_native/dynamic/tv_settings/devices/current_input | jq --raw-output ".ITEMS[0].HASHVAL" ); curl -k -H "Content-Type: application/json" -H "AUTH: {{auth}}" -X PUT -d...

and ... `Logger: homeassistant.helpers.script.websocket_api_script Source: components/shell_command/__init__.py:81 First occurred: 11:39:41 AM (1 occurrences) Last logged: 11:39:41 AM websocket_api script: Error executing script. Unexpected error for call_service at pos 1: [Errno 2]...

``` service: shell_command.vizio_source_select data: auth: XXXXXXXXXX ip: 192.168.2.20 port: 7345 source: cast ``` `