python-lgtv/example.py

11 lines
227 B
Python
Raw Normal View History

2014-07-04 00:39:52 +02:00
from lg import Remote
if __name__ == "__main__":
try:
Remote()
except Remote.NoPairingKey:
key = raw_input('Enter pairing key: ')
remote = Remote(key)
remote.send_command(Remote.VOLUME_UP)