0.2.0 • Published 7 years ago

lgtv-2012 v0.2.0

Weekly downloads
9
License
MIT
Repository
github
Last release
7 years ago

LG TV 2012 Series Remote

NodeJS module to control LG 2012 Series TV's.

Built specifically to support the homebridge-lgtv-2012 plugin.

Features

  • Power on/off
  • Mute on/off
  • Change volume
  • Get/Set Channel

Install

npm install -g lgtv-2012

Get TV Pairing key

node -e "ip= '172.16.0.10' ;lg=require('lgtv-2012').lgtv;tv=new lg({host:ip});tv.pair_request()

Usage Examples

  • Get/Set Volume:
    this.connect((tv) => {
        tv.get_volume( (volume) => {
            console.log('Channel: ' + volume.level + ' and Mute is ' + volume.mute? 'On':'Off')

            if(volume.mute || volume.level != 10) {
                tv.set_volume(10, null)
            }
        })
    })
  • Get/Set Channel
    this.connect((tv) => {
        tv.get_channel( (channel) => {
            console.log(`Channel: #${channel.number} ${channel.title}`);
            console.log(`Program: ${channel.program}`);
        })
        tv.set_channel(107, null)
    })
  • Turn Off
    this.connect((tv) => {
        tv.turn_off(null)
    })