Homebridge plugin for LG webOS3 TVs. Just uses tcp-ping instead of ping.
npm install homebridge-webos3-tcpphomebridge-webos3 is a plugin for HomeBridge which allows you to control your webOS3 TV! It should also work with webOS2 TVs.
The idea is that the TV should be controlled completely from the native HomeKit iOS app and Siri, that is why volume appears as a light bulb.
This is a work in progress. Please contribute!_
If you are new to Homebridge, please first read the Homebridge documentation.
If you are running on a Raspberry, you will find a tutorial in the homebridge-punt Wiki.
Install homebridge:
``sh`
sudo npm install -g homebridge
Install homebridge-webos3:
`sh`
sudo npm install -g homebridge-webos3
Add the accessory in config.json in your home directory inside .homebridge.
`js`
{
"accessories": [
{
"accessory": "webos3",
"name": "My webOS tv",
"ip": "192.168.0.40",
"mac": "ab:cd:ef:fe:dc:ba",
"pollingEnabled": true
}
]
}
You also need to enable "mobile tv on" on your tv for the turn on feature to work correctly.
[required]
Should always be "webos3"
- name [required]
Name of your accessory
- ip [required]
ip address of your tv
- mac [required]
Mac address of your tv
- keyFile [optional]
Location to store permission token for your tv
- pollingEnabled [optional]
Wheter the TV state background polling is enabled. Useful for more accurate TV state awareness and HomeKit automation. Default: false
- pollingInterval [optional]
The TV state background polling interval in seconds. Default: 5
- volumeControl` [optional]homebridge-lgtv2 & homebridge-webos2 - the basic idea for the plugin.