tomokas / pyviera

Control Panasonic VIERA TVs programmatically.
36 stars 13 forks source link

.power is actually TV Toggle #2

Open edent opened 10 years ago

edent commented 10 years ago
    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 :-)

wadefletch commented 10 years ago

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

fookatchu commented 9 years ago

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')
colonelpanic8 commented 9 years ago

This is definitely the case for me as well.