Skip to content
Node.js library for controlling Panasonic Viera TV.
JavaScript
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.gitignore Initial commit Jan 4, 2014
README.md Fixed readme Jan 4, 2014
codes.txt Initial commit Jan 4, 2014
example.js Removed unnecessary import in example Feb 7, 2014
package.json Increment version after pull request Jan 2, 2018
viera.js add empty callback if not given with options Dec 14, 2017

README.md

viera.js

Node.js library for controlling Panasonic Viera TV.

How to use

  1. Require the module and create an instance of module:

    var Viera = require('./viera');
    
    var tv = new Viera('<ip_address>');
  2. Start sending commands! (commands listed in codes.txt)

    tv.sendCommand("menu");
    
    tv.setVolume(20);
    
    tv.setMute(true);
    

tv.getVolume(function(data) { console.log(data); });


You can also chain multiple methods
```js
tv.sendCommand("apps")
  .sendCommand("down")
  .sendCommand("enter")
  .setVolume(25);

You can see an example in example.js

License

The MIT License (MIT)

Copyright (c) 2014 Samuel Matis

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

You can’t perform that action at this time.