Skip to content
/ pyviera Public
forked from philipbl/pyviera

Use Python to control Panasonic VIERA TVs.

License

Notifications You must be signed in to change notification settings

c3n/pyviera

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyViera

PyViera allows you control your Panasonic VIERA TV using Python.

Example

from pyviera import Viera, COMMANDS

# List out all possible commands
print(COMMANDS.keys())
print()

# Look for any supported TVs
tvs = Viera.discover()

# Make sure we have at least one
if len(tvs) > 0:
    # Get the first TV that was found
    tv = tvs[0]

    # Send TV commands
    tv.mute()
    tv.vol_up()
    tv.num(5)

else:
    print("No TVs could be found")

Compatibility

According to the description on the app store, the following models are supported:

Panasonic flat-panel TV, 2011/2012/2013/2014/2015 VIERA

Contributors

This is a forked repository, based on tomokas work.

About

Use Python to control Panasonic VIERA TVs.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%