pyviera icon indicating copy to clipboard operation
pyviera copied to clipboard

.power is actually TV Toggle

Open edent opened this issue 10 years ago • 3 comments

    def power(self):
        self._sendkey('NRC_TV-ONOFF')

https://github.com/tomokas/pyviera/blob/master/viera.py#L41

This doesn't actually turn the TV on or off - it's the equivalent of pressing the "TV" button. That is, it switches the input from AV to TV.

At least, that's what it does on my TV :-)

edent avatar Aug 05 '14 20:08 edent

I can't test this, my TV doesn't support this feature anyway; I'm not sure about @tomokas

wadefletch avatar Aug 06 '14 01:08 wadefletch

I can confirm this. I have a VT30 here. Here's a patch for viera.py:

def power(self):
    self._sendkey('NRC_POWER-ONOFF')

def tv(self):
    self._sendkey('NRC_TV-ONOFF')

fookatchu avatar Nov 12 '14 14:11 fookatchu

This is definitely the case for me as well.

colonelpanic8 avatar Jan 02 '15 18:01 colonelpanic8