-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.js
53 lines (43 loc) · 1.51 KB
/
example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const lgtv = require('./lgtv')
lgtv.connect({
host: '10.0.0.4',
clientKeyFile: './client-key.txt'
})
lgtv.on('connect', () => {
console.log('connected to lgtv but pairing not done')
})
lgtv.on('registered', async () => {
console.log('registered to lgtv - pairing ok')
try {
// Switch to youtube app
const res = await lgtv.request({ uri: 'ssap://com.webos.applicationManager/launch', payload: { id: 'youtube.leanback.v4' } })
console.log('log:debug', 'LGTV response:', res)
// Send the home button
await lgtv.move('HOME')
} catch (error) {
console.log('Error from lgtv:', error)
}
// Subscribe to changes
lgtv.subscribe({ uri: 'ssap://com.webos.service.mrcu/sensor/getSensorData' }, (res) => {
console.log(`Received response: ${JSON.stringify(res)}`)
})
lgtv.subscribe({ uri: 'ssap://com.webos.applicationManager/getForegroundAppInfo' }, (res) => {
console.log(`Received response: ${JSON.stringify(res)}`)
})
lgtv.subscribe('ssap://audio/getVolume', (res) => {
console.log(`Received response: ${JSON.stringify(res)}`)
if (res.changed && res.changed.indexOf('volume') >= 0) {
console.log(`Volume changed: ${res.cause}`)
lgtv.close() // Will reconnect after 5 seconds since reconnect is true
}
if (res.changed && res.changed.indexOf('muted') >= 0) {
console.log(`Mute changed: ${res.muted}`)
}
})
})
lgtv.on('close', () => {
console.log('disconnected from lgtv')
})
lgtv.on('error', (error) => {
console.log('error from lgtv', error)
})