@su-thomas/homebridge-webos-tv
Version:
Homebridge plugin for LG webOS TVs
11 lines (9 loc) • 342 B
JavaScript
import * as pictureMode from './settings/pictureMode.js';
import * as soundMode from './settings/soundMode.js';
export const command = 'settings <action>';
export const description = 'Control the TV settings';
export const builder = yargs => {
yargs.command([pictureMode]);
yargs.command([soundMode]);
}
export const handler = () => {};