o-lukas / homebridge-smartthings-tv

This is a plugin for Homebridge. It offers some basic functions to control Samsung TVs using the SmartThings API.
https://www.npmjs.com/package/@o-lukas/homebridge-smartthings-tv
MIT License
33 stars 2 forks source link

Getting an error in the log #65

Closed ssllii closed 1 year ago

ssllii commented 1 year ago

Describe Your Problem: Just load this plug-in. After manually adding the TV, I am able to see it on the Home App and actually turn it on/off. However I saw this error message

Logs:

 [smartthings-tv] [Big Li TV] Error when executing setInputSource of capability samsungvd.mediaInputSource: Conflict

Plugin Config:

{
            "token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
            "capabilityLogging": true,
            "registerApplications": true,
            "registerPictureModes": true,
            "registerSoundModes": true,
            "deviceMappings": [
                {
                    "ipAddress": "1"
                }
            ],
            "platform": "smartthings-tv"
        }

Screenshots:

Environment:

o-lukas commented 1 year ago

You have enabled registering application as input sources. You have to make sure that your TV is turned on when starting your HomeBridge instance because the plugin tests which applications are available. To do so it must open every application once and check if it can be opened (see documentation).

So please try to restart your HomeBridge instance while your TV is turned on and check if the error is still there or disable registerApplications if you don't need the applications as input sources.

ssllii commented 1 year ago

FIrst off, thank you for your quick response. I turned on the TV and restarted the server. Now I am getting launchApp error. Also I installed the YouTube TV app and made it a favorite, it is not showing up in the list of apps, only the default apps.

4/18/2023, 10:10:09 AM] [smartthings-tv] [Big Li TV] Registering capabilities for component main [4/18/2023, 10:10:10 AM] Big Li TV B245 is running on port 33217. [4/18/2023, 10:10:10 AM] Please add [Big Li TV B245] manually in Home app. Setup Code: 641-01-274 [4/18/2023, 10:10:12 AM] [smartthings-tv] [Big Li TV] Registering capability: Switch [4/18/2023, 10:10:12 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Mute [4/18/2023, 10:10:12 AM] [smartthings-tv] [Big Li TV] Registering capability: Media Input Source [4/18/2023, 10:10:12 AM] [smartthings-tv] [Big Li TV] Capability Media Input Source might not work as expected because it's status is: proposed [4/18/2023, 10:10:12 AM] [smartthings-tv] [Big Li TV] Registering capability: SoundMode [4/18/2023, 10:10:12 AM] [smartthings-tv] [Big Li TV] Capability SoundMode might not work as expected because it's status is: proposed [4/18/2023, 10:10:12 AM] [smartthings-tv] [Big Li TV] Registering capability: PictureMode [4/18/2023, 10:10:12 AM] [smartthings-tv] [Big Li TV] Capability PictureMode might not work as expected because it's status is: proposed [4/18/2023, 10:10:12 AM] [smartthings-tv] [Big Li TV] Registering capability: launchApp [4/18/2023, 10:10:12 AM] [smartthings-tv] [Big Li TV] Capability launchApp might not work as expected because it's status is: proposed [4/18/2023, 10:10:12 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Volume [4/18/2023, 10:10:14 AM] [smartthings-tv] [Big Li TV] Registering picture mode: Dynamic [4/18/2023, 10:10:14 AM] [smartthings-tv] [Big Li TV] Registering input source: TV [4/18/2023, 10:10:14 AM] [smartthings-tv] [Big Li TV] Registering input source: HDMI 2 [4/18/2023, 10:10:14 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Amplify [4/18/2023, 10:10:14 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Standard [4/18/2023, 10:10:16 AM] [smartthings-tv] [Big Li TV] Registering input source: Netflix [4/18/2023, 10:10:20 AM] [smartthings-tv] [Big Li TV] Registering input source: YouTube [4/18/2023, 10:10:23 AM] [smartthings-tv] [Big Li TV] Registering input source: Prime Video [4/18/2023, 10:10:25 AM] [smartthings-tv] [Big Li TV] Registering input source: Disney+ [4/18/2023, 10:10:28 AM] [smartthings-tv] [Big Li TV] Registering input source: Apple TV [4/18/2023, 10:10:30 AM] [smartthings-tv] [Big Li TV] Registering input source: Apple Music [4/18/2023, 10:10:33 AM] [smartthings-tv] [Big Li TV] Registering input source: Amazon Music [4/18/2023, 10:10:35 AM] [smartthings-tv] [Big Li TV] Registering input source: Spotify [4/18/2023, 10:10:37 AM] [smartthings-tv] [Big Li TV] Registering input source: Deezer [4/18/2023, 10:10:39 AM] [smartthings-tv] [Big Li TV] Registering input source: Steam Link [4/18/2023, 10:10:41 AM] [smartthings-tv] [Big Li TV] Registering input source: Eurosport Player [4/18/2023, 10:10:43 AM] [smartthings-tv] [Big Li TV] Registering input source: EduPedia [4/18/2023, 10:10:45 AM] [smartthings-tv] [Big Li TV] Registering input source: ARTE [4/18/2023, 10:10:47 AM] [smartthings-tv] [Big Li TV] Registering input source: Twitch [4/18/2023, 10:11:42 AM] [smartthings-tv] [Big Li TV] Error when executing launchApp of capability custom.launchapp: Conflict [4/18/2023, 10:11:43 AM] [smartthings-tv] [Big Li TV] Error when executing launchApp of capability custom.launchapp: Conflict [4/18/2023, 10:11:46 AM] [smartthings-tv] [Big Li TV] Error when executing launchApp of capability custom.launchapp: Conflict [4/18/2023, 10:11:51 AM] [smartthings-tv] [Big Li TV] Error when executing launchApp of capability custom.launchapp: Conflict [4/18/2023, 10:11:55 AM] [smartthings-tv] [Big Li TV] Error when executing setInputSource of capability samsungvd.mediaInputSource: Conflict [4/18/2023, 10:11:58 AM] [smartthings-tv] [Big Li TV] Error when executing launchApp of capability custom.launchapp: Conflict

o-lukas commented 1 year ago

According to the log YouTube should be available as an input source so it is kind of strange it is not showing up. You could try to unpair the TV from the Homebridge instance in the settings and try again.

Also I do not really understand why you can not change the input as the same commands are being used to check the existence of the apps on the TV. Did the apps open when you first restarted the Homebridge instance?

Furthermore could you please enable Homebridge debug mode and post the log again so I can check the results from the API.

ssllii commented 1 year ago

It took me an extra day to get back to this since i decided to do a full update on my RPI, including updating nodejs to v18.

I still don't see YoutubeTV listed in the Homekit and sometimes, the tv switches app on me without me taking the phone or the remote. Here is some of the logs:

4/20/2023, 6:49:56 PM] [HB Supervisor] OS: Linux 5.10.103-v7+ arm [4/20/2023, 6:49:56 PM] [HB Supervisor] Node.js v18.16.0 /usr/bin/node [4/20/2023, 6:49:56 PM] [HB Supervisor] Homebridge Path: /usr/lib/node_modules/homebridge/bin/homebridge [4/20/2023, 6:49:56 PM] [HB Supervisor] UI Path: /usr/lib/node_modules/homebridge-config-ui-x/dist/bin/standalone.js [4/20/2023, 6:50:27 PM] [Homebridge UI] Homebridge Config UI X v4.50.2 is listening on :: port 8581 [4/20/2023, 6:50:30 PM] [HB Supervisor] Starting Homebridge with extra flags: -I -D [4/20/2023, 6:50:31 PM] [HB Supervisor] Started Homebridge v1.6.0 with PID: 4064 [4/20/2023, 6:50:37 PM] Loaded config.json with 2 accessories and 9 platforms. [4/20/2023, 6:50:38 PM] Loaded 20 cached accessories from cachedAccessories. [4/20/2023, 6:50:40 PM] --- [4/20/2023, 6:50:52 PM] Disabled plugin: homebridge-alexa@0.6.5 [4/20/2023, 6:50:52 PM] --- [4/20/2023, 6:50:53 PM] Loaded plugin: homebridge-config-ui-x@4.50.2 [4/20/2023, 6:50:53 PM] Registering platform 'homebridge-config-ui-x.config' [4/20/2023, 6:50:53 PM] --- [4/20/2023, 6:50:55 PM] Disabled plugin: homebridge-denon-heos@2.9.7 [4/20/2023, 6:50:55 PM] --- [4/20/2023, 6:50:57 PM] Loaded plugin: homebridge-myq@2.10.2 [4/20/2023, 6:50:57 PM] Registering platform 'homebridge-myq.myQ' [4/20/2023, 6:50:57 PM] --- [4/20/2023, 6:50:58 PM] Loaded plugin: homebridge-nest@4.6.9 [4/20/2023, 6:50:58 PM] Registering platform 'homebridge-nest.Nest' [4/20/2023, 6:50:58 PM] --- [4/20/2023, 6:50:58 PM] The plugin "homebridge-platform-wemo" requires Node.js version of ^14.17.2 || ^16.5.0 which does not satisfy the current Node.js version of v18.16.0. You may need to upgrade your installation of Node.js - see https://homebridge.io/w/JTKEF [4/20/2023, 6:50:59 PM] Loaded plugin: homebridge-platform-wemo@3.3.1 [4/20/2023, 6:50:59 PM] Registering platform 'homebridge-platform-wemo.BelkinWeMo' [4/20/2023, 6:50:59 PM] --- [4/20/2023, 6:51:08 PM] Loaded plugin: homebridge-ring@11.7.5 [4/20/2023, 6:51:08 PM] Registering platform 'homebridge-ring.Ring' [4/20/2023, 6:51:08 PM] --- [4/20/2023, 6:51:10 PM] Loaded plugin: homebridge-tesla@4.2.1 [4/20/2023, 6:51:10 PM] Registering accessory 'homebridge-tesla.Tesla' [4/20/2023, 6:51:10 PM] --- [4/20/2023, 6:51:11 PM] Loaded plugin: homebridge-tplink-smarthome@7.0.1 [4/20/2023, 6:51:11 PM] Registering platform 'homebridge-tplink-smarthome.TplinkSmarthome' [4/20/2023, 6:51:11 PM] --- [4/20/2023, 6:51:13 PM] Loaded plugin: @o-lukas/homebridge-smartthings-tv@1.4.2 [4/20/2023, 6:51:13 PM] Registering platform '@o-lukas/homebridge-smartthings-tv.smartthings-tv' [4/20/2023, 6:51:13 PM] --- [4/20/2023, 6:51:13 PM] Loading 9 platforms... [4/20/2023, 6:51:13 PM] [Belkin WeMo] Initializing BelkinWeMo platform... [4/20/2023, 6:51:13 PM] [Belkin WeMo] Initialising plugin v3.3.1 | Node v18.16.0 | HB v1.6.0... [4/20/2023, 6:51:13 PM] [myQ] Initializing myQ platform... [4/20/2023, 6:51:13 PM] Ignoring config for the platform "DenonAVR" in your config.json as the plugin "homebridge-denon-heos" has been disabled. [4/20/2023, 6:51:13 PM] [TplinkSmarthome] Initializing TplinkSmarthome platform... [4/20/2023, 6:51:13 PM] [TplinkSmarthome] homebridge-tplink-smarthome v7.0.1, node v18.16.0, homebridge v1.6.0, api v2.7 [4/20/2023, 6:51:13 PM] [TplinkSmarthome] config.json: {"name":"TplinkSmarthome","addCustomCharacteristics":true,"deviceTypes":["plug","bulb"],"devices":[{"host":"192.168.0.244"}],"platform":"TplinkSmarthome"} [4/20/2023, 6:51:15 PM] [TplinkSmarthome] config: {"addCustomCharacteristics":true,"switchModels":["HS200","HS210"],"waitTimeUpdate":100,"defaultSendOptions":{"timeout":15000},"discoveryOptions":{"port":0,"broadcast":"255.255.255.255","discoveryInterval":10000,"deviceTypes":["plug","bulb"],"deviceOptions":{"defaultSendOptions":{"timeout":15000},"inUseThreshold":0},"devices":[{"host":"192.168.0.244"}]}} [4/20/2023, 6:51:15 PM] [Nest] Initializing Nest platform... [4/20/2023, 6:51:15 PM] [Ring] Initializing Ring platform...

[4/20/2023, 6:51:15 PM] [smartthings-tv] Initializing smartthings-tv platform... [4/20/2023, 6:51:15 PM] [smartthings-tv] Finished initializing platform: undefined [4/20/2023, 6:51:15 PM] Loading 2 accessories...

[4/20/2023, 6:51:17 PM] [smartthings-tv] Executed didFinishLaunching callback

[4/20/2023, 6:51:17 PM] Homebridge v1.6.0 (HAP v0.11.0) (Homebridge A3E8) is running on port 51682.

[4/20/2023, 6:51:22 PM] [smartthings-tv] Adding new accessory: Big Li TV (8e28f71d-0960-55ed-a22e-4eeb3856bd22) [4/20/2023, 6:51:22 PM] [smartthings-tv] [Big Li TV] Registering capabilities for component main [4/20/2023, 6:51:23 PM] Publishing external accessory (name: Big Li TV, publishInfo: { username: '28:63:23:B9:18:1F', pincode: '*-*-', category: 31, port: undefined, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). [4/20/2023, 6:51:23 PM] Big Li TV B245 is running on port 43781. [4/20/2023, 6:51:23 PM] Please add [Big Li TV B245] manually in Home app. Setup Code: 641-01-274

[4/20/2023, 6:51:25 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "ocf", "version": 1, "status": "proposed", "name": "Ocf", "ephemeral": false, "attributes": { "st": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mndt": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnfv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnhw": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "di": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnsl": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dmv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "n": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmo": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "vid": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmn": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnml": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnpv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnos": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "pi": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "icv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "postOcfCommand": { "name": "postOcfCommand", "arguments": [ { "name": "href", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } }, { "name": "value", "optional": false, "schema": { "title": "JsonObject", "type": "object" } } ] } } } [4/20/2023, 6:51:25 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "switch", "version": 1, "status": "live", "name": "Switch", "ephemeral": false, "attributes": { "switch": { "schema": { "type": "object", "properties": { "value": { "title": "SwitchState", "type": "string", "enum": [ "on", "off" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [ { "command": "on", "value": "on" }, { "command": "off", "value": "off" } ] } }, "commands": { "off": { "name": "off", "arguments": [] }, "on": { "name": "on", "arguments": [] } } } [4/20/2023, 6:51:25 PM] [smartthings-tv] [Big Li TV] Registering capability: Switch [4/20/2023, 6:51:25 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioMute", "version": 1, "status": "live", "name": "Audio Mute", "ephemeral": false, "attributes": { "mute": { "schema": { "type": "object", "properties": { "value": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setMute", "enumCommands": [ { "command": "mute", "value": "muted" }, { "command": "unmute", "value": "unmuted" } ] } }, "commands": { "setMute": { "name": "setMute", "arguments": [ { "name": "state", "optional": false, "schema": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } } ] }, "mute": { "name": "mute", "arguments": [] }, "unmute": { "name": "unmute", "arguments": [] } } } [4/20/2023, 6:51:25 PM] [smartthings-tv] [Big Li TV] Registering capability: Audio Mute [4/20/2023, 6:51:25 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaPlayback", "version": 1, "status": "live", "name": "Media Playback", "ephemeral": false, "attributes": { "supportedPlaybackCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaPlaybackCommands", "enum": [ "pause", "play", "stop", "fastForward", "rewind" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "playbackStatus": { "schema": { "type": "object", "properties": { "value": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding", "buffering" ], "type": "string" } }, "additionalProperties": false, "required": [] }, "setter": "setPlaybackStatus", "enumCommands": [ { "command": "play", "value": "playing" }, { "command": "pause", "value": "paused" }, { "command": "stop", "value": "stopped" }, { "command": "fastForward", "value": "fast forwarding" }, { "command": "rewind", "value": "rewinding" } ] } }, "commands": { "play": { "name": "play", "arguments": [] }, "stop": { "name": "stop", "arguments": [] }, "rewind": { "name": "rewind", "arguments": [] }, "fastForward": { "name": "fastForward", "arguments": [] }, "setPlaybackStatus": { "name": "setPlaybackStatus", "arguments": [ { "name": "status", "optional": false, "schema": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding" ], "type": "string" } } ] }, "pause": { "name": "pause", "arguments": [] } } } [4/20/2023, 6:51:25 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaTrackControl", "version": 1, "status": "live", "name": "Media Track Control", "ephemeral": false, "attributes": { "supportedTrackControlCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaTrackCommands", "enum": [ "previousTrack", "nextTrack" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "previousTrack": { "name": "previousTrack", "arguments": [] }, "nextTrack": { "name": "nextTrack", "arguments": [] } } } [4/20/2023, 6:51:25 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.picturemode", "version": 1, "status": "proposed", "name": "PictureMode", "ephemeral": false, "attributes": { "pictureMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModes": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setPictureMode": { "name": "setPictureMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/20/2023, 6:51:25 PM] [smartthings-tv] [Big Li TV] Registering capability: PictureMode [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.soundmode", "version": 1, "status": "proposed", "name": "SoundMode", "ephemeral": false, "attributes": { "supportedSoundModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "soundMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedSoundModes": { "schema": { "type": "object", "properties": { "value": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setSoundMode": { "name": "setSoundMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Registering capability: SoundMode [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.launchapp", "version": 1, "status": "proposed", "name": "launchApp", "ephemeral": false, "attributes": {}, "commands": { "launchApp": { "name": "launchApp", "arguments": [ { "name": "appId", "optional": true, "schema": { "type": "string" } }, { "name": "appName", "optional": true, "schema": { "type": "string" } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Registering capability: launchApp [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.disabledCapabilities", "version": 1, "status": "proposed", "name": "Disabled Capabilities", "ephemeral": false, "attributes": { "disabledCapabilities": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/20/2023, 6:51:25 PM] [smartthings-tv] [Big Li TV] Capability PictureMode might not work as expected because it's status is: proposed [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Capability SoundMode might not work as expected because it's status is: proposed [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Capability launchApp might not work as expected because it's status is: proposed [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioVolume", "version": 1, "status": "live", "name": "Audio Volume", "ephemeral": false, "attributes": { "volume": { "schema": { "title": "IntegerPercent", "type": "object", "properties": { "value": { "type": "integer", "minimum": 0, "maximum": 100 }, "unit": { "type": "string", "enum": [ "%" ], "default": "%" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setVolume", "enumCommands": [] } }, "commands": { "volumeDown": { "name": "volumeDown", "arguments": [] }, "volumeUp": { "name": "volumeUp", "arguments": [] }, "setVolume": { "name": "setVolume", "arguments": [ { "name": "volume", "optional": false, "schema": { "type": "integer", "minimum": 0, "maximum": 100 } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Registering capability: Audio Volume [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "tvChannel", "version": 1, "status": "proposed", "name": "Tv Channel", "ephemeral": false, "attributes": { "tvChannel": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannel", "enumCommands": [] }, "tvChannelName": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannelName", "enumCommands": [] } }, "commands": { "channelDown": { "name": "channelDown", "arguments": [] }, "setTvChannel": { "name": "setTvChannel", "arguments": [ { "name": "tvChannel", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] }, "channelUp": { "name": "channelUp", "arguments": [] }, "setTvChannelName": { "name": "setTvChannelName", "arguments": [ { "name": "tvChannelName", "optional": true, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaInputSource", "version": 1, "status": "live", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSources": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setInputSource", "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "mode", "optional": false, "schema": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "powerConsumptionReport", "version": 1, "status": "live", "name": "Power Consumption Report", "ephemeral": false, "attributes": { "powerConsumption": { "schema": { "type": "object", "properties": { "value": { "properties": { "deltaEnergy": { "type": "number" }, "end": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "start": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "energySaved": { "type": "number" }, "persistedSavedEnergy": { "type": "number" }, "energy": { "type": "number" }, "power": { "type": "number" }, "powerEnergy": { "type": "number" }, "persistedEnergy": { "type": "number" } }, "additionalProperties": false, "title": "PowerConsumption", "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.error", "version": 1, "status": "proposed", "name": "Error", "ephemeral": false, "attributes": { "error": { "schema": { "type": "object", "properties": { "value": { "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setError": { "name": "setError", "arguments": [ { "name": "error", "optional": false, "schema": { "type": "object" } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.accessibility", "version": 1, "status": "proposed", "name": "Accessibility", "ephemeral": false, "attributes": {}, "commands": { "setAccessibility": { "name": "setAccessibility", "arguments": [ { "name": "menuName", "optional": false, "schema": { "type": "string" } }, { "name": "menuId", "optional": false, "schema": { "type": "string" } }, { "name": "option", "optional": true, "schema": { "type": "string" } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.recording", "version": 1, "status": "proposed", "name": "Recording", "ephemeral": false, "attributes": {}, "commands": { "recordStart": { "name": "recordStart", "arguments": [] }, "recordStop": { "name": "recordStop", "arguments": [] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.tvsearch", "version": 1, "status": "proposed", "name": "tvSearch", "ephemeral": false, "attributes": {}, "commands": { "search": { "name": "search", "arguments": [ { "name": "query", "optional": false, "schema": { "type": "string" } }, { "name": "url", "optional": false, "schema": { "type": "string" } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.remoteControl", "version": 1, "status": "proposed", "name": "Remote Control", "ephemeral": false, "attributes": {}, "commands": { "send": { "name": "send", "arguments": [ { "name": "keyValue", "optional": false, "schema": { "type": "string", "enum": [ "UP", "DOWN", "LEFT", "RIGHT", "OK", "BACK", "MENU", "HOME" ] } }, { "name": "keyState", "optional": true, "schema": { "type": "string", "enum": [ "PRESSED", "RELEASED", "PRESS_AND_RELEASED" ] } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambient", "version": 1, "status": "proposed", "name": "Ambient", "ephemeral": false, "attributes": {}, "commands": { "setAmbientOn": { "name": "setAmbientOn", "arguments": [] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambientContent", "version": 1, "status": "proposed", "name": "Ambient Content", "ephemeral": false, "attributes": { "supportedAmbientApps": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setAmbientContent": { "name": "setAmbientContent", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungim.fixedFindNode", "version": 1, "status": "proposed", "name": "Fixed Find Node", "ephemeral": false, "attributes": {}, "commands": { "refresh": { "name": "refresh", "arguments": [] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "refresh", "version": 1, "status": "live", "name": "Refresh", "ephemeral": false, "attributes": {}, "commands": { "refresh": { "name": "refresh", "arguments": [] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.firmwareVersion", "version": 1, "status": "proposed", "name": "Firmware Version", "ephemeral": false, "attributes": { "firmwareVersion": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setFirmwareVersion": { "name": "setFirmwareVersion", "arguments": [ { "name": "version", "optional": false, "schema": { "type": "string" } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.supportsPowerOnByOcf", "version": 1, "status": "proposed", "name": "Supports Power On By OCF", "ephemeral": false, "attributes": { "supportsPowerOnByOcf": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "true", "false" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "sec.diagnosticsInformation", "version": 1, "status": "proposed", "name": "Diagnostics Information", "ephemeral": false, "attributes": { "logType": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "title": "logType", "type": "string", "enum": [ "errCode", "dump" ] } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "endpoint": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "NONE", "PIPER", "SSM" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "minVersion": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "signinPermission": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "immutable", "updating", "enabled", "disabled" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "setupId": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "protocolType": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "ble_ocf", "wifi_https", "ble_stdk", "wifi_stdk" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnId": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dumpType": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "file", "id" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.mediaInputSource", "version": 1, "status": "proposed", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSourcesMap": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "required": [] } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Registering capability: Media Input Source [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Capability Media Input Source might not work as expected because it's status is: proposed [4/20/2023, 6:51:26 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.supportsFeatures", "version": 1, "status": "proposed", "name": "Supports Features", "ephemeral": false, "attributes": { "imeAdvSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mobileCamSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} }

[4/20/2023, 6:51:27 PM] [smartthings-tv] [Big Li TV] Available capability: { "id": "execute", "version": 1, "status": "live", "name": "Execute", "ephemeral": false, "attributes": { "data": { "schema": { "type": "object", "properties": { "value": { "title": "JsonObject", "type": "object" }, "data": { "type": "object", "additionalProperties": true, "required": [] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "execute": { "name": "execute", "arguments": [ { "name": "command", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } }, { "name": "args", "optional": true, "schema": { "title": "JsonObject", "type": "object" } } ] } } }

[4/20/2023, 6:51:29 PM] [smartthings-tv] [Big Li TV] Registering input source: Netflix [4/20/2023, 6:51:29 PM] [smartthings-tv] [Big Li TV] Registering picture mode: Dynamic [4/20/2023, 6:51:30 PM] [smartthings-tv] [Big Li TV] Registering sound mode: Amplify [4/20/2023, 6:51:30 PM] [smartthings-tv] [Big Li TV] Registering sound mode: Standard

[4/20/2023, 6:51:32 PM] [smartthings-tv] [Big Li TV] Registering input source: TV [4/20/2023, 6:51:32 PM] [smartthings-tv] [Big Li TV] Registering input source: HDMI 2 [4/20/2023, 6:51:32 PM] [smartthings-tv] [Big Li TV] Registering input source: YouTube

[4/20/2023, 6:51:33 PM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-21T00:57:54.745Z" } } [4/20/2023, 6:51:33 PM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-21T01:47:59.384Z" } } [4/20/2023, 6:51:33 PM] [smartthings-tv] [Big Li TV] ActiveIdentifier has been changed on the device - using API result: 2 [4/20/2023, 6:51:33 PM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/20/2023, 6:51:33 PM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/20/2023, 6:51:33 PM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/20/2023, 6:51:33 PM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } }

[4/20/2023, 6:51:34 PM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/20/2023, 6:51:34 PM] [smartthings-tv] [Big Li TV] Registering input source: Prime Video

[4/20/2023, 6:51:38 PM] [smartthings-tv] [Big Li TV] Registering input source: Disney+

[4/20/2023, 6:51:39 PM] [smartthings-tv] [Big Li TV] Registering input source: Apple TV [4/20/2023, 6:51:40 PM] [smartthings-tv] [Big Li TV] Registering input source: Apple Music [4/20/2023, 6:51:41 PM] [smartthings-tv] [Big Li TV] Registering input source: Amazon Music [4/20/2023, 6:51:42 PM] [smartthings-tv] [Big Li TV] Registering input source: Spotify [4/20/2023, 6:51:43 PM] [smartthings-tv] [Big Li TV] Registering input source: Deezer [4/20/2023, 6:51:44 PM] [smartthings-tv] [Big Li TV] Registering input source: Steam Link [4/20/2023, 6:51:45 PM] [smartthings-tv] [Big Li TV] Registering input source: Eurosport Player [4/20/2023, 6:51:45 PM] [smartthings-tv] [Big Li TV] Registering input source: EduPedia [4/20/2023, 6:51:46 PM] [smartthings-tv] [Big Li TV] Registering input source: ARTE [4/20/2023, 6:51:47 PM] [smartthings-tv] [Big Li TV] Registering input source: Twitch [4/20/2023, 6:51:47 PM] [smartthings-tv] [Big Li TV] Set active identifier to: 0

[4/20/2023, 6:51:48 PM] [smartthings-tv] [Big Li TV] Successfully executed command launchApp of capability custom.launchapp

[4/20/2023, 6:52:03 PM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/20/2023, 6:52:03 PM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/20/2023, 6:52:03 PM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/20/2023, 6:52:03 PM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-21T01:47:59.384Z" } } [4/20/2023, 6:52:03 PM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 0 [4/20/2023, 6:52:03 PM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/20/2023, 6:52:03 PM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/20/2023, 6:52:03 PM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-21T00:57:54.745Z" } }

o-lukas commented 1 year ago

I mistook YouTube and YouTubeTV for the same application...I added the application id for YouTubeTV now so you should see the application after updating the plugin to v1.4.3.

The random changes of applications should only happen when starting the plugin. But you can check if these random switches are caused by the plugin by checking the log for outputs Set active identifier to: which indicate changes of the current application/input. If there is an log entry with matching timestamp please let me know again.

ssllii commented 1 year ago

I updated to v1.4.3. The current behavior is on HomeKit, I see the power on/off, 3 switches labeled "Big Li TV". A scroll wheel that has Netflix and maybe 3 more entries of "Big Li TV". While I had the TV on and monitoring the HomeKit screen and reviewing logs, it did switch t Samsung Plus by itself. The logs contain a few rounds, some caused by me doing hb-service stop/start, some caused by crash , definitely seen some: [4/22/2023, 8:01:26 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 2 [4/22/2023, 8:01:27 AM] [smartthings-tv] [Big Li TV] Successfully executed command setInputSource of capability samsungvd.mediaInputSource [4/22/2023, 8:01:27 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 0 [4/22/2023, 8:01:28 AM] [smartthings-tv] [Big Li TV] Successfully executed command launchApp of capability custom.launchapp

a couple times causing a SIGTERM: 4/22/2023, 7:52:50 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 0 [4/22/2023, 7:52:50 AM] TypeError: Cannot read properties of undefined (reading 'getCharacteristic') at TvAccessory.setActiveIdentifier (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:269:41) at TvAccessory.registerAvailableLaunchApplications (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:490:10) at processTicksAndRejections (node:internal/process/task_queues:95:5) at TvAccessory.registerCapability (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:136:11) at TvAccessory.registerCapabilities (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:78:7) [4/22/2023, 7:52:50 AM] Got SIGTERM, shutting down Homebridge...

Here is the complete log , after filtering out other plug-ins:

[4/22/2023, 7:50:43 AM] [HB Supervisor] OS: Linux 5.10.103-v7+ arm [4/22/2023, 7:50:43 AM] [HB Supervisor] Node.js v18.16.0 /usr/bin/node [4/22/2023, 7:50:43 AM] [HB Supervisor] Homebridge Path: /usr/lib/node_modules/homebridge/bin/homebridge [4/22/2023, 7:50:43 AM] [HB Supervisor] UI Path: /usr/lib/node_modules/homebridge-config-ui-x/dist/bin/standalone.js [4/22/2023, 7:51:23 AM] [Homebridge UI] Homebridge Config UI X v4.50.2 is listening on :: port 8581 [4/22/2023, 7:51:24 AM] [HB Supervisor] Starting Homebridge with extra flags: -I -D [4/22/2023, 7:51:24 AM] [HB Supervisor] Started Homebridge v1.6.0 with PID: 1531 [4/22/2023, 7:51:29 AM] Loaded config.json with 2 accessories and 9 platforms. [4/22/2023, 7:51:29 AM] Loaded 20 cached accessories from cachedAccessories. [4/22/2023, 7:51:31 AM] --- [4/22/2023, 7:51:42 AM] Disabled plugin: homebridge-alexa@0.6.5 [4/22/2023, 7:51:42 AM] --- [4/22/2023, 7:51:42 AM] Loaded plugin: homebridge-config-ui-x@4.50.2 [4/22/2023, 7:51:42 AM] Registering platform 'homebridge-config-ui-x.config' [4/22/2023, 7:51:42 AM] --- [4/22/2023, 7:51:44 AM] Disabled plugin: homebridge-denon-heos@2.9.7 [4/22/2023, 7:51:44 AM] --- [4/22/2023, 7:51:48 AM] Loaded plugin: homebridge-myq@2.11.1 [4/22/2023, 7:51:48 AM] Registering platform 'homebridge-myq.myQ' [4/22/2023, 7:51:48 AM] --- [4/22/2023, 7:51:50 AM] Loaded plugin: homebridge-nest@4.6.9 [4/22/2023, 7:51:51 AM] Registering platform 'homebridge-nest.Nest' [4/22/2023, 7:51:51 AM] --- [4/22/2023, 7:51:51 AM] The plugin "homebridge-platform-wemo" requires Node.js version of ^14.17.2 || ^16.5.0 which does not satisfy the current Node.js version of v18.16.0. You may need to upgrade your installation of Node.js - see https://homebridge.io/w/JTKEF [4/22/2023, 7:51:52 AM] Loaded plugin: homebridge-platform-wemo@3.3.1 [4/22/2023, 7:51:52 AM] Registering platform 'homebridge-platform-wemo.BelkinWeMo' [4/22/2023, 7:51:52 AM] --- [4/22/2023, 7:52:09 AM] Loaded plugin: homebridge-ring@11.7.5 [4/22/2023, 7:52:09 AM] Registering platform 'homebridge-ring.Ring' [4/22/2023, 7:52:09 AM] --- [4/22/2023, 7:52:12 AM] Loaded plugin: homebridge-tesla@4.2.1 [4/22/2023, 7:52:12 AM] Registering accessory 'homebridge-tesla.Tesla' [4/22/2023, 7:52:12 AM] --- [4/22/2023, 7:52:13 AM] Loaded plugin: homebridge-tplink-smarthome@7.0.1 [4/22/2023, 7:52:13 AM] Registering platform 'homebridge-tplink-smarthome.TplinkSmarthome' [4/22/2023, 7:52:13 AM] --- [4/22/2023, 7:52:16 AM] Loaded plugin: @o-lukas/homebridge-smartthings-tv@1.4.3 [4/22/2023, 7:52:16 AM] Registering platform '@o-lukas/homebridge-smartthings-tv.smartthings-tv' [4/22/2023, 7:52:16 AM] --- [4/22/2023, 7:52:16 AM] Loading 9 platforms... [4/22/2023, 7:52:16 AM] [Belkin WeMo] Initializing BelkinWeMo platform... [4/22/2023, 7:52:16 AM] [Belkin WeMo] Initialising plugin v3.3.1 | Node v18.16.0 | HB v1.6.0... [4/22/2023, 7:52:16 AM] [myQ] Initializing myQ platform... [4/22/2023, 7:52:16 AM] Ignoring config for the platform "DenonAVR" in your config.json as the plugin "homebridge-denon-heos" has been disabled. [4/22/2023, 7:52:16 AM] [TplinkSmarthome] Initializing TplinkSmarthome platform... [4/22/2023, 7:52:16 AM] [TplinkSmarthome] homebridge-tplink-smarthome v7.0.1, node v18.16.0, homebridge v1.6.0, api v2.7 [4/22/2023, 7:52:16 AM] [TplinkSmarthome] config.json: {"name":"TplinkSmarthome","addCustomCharacteristics":true,"deviceTypes":["plug","bulb"],"devices":[{"host":"192.168.0.244"}],"platform":"TplinkSmarthome"} [4/22/2023, 7:52:17 AM] [TplinkSmarthome] config: {"addCustomCharacteristics":true,"switchModels":["HS200","HS210"],"waitTimeUpdate":100,"defaultSendOptions":{"timeout":15000},"discoveryOptions":{"port":0,"broadcast":"255.255.255.255","discoveryInterval":10000,"deviceTypes":["plug","bulb"],"deviceOptions":{"defaultSendOptions":{"timeout":15000},"inUseThreshold":0},"devices":[{"host":"192.168.0.244"}]}} [4/22/2023, 7:52:17 AM] [Nest] Initializing Nest platform... [4/22/2023, 7:52:17 AM] [Ring] Initializing Ring platform... [4/22/2023, 7:52:17 AM] Ignoring config for the platform "Alexa" in your config.json as the plugin "homebridge-alexa" has been disabled. [4/22/2023, 7:52:17 AM] [smartthings-tv] Initializing smartthings-tv platform... [4/22/2023, 7:52:17 AM] [smartthings-tv] Finished initializing platform: undefined [4/22/2023, 7:52:18 AM] [Belkin WeMo] Plugin initialised. Setting up accessories.... [4/22/2023, 7:52:18 AM] [Belkin WeMo] [4/22/2023, 7:52:18 AM] [Belkin WeMo] This project has moved to homebridge-wemo [4/22/2023, 7:52:18 AM] [Belkin WeMo] You will need to uninstall this plugin and install homebridge-wemo [4/22/2023, 7:52:18 AM] [Belkin WeMo] https://github.com/bwp91/homebridge-platform-wemo/blob/latest/README.md [4/22/2023, 7:52:18 AM] [Belkin WeMo] [4/22/2023, 7:52:18 AM] [TplinkSmarthome] didFinishLaunching [4/22/2023, 7:52:18 AM] [TplinkSmarthome.API] client.startDiscovery({"port":0,"broadcast":"255.255.255.255","discoveryInterval":10000,"deviceTypes":["plug","bulb"],"deviceOptions":{"defaultSendOptions":{"timeout":15000},"inUseThreshold":0},"devices":[{"host":"192.168.0.244"}]}) [4/22/2023, 7:52:18 AM] [TplinkSmarthome] refreshEmeter() [4/22/2023, 7:52:18 AM] [Nest] Fetching Nest devices. [4/22/2023, 7:52:18 AM] [Nest] Authenticating via Google. [4/22/2023, 7:52:19 AM] [Ring] didFinishLaunching [4/22/2023, 7:52:19 AM] [smartthings-tv] Executed didFinishLaunching callback [4/22/2023, 7:52:19 AM] [TplinkSmarthome] Scheduling next run of refreshEmeter() in 10000(ms) [4/22/2023, 7:52:19 AM] Publishing bridge accessory (name: Homebridge A3E8, publishInfo: { username: '0E:E7:5E:25:9C:33', port: 51682, pincode: '*-*-', category: 2, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). Setup Payload: X-HM://0024J3GYIEKB2 Enter this code with your HomeKit app on your iOS device to pair with Homebridge:

┌────────────┐     
│ 641-01-274 │     
└────────────┘     

[4/22/2023, 7:52:19 AM] Homebridge v1.6.0 (HAP v0.11.0) (Homebridge A3E8) is running on port 51682. [4/22/2023, 7:52:22 AM] [smartthings-tv] Adding new accessory: Big Li TV (8e28f71d-0960-55ed-a22e-4eeb3856bd22) [4/22/2023, 7:52:22 AM] [smartthings-tv] [Big Li TV] Registering capabilities for component main [4/22/2023, 7:52:22 AM] Publishing external accessory (name: Big Li TV, publishInfo: { username: '28:63:23:B9:18:1F', pincode: '*-*-', category: 31, port: undefined, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). [4/22/2023, 7:52:22 AM] Big Li TV B245 is running on port 42805. [4/22/2023, 7:52:22 AM] Please add [Big Li TV B245] manually in Home app. Setup Code: 641-01-274 [4/22/2023, 7:52:24 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "ocf", "version": 1, "status": "proposed", "name": "Ocf", "ephemeral": false, "attributes": { "st": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mndt": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnfv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnhw": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "di": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnsl": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dmv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "n": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmo": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "vid": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmn": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnml": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnpv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnos": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "pi": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "icv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "postOcfCommand": { "name": "postOcfCommand", "arguments": [ { "name": "href", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } }, { "name": "value", "optional": false, "schema": { "title": "JsonObject", "type": "object" } } ] } } } [4/22/2023, 7:52:25 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "switch", "version": 1, "status": "live", "name": "Switch", "ephemeral": false, "attributes": { "switch": { "schema": { "type": "object", "properties": { "value": { "title": "SwitchState", "type": "string", "enum": [ "on", "off" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [ { "command": "on", "value": "on" }, { "command": "off", "value": "off" } ] } }, "commands": { "off": { "name": "off", "arguments": [] }, "on": { "name": "on", "arguments": [] } } } [4/22/2023, 7:52:25 AM] [smartthings-tv] [Big Li TV] Registering capability: Switch [4/22/2023, 7:52:26 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioVolume", "version": 1, "status": "live", "name": "Audio Volume", "ephemeral": false, "attributes": { "volume": { "schema": { "title": "IntegerPercent", "type": "object", "properties": { "value": { "type": "integer", "minimum": 0, "maximum": 100 }, "unit": { "type": "string", "enum": [ "%" ], "default": "%" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setVolume", "enumCommands": [] } }, "commands": { "volumeDown": { "name": "volumeDown", "arguments": [] }, "volumeUp": { "name": "volumeUp", "arguments": [] }, "setVolume": { "name": "setVolume", "arguments": [ { "name": "volume", "optional": false, "schema": { "type": "integer", "minimum": 0, "maximum": 100 } } ] } } } [4/22/2023, 7:52:26 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Volume [4/22/2023, 7:52:26 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } } [4/22/2023, 7:52:27 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioMute", "version": 1, "status": "live", "name": "Audio Mute", "ephemeral": false, "attributes": { "mute": { "schema": { "type": "object", "properties": { "value": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setMute", "enumCommands": [ { "command": "mute", "value": "muted" }, { "command": "unmute", "value": "unmuted" } ] } }, "commands": { "setMute": { "name": "setMute", "arguments": [ { "name": "state", "optional": false, "schema": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } } ] }, "mute": { "name": "mute", "arguments": [] }, "unmute": { "name": "unmute", "arguments": [] } } } [4/22/2023, 7:52:27 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Mute [4/22/2023, 7:52:31 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "tvChannel", "version": 1, "status": "proposed", "name": "Tv Channel", "ephemeral": false, "attributes": { "tvChannel": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannel", "enumCommands": [] }, "tvChannelName": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannelName", "enumCommands": [] } }, "commands": { "channelDown": { "name": "channelDown", "arguments": [] }, "setTvChannel": { "name": "setTvChannel", "arguments": [ { "name": "tvChannel", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] }, "channelUp": { "name": "channelUp", "arguments": [] }, "setTvChannelName": { "name": "setTvChannelName", "arguments": [ { "name": "tvChannelName", "optional": true, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] } } } [4/22/2023, 7:52:32 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaInputSource", "version": 1, "status": "live", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSources": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setInputSource", "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "mode", "optional": false, "schema": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } } ] } } } [4/22/2023, 7:52:32 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:52:32 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } } [4/22/2023, 7:52:32 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:52:32 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaPlayback", "version": 1, "status": "live", "name": "Media Playback", "ephemeral": false, "attributes": { "supportedPlaybackCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaPlaybackCommands", "enum": [ "pause", "play", "stop", "fastForward", "rewind" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "playbackStatus": { "schema": { "type": "object", "properties": { "value": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding", "buffering" ], "type": "string" } }, "additionalProperties": false, "required": [] }, "setter": "setPlaybackStatus", "enumCommands": [ { "command": "play", "value": "playing" }, { "command": "pause", "value": "paused" }, { "command": "stop", "value": "stopped" }, { "command": "fastForward", "value": "fast forwarding" }, { "command": "rewind", "value": "rewinding" } ] } }, "commands": { "play": { "name": "play", "arguments": [] }, "stop": { "name": "stop", "arguments": [] }, "rewind": { "name": "rewind", "arguments": [] }, "fastForward": { "name": "fastForward", "arguments": [] }, "setPlaybackStatus": { "name": "setPlaybackStatus", "arguments": [ { "name": "status", "optional": false, "schema": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding" ], "type": "string" } } ] }, "pause": { "name": "pause", "arguments": [] } } } [4/22/2023, 7:52:33 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaTrackControl", "version": 1, "status": "live", "name": "Media Track Control", "ephemeral": false, "attributes": { "supportedTrackControlCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaTrackCommands", "enum": [ "previousTrack", "nextTrack" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "previousTrack": { "name": "previousTrack", "arguments": [] }, "nextTrack": { "name": "nextTrack", "arguments": [] } } } [4/22/2023, 7:52:33 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "powerConsumptionReport", "version": 1, "status": "live", "name": "Power Consumption Report", "ephemeral": false, "attributes": { "powerConsumption": { "schema": { "type": "object", "properties": { "value": { "properties": { "deltaEnergy": { "type": "number" }, "end": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "start": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "energySaved": { "type": "number" }, "persistedSavedEnergy": { "type": "number" }, "energy": { "type": "number" }, "power": { "type": "number" }, "powerEnergy": { "type": "number" }, "persistedEnergy": { "type": "number" } }, "additionalProperties": false, "title": "PowerConsumption", "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:52:34 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.error", "version": 1, "status": "proposed", "name": "Error", "ephemeral": false, "attributes": { "error": { "schema": { "type": "object", "properties": { "value": { "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setError": { "name": "setError", "arguments": [ { "name": "error", "optional": false, "schema": { "type": "object" } } ] } } } [4/22/2023, 7:52:34 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.picturemode", "version": 1, "status": "proposed", "name": "PictureMode", "ephemeral": false, "attributes": { "pictureMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModes": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setPictureMode": { "name": "setPictureMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:52:34 AM] [smartthings-tv] [Big Li TV] Registering capability: PictureMode [4/22/2023, 7:52:34 AM] [smartthings-tv] [Big Li TV] Capability PictureMode might not work as expected because it's status is: proposed [4/22/2023, 7:52:35 AM] [smartthings-tv] [Big Li TV] Registering picture mode: Dynamic [4/22/2023, 7:52:35 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.soundmode", "version": 1, "status": "proposed", "name": "SoundMode", "ephemeral": false, "attributes": { "supportedSoundModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "soundMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedSoundModes": { "schema": { "type": "object", "properties": { "value": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setSoundMode": { "name": "setSoundMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:52:35 AM] [smartthings-tv] [Big Li TV] Registering capability: SoundMode [4/22/2023, 7:52:35 AM] [smartthings-tv] [Big Li TV] Capability SoundMode might not work as expected because it's status is: proposed [4/22/2023, 7:52:36 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Amplify [4/22/2023, 7:52:36 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Standard [4/22/2023, 7:52:37 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.accessibility", "version": 1, "status": "proposed", "name": "Accessibility", "ephemeral": false, "attributes": {}, "commands": { "setAccessibility": { "name": "setAccessibility", "arguments": [ { "name": "menuName", "optional": false, "schema": { "type": "string" } }, { "name": "menuId", "optional": false, "schema": { "type": "string" } }, { "name": "option", "optional": true, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:52:37 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.launchapp", "version": 1, "status": "proposed", "name": "launchApp", "ephemeral": false, "attributes": {}, "commands": { "launchApp": { "name": "launchApp", "arguments": [ { "name": "appId", "optional": true, "schema": { "type": "string" } }, { "name": "appName", "optional": true, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:52:37 AM] [smartthings-tv] [Big Li TV] Registering capability: launchApp [4/22/2023, 7:52:37 AM] [smartthings-tv] [Big Li TV] Capability launchApp might not work as expected because it's status is: proposed

[4/22/2023, 7:52:46 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:52:46 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:52:46 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } }

[4/22/2023, 7:52:46 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:52:46 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:52:46 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } }

[4/22/2023, 7:52:50 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 0 [4/22/2023, 7:52:50 AM] TypeError: Cannot read properties of undefined (reading 'getCharacteristic') at TvAccessory.setActiveIdentifier (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:269:41) at TvAccessory.registerAvailableLaunchApplications (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:490:10) at processTicksAndRejections (node:internal/process/task_queues:95:5) at TvAccessory.registerCapability (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:136:11) at TvAccessory.registerCapabilities (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:78:7) [4/22/2023, 7:52:50 AM] Got SIGTERM, shutting down Homebridge... [4/22/2023, 7:52:51 AM] [TplinkSmarthome] shutdown [4/22/2023, 7:52:51 AM] [TplinkSmarthome.API] client.stopDiscovery() [4/22/2023, 7:52:51 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.recording", "version": 1, "status": "proposed", "name": "Recording", "ephemeral": false, "attributes": {}, "commands": { "recordStart": { "name": "recordStart", "arguments": [] }, "recordStop": { "name": "recordStop", "arguments": [] } } } [4/22/2023, 7:52:51 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.tvsearch", "version": 1, "status": "proposed", "name": "tvSearch", "ephemeral": false, "attributes": {}, "commands": { "search": { "name": "search", "arguments": [ { "name": "query", "optional": false, "schema": { "type": "string" } }, { "name": "url", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:52:52 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.disabledCapabilities", "version": 1, "status": "proposed", "name": "Disabled Capabilities", "ephemeral": false, "attributes": { "disabledCapabilities": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:52:52 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.remoteControl", "version": 1, "status": "proposed", "name": "Remote Control", "ephemeral": false, "attributes": {}, "commands": { "send": { "name": "send", "arguments": [ { "name": "keyValue", "optional": false, "schema": { "type": "string", "enum": [ "UP", "DOWN", "LEFT", "RIGHT", "OK", "BACK", "MENU", "HOME" ] } }, { "name": "keyState", "optional": true, "schema": { "type": "string", "enum": [ "PRESSED", "RELEASED", "PRESS_AND_RELEASED" ] } } ] } } } [4/22/2023, 7:52:53 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambient", "version": 1, "status": "proposed", "name": "Ambient", "ephemeral": false, "attributes": {}, "commands": { "setAmbientOn": { "name": "setAmbientOn", "arguments": [] } } } [4/22/2023, 7:52:53 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambientContent", "version": 1, "status": "proposed", "name": "Ambient Content", "ephemeral": false, "attributes": { "supportedAmbientApps": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setAmbientContent": { "name": "setAmbientContent", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:52:54 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.mediaInputSource", "version": 1, "status": "proposed", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSourcesMap": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "required": [] } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:52:54 AM] [smartthings-tv] [Big Li TV] Registering capability: Media Input Source [4/22/2023, 7:52:54 AM] [smartthings-tv] [Big Li TV] Capability Media Input Source might not work as expected because it's status is: proposed [4/22/2023, 7:52:54 AM] [smartthings-tv] [Big Li TV] Registering input source: TV [4/22/2023, 7:52:55 AM] [smartthings-tv] [Big Li TV] Registering input source: HDMI 2 [4/22/2023, 7:52:55 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.supportsFeatures", "version": 1, "status": "proposed", "name": "Supports Features", "ephemeral": false, "attributes": { "imeAdvSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mobileCamSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:52:55 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungim.fixedFindNode", "version": 1, "status": "proposed", "name": "Fixed Find Node", "ephemeral": false, "attributes": {}, "commands": { "refresh": { "name": "refresh", "arguments": [] } } } [4/22/2023, 7:52:56 AM] [HB Supervisor] Homebridge Process Ended. Code: 143, Signal: null [4/22/2023, 7:53:01 AM] [HB Supervisor] Restarting Homebridge... [4/22/2023, 7:53:01 AM] [HB Supervisor] Starting Homebridge with extra flags: -I -D [4/22/2023, 7:53:01 AM] [HB Supervisor] Started Homebridge v1.6.0 with PID: 2435 [4/22/2023, 7:53:07 AM] Loaded config.json with 2 accessories and 9 platforms. [4/22/2023, 7:53:08 AM] Loaded 20 cached accessories from cachedAccessories. [4/22/2023, 7:53:10 AM] --- [4/22/2023, 7:53:26 AM] Disabled plugin: homebridge-alexa@0.6.5 [4/22/2023, 7:53:26 AM] --- [4/22/2023, 7:53:26 AM] Loaded plugin: homebridge-config-ui-x@4.50.2 [4/22/2023, 7:53:26 AM] Registering platform 'homebridge-config-ui-x.config' [4/22/2023, 7:53:26 AM] --- [4/22/2023, 7:53:29 AM] Disabled plugin: homebridge-denon-heos@2.9.7 [4/22/2023, 7:53:29 AM] --- [4/22/2023, 7:53:32 AM] Loaded plugin: homebridge-myq@2.11.1 [4/22/2023, 7:53:32 AM] Registering platform 'homebridge-myq.myQ' [4/22/2023, 7:53:32 AM] --- [4/22/2023, 7:53:33 AM] Loaded plugin: homebridge-nest@4.6.9 [4/22/2023, 7:53:33 AM] Registering platform 'homebridge-nest.Nest' [4/22/2023, 7:53:33 AM] --- [4/22/2023, 7:53:33 AM] The plugin "homebridge-platform-wemo" requires Node.js version of ^14.17.2 || ^16.5.0 which does not satisfy the current Node.js version of v18.16.0. You may need to upgrade your installation of Node.js - see https://homebridge.io/w/JTKEF [4/22/2023, 7:53:35 AM] Loaded plugin: homebridge-platform-wemo@3.3.1 [4/22/2023, 7:53:35 AM] Registering platform 'homebridge-platform-wemo.BelkinWeMo' [4/22/2023, 7:53:35 AM] --- [4/22/2023, 7:53:47 AM] Loaded plugin: homebridge-ring@11.7.5 [4/22/2023, 7:53:47 AM] Registering platform 'homebridge-ring.Ring' [4/22/2023, 7:53:47 AM] --- [4/22/2023, 7:53:51 AM] Loaded plugin: homebridge-tesla@4.2.1 [4/22/2023, 7:53:51 AM] Registering accessory 'homebridge-tesla.Tesla' [4/22/2023, 7:53:51 AM] --- [4/22/2023, 7:53:53 AM] Loaded plugin: homebridge-tplink-smarthome@7.0.1 [4/22/2023, 7:53:53 AM] Registering platform 'homebridge-tplink-smarthome.TplinkSmarthome' [4/22/2023, 7:53:53 AM] --- [4/22/2023, 7:53:55 AM] Loaded plugin: @o-lukas/homebridge-smartthings-tv@1.4.3 [4/22/2023, 7:53:55 AM] Registering platform '@o-lukas/homebridge-smartthings-tv.smartthings-tv' [4/22/2023, 7:53:55 AM] --- [4/22/2023, 7:53:55 AM] Loading 9 platforms... [4/22/2023, 7:53:55 AM] [Belkin WeMo] Initializing BelkinWeMo platform... [4/22/2023, 7:53:55 AM] [Belkin WeMo] Initialising plugin v3.3.1 | Node v18.16.0 | HB v1.6.0... [4/22/2023, 7:53:55 AM] [myQ] Initializing myQ platform... [4/22/2023, 7:53:55 AM] Ignoring config for the platform "DenonAVR" in your config.json as the plugin "homebridge-denon-heos" has been disabled. [4/22/2023, 7:53:55 AM] [TplinkSmarthome] Initializing TplinkSmarthome platform... [4/22/2023, 7:53:55 AM] [TplinkSmarthome] homebridge-tplink-smarthome v7.0.1, node v18.16.0, homebridge v1.6.0, api v2.7 [4/22/2023, 7:53:55 AM] [TplinkSmarthome] config.json: {"name":"TplinkSmarthome","addCustomCharacteristics":true,"deviceTypes":["plug","bulb"],"devices":[{"host":"192.168.0.244"}],"platform":"TplinkSmarthome"} [4/22/2023, 7:53:56 AM] [TplinkSmarthome] config: {"addCustomCharacteristics":true,"switchModels":["HS200","HS210"],"waitTimeUpdate":100,"defaultSendOptions":{"timeout":15000},"discoveryOptions":{"port":0,"broadcast":"255.255.255.255","discoveryInterval":10000,"deviceTypes":["plug","bulb"],"deviceOptions":{"defaultSendOptions":{"timeout":15000},"inUseThreshold":0},"devices":[{"host":"192.168.0.244"}]}} [4/22/2023, 7:53:56 AM] [Nest] Initializing Nest platform... [4/22/2023, 7:53:56 AM] [Ring] Initializing Ring platform... [4/22/2023, 7:53:56 AM] Ignoring config for the platform "Alexa" in your config.json as the plugin "homebridge-alexa" has been disabled. [4/22/2023, 7:53:56 AM] [smartthings-tv] Initializing smartthings-tv platform... [4/22/2023, 7:53:56 AM] [smartthings-tv] Finished initializing platform: undefined [4/22/2023, 7:53:57 AM] [Belkin WeMo] [4/22/2023, 7:53:57 AM] [Belkin WeMo] This project has moved to homebridge-wemo [4/22/2023, 7:53:57 AM] [Belkin WeMo] You will need to uninstall this plugin and install homebridge-wemo [4/22/2023, 7:53:57 AM] [Belkin WeMo] https://github.com/bwp91/homebridge-platform-wemo/blob/latest/README.md [4/22/2023, 7:53:57 AM] [Belkin WeMo] [4/22/2023, 7:53:57 AM] [Belkin WeMo] Plugin initialised. Setting up accessories.... [4/22/2023, 7:53:57 AM] [TplinkSmarthome] didFinishLaunching [4/22/2023, 7:53:57 AM] [TplinkSmarthome.API] client.startDiscovery({"port":0,"broadcast":"255.255.255.255","discoveryInterval":10000,"deviceTypes":["plug","bulb"],"deviceOptions":{"defaultSendOptions":{"timeout":15000},"inUseThreshold":0},"devices":[{"host":"192.168.0.244"}]}) [4/22/2023, 7:53:57 AM] [TplinkSmarthome] refreshEmeter() [4/22/2023, 7:53:57 AM] [Nest] Fetching Nest devices. [4/22/2023, 7:53:57 AM] [Nest] Authenticating via Google. [4/22/2023, 7:53:58 AM] [Ring] didFinishLaunching [4/22/2023, 7:53:58 AM] [smartthings-tv] Executed didFinishLaunching callback [4/22/2023, 7:53:58 AM] [TplinkSmarthome] Scheduling next run of refreshEmeter() in 10000(ms) [4/22/2023, 7:53:58 AM] Publishing bridge accessory (name: Homebridge A3E8, publishInfo: { username: '0E:E7:5E:25:9C:33', port: 51682, pincode: '*-*-', category: 2, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). Setup Payload: X-HM://0024J3GYIEKB2 Enter this code with your HomeKit app on your iOS device to pair with Homebridge:

┌────────────┐     
│ 641-01-274 │     
└────────────┘     

[4/22/2023, 7:54:02 AM] [smartthings-tv] Adding new accessory: Big Li TV (8e28f71d-0960-55ed-a22e-4eeb3856bd22) [4/22/2023, 7:54:02 AM] [smartthings-tv] [Big Li TV] Registering capabilities for component main [4/22/2023, 7:54:02 AM] Publishing external accessory (name: Big Li TV, publishInfo: { username: '28:63:23:B9:18:1F', pincode: '*-*-', category: 31, port: undefined, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). [4/22/2023, 7:54:02 AM] Big Li TV B245 is running on port 37737. [4/22/2023, 7:54:02 AM] Please add [Big Li TV B245] manually in Home app. Setup Code: 641-01-274

[4/22/2023, 7:54:04 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "ocf", "version": 1, "status": "proposed", "name": "Ocf", "ephemeral": false, "attributes": { "st": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mndt": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnfv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnhw": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "di": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnsl": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dmv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "n": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmo": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "vid": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmn": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnml": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnpv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnos": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "pi": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "icv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "postOcfCommand": { "name": "postOcfCommand", "arguments": [ { "name": "href", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } }, { "name": "value", "optional": false, "schema": { "title": "JsonObject", "type": "object" } } ] } } } [4/22/2023, 7:54:09 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "switch", "version": 1, "status": "live", "name": "Switch", "ephemeral": false, "attributes": { "switch": { "schema": { "type": "object", "properties": { "value": { "title": "SwitchState", "type": "string", "enum": [ "on", "off" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [ { "command": "on", "value": "on" }, { "command": "off", "value": "off" } ] } }, "commands": { "off": { "name": "off", "arguments": [] }, "on": { "name": "on", "arguments": [] } } } [4/22/2023, 7:54:09 AM] [smartthings-tv] [Big Li TV] Registering capability: Switch [4/22/2023, 7:54:11 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioVolume", "version": 1, "status": "live", "name": "Audio Volume", "ephemeral": false, "attributes": { "volume": { "schema": { "title": "IntegerPercent", "type": "object", "properties": { "value": { "type": "integer", "minimum": 0, "maximum": 100 }, "unit": { "type": "string", "enum": [ "%" ], "default": "%" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setVolume", "enumCommands": [] } }, "commands": { "volumeDown": { "name": "volumeDown", "arguments": [] }, "volumeUp": { "name": "volumeUp", "arguments": [] }, "setVolume": { "name": "setVolume", "arguments": [ { "name": "volume", "optional": false, "schema": { "type": "integer", "minimum": 0, "maximum": 100 } } ] } } } [4/22/2023, 7:54:11 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Volume

[4/22/2023, 7:54:12 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } }

[4/22/2023, 7:54:12 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioMute", "version": 1, "status": "live", "name": "Audio Mute", "ephemeral": false, "attributes": { "mute": { "schema": { "type": "object", "properties": { "value": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setMute", "enumCommands": [ { "command": "mute", "value": "muted" }, { "command": "unmute", "value": "unmuted" } ] } }, "commands": { "setMute": { "name": "setMute", "arguments": [ { "name": "state", "optional": false, "schema": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } } ] }, "mute": { "name": "mute", "arguments": [] }, "unmute": { "name": "unmute", "arguments": [] } } } [4/22/2023, 7:54:12 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Mute

[4/22/2023, 7:54:18 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "tvChannel", "version": 1, "status": "proposed", "name": "Tv Channel", "ephemeral": false, "attributes": { "tvChannel": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannel", "enumCommands": [] }, "tvChannelName": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannelName", "enumCommands": [] } }, "commands": { "channelDown": { "name": "channelDown", "arguments": [] }, "setTvChannel": { "name": "setTvChannel", "arguments": [ { "name": "tvChannel", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] }, "channelUp": { "name": "channelUp", "arguments": [] }, "setTvChannelName": { "name": "setTvChannelName", "arguments": [ { "name": "tvChannelName", "optional": true, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] } } }

[4/22/2023, 7:54:18 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaInputSource", "version": 1, "status": "live", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSources": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setInputSource", "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "mode", "optional": false, "schema": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } } ] } } }

[4/22/2023, 7:54:19 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaPlayback", "version": 1, "status": "live", "name": "Media Playback", "ephemeral": false, "attributes": { "supportedPlaybackCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaPlaybackCommands", "enum": [ "pause", "play", "stop", "fastForward", "rewind" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "playbackStatus": { "schema": { "type": "object", "properties": { "value": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding", "buffering" ], "type": "string" } }, "additionalProperties": false, "required": [] }, "setter": "setPlaybackStatus", "enumCommands": [ { "command": "play", "value": "playing" }, { "command": "pause", "value": "paused" }, { "command": "stop", "value": "stopped" }, { "command": "fastForward", "value": "fast forwarding" }, { "command": "rewind", "value": "rewinding" } ] } }, "commands": { "play": { "name": "play", "arguments": [] }, "stop": { "name": "stop", "arguments": [] }, "rewind": { "name": "rewind", "arguments": [] }, "fastForward": { "name": "fastForward", "arguments": [] }, "setPlaybackStatus": { "name": "setPlaybackStatus", "arguments": [ { "name": "status", "optional": false, "schema": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding" ], "type": "string" } } ] }, "pause": { "name": "pause", "arguments": [] } } } [4/22/2023, 7:54:20 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:54:20 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:54:20 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } } [4/22/2023, 7:54:20 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaTrackControl", "version": 1, "status": "live", "name": "Media Track Control", "ephemeral": false, "attributes": { "supportedTrackControlCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaTrackCommands", "enum": [ "previousTrack", "nextTrack" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "previousTrack": { "name": "previousTrack", "arguments": [] }, "nextTrack": { "name": "nextTrack", "arguments": [] } } } [4/22/2023, 7:54:20 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "powerConsumptionReport", "version": 1, "status": "live", "name": "Power Consumption Report", "ephemeral": false, "attributes": { "powerConsumption": { "schema": { "type": "object", "properties": { "value": { "properties": { "deltaEnergy": { "type": "number" }, "end": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "start": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "energySaved": { "type": "number" }, "persistedSavedEnergy": { "type": "number" }, "energy": { "type": "number" }, "power": { "type": "number" }, "powerEnergy": { "type": "number" }, "persistedEnergy": { "type": "number" } }, "additionalProperties": false, "title": "PowerConsumption", "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:54:21 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.error", "version": 1, "status": "proposed", "name": "Error", "ephemeral": false, "attributes": { "error": { "schema": { "type": "object", "properties": { "value": { "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setError": { "name": "setError", "arguments": [ { "name": "error", "optional": false, "schema": { "type": "object" } } ] } } } [4/22/2023, 7:54:21 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.picturemode", "version": 1, "status": "proposed", "name": "PictureMode", "ephemeral": false, "attributes": { "pictureMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModes": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setPictureMode": { "name": "setPictureMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:54:21 AM] [smartthings-tv] [Big Li TV] Registering capability: PictureMode [4/22/2023, 7:54:21 AM] [smartthings-tv] [Big Li TV] Capability PictureMode might not work as expected because it's status is: proposed [4/22/2023, 7:54:22 AM] [smartthings-tv] [Big Li TV] Registering picture mode: Dynamic [4/22/2023, 7:54:22 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.soundmode", "version": 1, "status": "proposed", "name": "SoundMode", "ephemeral": false, "attributes": { "supportedSoundModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "soundMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedSoundModes": { "schema": { "type": "object", "properties": { "value": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setSoundMode": { "name": "setSoundMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:54:22 AM] [smartthings-tv] [Big Li TV] Registering capability: SoundMode [4/22/2023, 7:54:22 AM] [smartthings-tv] [Big Li TV] Capability SoundMode might not work as expected because it's status is: proposed [4/22/2023, 7:54:23 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Amplify [4/22/2023, 7:54:23 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Standard [4/22/2023, 7:54:23 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.accessibility", "version": 1, "status": "proposed", "name": "Accessibility", "ephemeral": false, "attributes": {}, "commands": { "setAccessibility": { "name": "setAccessibility", "arguments": [ { "name": "menuName", "optional": false, "schema": { "type": "string" } }, { "name": "menuId", "optional": false, "schema": { "type": "string" } }, { "name": "option", "optional": true, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:54:24 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.launchapp", "version": 1, "status": "proposed", "name": "launchApp", "ephemeral": false, "attributes": {}, "commands": { "launchApp": { "name": "launchApp", "arguments": [ { "name": "appId", "optional": true, "schema": { "type": "string" } }, { "name": "appName", "optional": true, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:54:24 AM] [smartthings-tv] [Big Li TV] Registering capability: launchApp [4/22/2023, 7:54:24 AM] [smartthings-tv] [Big Li TV] Capability launchApp might not work as expected because it's status is: proposed

[4/22/2023, 7:54:35 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 0 [4/22/2023, 7:54:35 AM] TypeError: Cannot read properties of undefined (reading 'getCharacteristic') at TvAccessory.setActiveIdentifier (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:269:41) at TvAccessory.registerAvailableLaunchApplications (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:490:10) at processTicksAndRejections (node:internal/process/task_queues:95:5) at TvAccessory.registerCapability (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:136:11) at TvAccessory.registerCapabilities (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:78:7) [4/22/2023, 7:54:35 AM] Got SIGTERM, shutting down Homebridge... [4/22/2023, 7:54:36 AM] [TplinkSmarthome] shutdown [4/22/2023, 7:54:36 AM] [TplinkSmarthome.API] client.stopDiscovery() [4/22/2023, 7:54:36 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.recording", "version": 1, "status": "proposed", "name": "Recording", "ephemeral": false, "attributes": {}, "commands": { "recordStart": { "name": "recordStart", "arguments": [] }, "recordStop": { "name": "recordStop", "arguments": [] } } } [4/22/2023, 7:54:36 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.tvsearch", "version": 1, "status": "proposed", "name": "tvSearch", "ephemeral": false, "attributes": {}, "commands": { "search": { "name": "search", "arguments": [ { "name": "query", "optional": false, "schema": { "type": "string" } }, { "name": "url", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:54:37 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.disabledCapabilities", "version": 1, "status": "proposed", "name": "Disabled Capabilities", "ephemeral": false, "attributes": { "disabledCapabilities": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:54:37 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.remoteControl", "version": 1, "status": "proposed", "name": "Remote Control", "ephemeral": false, "attributes": {}, "commands": { "send": { "name": "send", "arguments": [ { "name": "keyValue", "optional": false, "schema": { "type": "string", "enum": [ "UP", "DOWN", "LEFT", "RIGHT", "OK", "BACK", "MENU", "HOME" ] } }, { "name": "keyState", "optional": true, "schema": { "type": "string", "enum": [ "PRESSED", "RELEASED", "PRESS_AND_RELEASED" ] } } ] } } } [4/22/2023, 7:54:38 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambient", "version": 1, "status": "proposed", "name": "Ambient", "ephemeral": false, "attributes": {}, "commands": { "setAmbientOn": { "name": "setAmbientOn", "arguments": [] } } } [4/22/2023, 7:54:38 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambientContent", "version": 1, "status": "proposed", "name": "Ambient Content", "ephemeral": false, "attributes": { "supportedAmbientApps": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setAmbientContent": { "name": "setAmbientContent", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:54:38 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.mediaInputSource", "version": 1, "status": "proposed", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSourcesMap": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "required": [] } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:54:38 AM] [smartthings-tv] [Big Li TV] Registering capability: Media Input Source [4/22/2023, 7:54:38 AM] [smartthings-tv] [Big Li TV] Capability Media Input Source might not work as expected because it's status is: proposed

[4/22/2023, 7:54:39 AM] [smartthings-tv] [Big Li TV] Registering input source: TV [4/22/2023, 7:54:39 AM] [smartthings-tv] [Big Li TV] Registering input source: HDMI 2 [4/22/2023, 7:54:39 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.supportsFeatures", "version": 1, "status": "proposed", "name": "Supports Features", "ephemeral": false, "attributes": { "imeAdvSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mobileCamSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:54:40 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungim.fixedFindNode", "version": 1, "status": "proposed", "name": "Fixed Find Node", "ephemeral": false, "attributes": {}, "commands": { "refresh": { "name": "refresh", "arguments": [] } } } [4/22/2023, 7:54:40 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "sec.diagnosticsInformation", "version": 1, "status": "proposed", "name": "Diagnostics Information", "ephemeral": false, "attributes": { "logType": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "title": "logType", "type": "string", "enum": [ "errCode", "dump" ] } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "endpoint": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "NONE", "PIPER", "SSM" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "minVersion": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "signinPermission": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "immutable", "updating", "enabled", "disabled" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "setupId": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "protocolType": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "ble_ocf", "wifi_https", "ble_stdk", "wifi_stdk" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnId": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dumpType": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "file", "id" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:54:41 AM] [HB Supervisor] Homebridge Process Ended. Code: 143, Signal: null [4/22/2023, 7:54:46 AM] [HB Supervisor] Restarting Homebridge... [4/22/2023, 7:54:46 AM] [HB Supervisor] Starting Homebridge with extra flags: -I -D [4/22/2023, 7:54:46 AM] [HB Supervisor] Started Homebridge v1.6.0 with PID: 3045 [4/22/2023, 7:54:53 AM] Loaded config.json with 2 accessories and 9 platforms. [4/22/2023, 7:54:54 AM] Loaded 20 cached accessories from cachedAccessories. [4/22/2023, 7:54:55 AM] --- [4/22/2023, 7:55:08 AM] Disabled plugin: homebridge-alexa@0.6.5 [4/22/2023, 7:55:08 AM] --- [4/22/2023, 7:55:09 AM] Loaded plugin: homebridge-config-ui-x@4.50.2 [4/22/2023, 7:55:09 AM] Registering platform 'homebridge-config-ui-x.config' [4/22/2023, 7:55:09 AM] --- [4/22/2023, 7:55:11 AM] Disabled plugin: homebridge-denon-heos@2.9.7 [4/22/2023, 7:55:11 AM] --- [4/22/2023, 7:55:13 AM] Loaded plugin: homebridge-myq@2.11.1 [4/22/2023, 7:55:13 AM] Registering platform 'homebridge-myq.myQ' [4/22/2023, 7:55:13 AM] --- [4/22/2023, 7:55:14 AM] Loaded plugin: homebridge-nest@4.6.9 [4/22/2023, 7:55:14 AM] Registering platform 'homebridge-nest.Nest' [4/22/2023, 7:55:14 AM] --- [4/22/2023, 7:55:14 AM] The plugin "homebridge-platform-wemo" requires Node.js version of ^14.17.2 || ^16.5.0 which does not satisfy the current Node.js version of v18.16.0. You may need to upgrade your installation of Node.js - see https://homebridge.io/w/JTKEF [4/22/2023, 7:55:15 AM] Loaded plugin: homebridge-platform-wemo@3.3.1 [4/22/2023, 7:55:15 AM] Registering platform 'homebridge-platform-wemo.BelkinWeMo' [4/22/2023, 7:55:15 AM] --- [4/22/2023, 7:55:25 AM] Loaded plugin: homebridge-ring@11.7.5 [4/22/2023, 7:55:25 AM] Registering platform 'homebridge-ring.Ring' [4/22/2023, 7:55:25 AM] --- [4/22/2023, 7:55:28 AM] Loaded plugin: homebridge-tesla@4.2.1 [4/22/2023, 7:55:28 AM] Registering accessory 'homebridge-tesla.Tesla' [4/22/2023, 7:55:28 AM] --- [4/22/2023, 7:55:29 AM] Loaded plugin: homebridge-tplink-smarthome@7.0.1 [4/22/2023, 7:55:29 AM] Registering platform 'homebridge-tplink-smarthome.TplinkSmarthome' [4/22/2023, 7:55:29 AM] --- [4/22/2023, 7:55:31 AM] Loaded plugin: @o-lukas/homebridge-smartthings-tv@1.4.3 [4/22/2023, 7:55:31 AM] Registering platform '@o-lukas/homebridge-smartthings-tv.smartthings-tv' [4/22/2023, 7:55:31 AM] --- [4/22/2023, 7:55:31 AM] Loading 9 platforms... [4/22/2023, 7:55:31 AM] [Belkin WeMo] Initializing BelkinWeMo platform... [4/22/2023, 7:55:31 AM] [Belkin WeMo] Initialising plugin v3.3.1 | Node v18.16.0 | HB v1.6.0... [4/22/2023, 7:55:31 AM] [myQ] Initializing myQ platform... [4/22/2023, 7:55:31 AM] Ignoring config for the platform "DenonAVR" in your config.json as the plugin "homebridge-denon-heos" has been disabled. [4/22/2023, 7:55:31 AM] [TplinkSmarthome] Initializing TplinkSmarthome platform... [4/22/2023, 7:55:31 AM] [TplinkSmarthome] homebridge-tplink-smarthome v7.0.1, node v18.16.0, homebridge v1.6.0, api v2.7 [4/22/2023, 7:55:31 AM] [TplinkSmarthome] config.json: {"name":"TplinkSmarthome","addCustomCharacteristics":true,"deviceTypes":["plug","bulb"],"devices":[{"host":"192.168.0.244"}],"platform":"TplinkSmarthome"} [4/22/2023, 7:55:32 AM] [TplinkSmarthome] config: {"addCustomCharacteristics":true,"switchModels":["HS200","HS210"],"waitTimeUpdate":100,"defaultSendOptions":{"timeout":15000},"discoveryOptions":{"port":0,"broadcast":"255.255.255.255","discoveryInterval":10000,"deviceTypes":["plug","bulb"],"deviceOptions":{"defaultSendOptions":{"timeout":15000},"inUseThreshold":0},"devices":[{"host":"192.168.0.244"}]}} [4/22/2023, 7:55:32 AM] [Nest] Initializing Nest platform... [4/22/2023, 7:55:32 AM] [Ring] Initializing Ring platform... [4/22/2023, 7:55:32 AM] Ignoring config for the platform "Alexa" in your config.json as the plugin "homebridge-alexa" has been disabled. [4/22/2023, 7:55:32 AM] [smartthings-tv] Initializing smartthings-tv platform... [4/22/2023, 7:55:32 AM] [smartthings-tv] Finished initializing platform: undefined [4/22/2023, 7:55:33 AM] [Belkin WeMo] [4/22/2023, 7:55:33 AM] [Belkin WeMo] This project has moved to homebridge-wemo [4/22/2023, 7:55:33 AM] [Belkin WeMo] You will need to uninstall this plugin and install homebridge-wemo [4/22/2023, 7:55:33 AM] [Belkin WeMo] https://github.com/bwp91/homebridge-platform-wemo/blob/latest/README.md [4/22/2023, 7:55:33 AM] [Belkin WeMo] [4/22/2023, 7:55:32 AM] [Belkin WeMo] Plugin initialised. Setting up accessories.... [4/22/2023, 7:55:33 AM] [TplinkSmarthome] didFinishLaunching [4/22/2023, 7:55:33 AM] [TplinkSmarthome.API] client.startDiscovery({"port":0,"broadcast":"255.255.255.255","discoveryInterval":10000,"deviceTypes":["plug","bulb"],"deviceOptions":{"defaultSendOptions":{"timeout":15000},"inUseThreshold":0},"devices":[{"host":"192.168.0.244"}]}) [4/22/2023, 7:55:33 AM] [TplinkSmarthome] refreshEmeter() [4/22/2023, 7:55:33 AM] [Nest] Fetching Nest devices. [4/22/2023, 7:55:33 AM] [Nest] Authenticating via Google. [4/22/2023, 7:55:34 AM] [Ring] didFinishLaunching [4/22/2023, 7:55:34 AM] [smartthings-tv] Executed didFinishLaunching callback [4/22/2023, 7:55:34 AM] [TplinkSmarthome] Scheduling next run of refreshEmeter() in 10000(ms) [4/22/2023, 7:55:34 AM] Publishing bridge accessory (name: Homebridge A3E8, publishInfo: { username: '0E:E7:5E:25:9C:33', port: 51682, pincode: '*-*-', category: 2, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). Setup Payload: X-HM://0024J3GYIEKB2 Enter this code with your HomeKit app on your iOS device to pair with Homebridge:

┌────────────┐     
│ 641-01-274 │     
└────────────┘     

[4/22/2023, 7:55:37 AM] [smartthings-tv] Adding new accessory: Big Li TV (8e28f71d-0960-55ed-a22e-4eeb3856bd22) [4/22/2023, 7:55:37 AM] [smartthings-tv] [Big Li TV] Registering capabilities for component main [4/22/2023, 7:55:37 AM] Publishing external accessory (name: Big Li TV, publishInfo: { username: '28:63:23:B9:18:1F', pincode: '*-*-', category: 31, port: undefined, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). [4/22/2023, 7:55:37 AM] Big Li TV B245 is running on port 43827. [4/22/2023, 7:55:37 AM] Please add [Big Li TV B245] manually in Home app. Setup Code: 641-01-274

[4/22/2023, 7:55:39 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "ocf", "version": 1, "status": "proposed", "name": "Ocf", "ephemeral": false, "attributes": { "st": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mndt": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnfv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnhw": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "di": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnsl": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dmv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "n": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmo": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "vid": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmn": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnml": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnpv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnos": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "pi": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "icv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "postOcfCommand": { "name": "postOcfCommand", "arguments": [ { "name": "href", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } }, { "name": "value", "optional": false, "schema": { "title": "JsonObject", "type": "object" } } ] } } } [4/22/2023, 7:55:41 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "switch", "version": 1, "status": "live", "name": "Switch", "ephemeral": false, "attributes": { "switch": { "schema": { "type": "object", "properties": { "value": { "title": "SwitchState", "type": "string", "enum": [ "on", "off" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [ { "command": "on", "value": "on" }, { "command": "off", "value": "off" } ] } }, "commands": { "off": { "name": "off", "arguments": [] }, "on": { "name": "on", "arguments": [] } } } [4/22/2023, 7:55:41 AM] [smartthings-tv] [Big Li TV] Registering capability: Switch

[4/22/2023, 7:55:42 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioVolume", "version": 1, "status": "live", "name": "Audio Volume", "ephemeral": false, "attributes": { "volume": { "schema": { "title": "IntegerPercent", "type": "object", "properties": { "value": { "type": "integer", "minimum": 0, "maximum": 100 }, "unit": { "type": "string", "enum": [ "%" ], "default": "%" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setVolume", "enumCommands": [] } }, "commands": { "volumeDown": { "name": "volumeDown", "arguments": [] }, "volumeUp": { "name": "volumeUp", "arguments": [] }, "setVolume": { "name": "setVolume", "arguments": [ { "name": "volume", "optional": false, "schema": { "type": "integer", "minimum": 0, "maximum": 100 } } ] } } } [4/22/2023, 7:55:42 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Volume [4/22/2023, 7:55:42 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } } [4/22/2023, 7:55:43 AM] [myQ] myQ API: Successfully connected to the myQ API. [4/22/2023, 7:55:43 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioMute", "version": 1, "status": "live", "name": "Audio Mute", "ephemeral": false, "attributes": { "mute": { "schema": { "type": "object", "properties": { "value": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setMute", "enumCommands": [ { "command": "mute", "value": "muted" }, { "command": "unmute", "value": "unmuted" } ] } }, "commands": { "setMute": { "name": "setMute", "arguments": [ { "name": "state", "optional": false, "schema": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } } ] }, "mute": { "name": "mute", "arguments": [] }, "unmute": { "name": "unmute", "arguments": [] } } } [4/22/2023, 7:55:43 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Mute [4/22/2023, 7:55:44 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "tvChannel", "version": 1, "status": "proposed", "name": "Tv Channel", "ephemeral": false, "attributes": { "tvChannel": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannel", "enumCommands": [] }, "tvChannelName": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannelName", "enumCommands": [] } }, "commands": { "channelDown": { "name": "channelDown", "arguments": [] }, "setTvChannel": { "name": "setTvChannel", "arguments": [ { "name": "tvChannel", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] }, "channelUp": { "name": "channelUp", "arguments": [] }, "setTvChannelName": { "name": "setTvChannelName", "arguments": [ { "name": "tvChannelName", "optional": true, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] } } }

[4/22/2023, 7:55:47 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaInputSource", "version": 1, "status": "live", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSources": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setInputSource", "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "mode", "optional": false, "schema": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } } ] } } }

[4/22/2023, 7:55:48 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:55:48 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:55:48 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } } [4/22/2023, 7:55:48 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaPlayback", "version": 1, "status": "live", "name": "Media Playback", "ephemeral": false, "attributes": { "supportedPlaybackCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaPlaybackCommands", "enum": [ "pause", "play", "stop", "fastForward", "rewind" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "playbackStatus": { "schema": { "type": "object", "properties": { "value": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding", "buffering" ], "type": "string" } }, "additionalProperties": false, "required": [] }, "setter": "setPlaybackStatus", "enumCommands": [ { "command": "play", "value": "playing" }, { "command": "pause", "value": "paused" }, { "command": "stop", "value": "stopped" }, { "command": "fastForward", "value": "fast forwarding" }, { "command": "rewind", "value": "rewinding" } ] } }, "commands": { "play": { "name": "play", "arguments": [] }, "stop": { "name": "stop", "arguments": [] }, "rewind": { "name": "rewind", "arguments": [] }, "fastForward": { "name": "fastForward", "arguments": [] }, "setPlaybackStatus": { "name": "setPlaybackStatus", "arguments": [ { "name": "status", "optional": false, "schema": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding" ], "type": "string" } } ] }, "pause": { "name": "pause", "arguments": [] } } } [4/22/2023, 7:55:49 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaTrackControl", "version": 1, "status": "live", "name": "Media Track Control", "ephemeral": false, "attributes": { "supportedTrackControlCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaTrackCommands", "enum": [ "previousTrack", "nextTrack" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "previousTrack": { "name": "previousTrack", "arguments": [] }, "nextTrack": { "name": "nextTrack", "arguments": [] } } } [4/22/2023, 7:55:50 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "powerConsumptionReport", "version": 1, "status": "live", "name": "Power Consumption Report", "ephemeral": false, "attributes": { "powerConsumption": { "schema": { "type": "object", "properties": { "value": { "properties": { "deltaEnergy": { "type": "number" }, "end": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "start": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "energySaved": { "type": "number" }, "persistedSavedEnergy": { "type": "number" }, "energy": { "type": "number" }, "power": { "type": "number" }, "powerEnergy": { "type": "number" }, "persistedEnergy": { "type": "number" } }, "additionalProperties": false, "title": "PowerConsumption", "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:55:50 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.error", "version": 1, "status": "proposed", "name": "Error", "ephemeral": false, "attributes": { "error": { "schema": { "type": "object", "properties": { "value": { "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setError": { "name": "setError", "arguments": [ { "name": "error", "optional": false, "schema": { "type": "object" } } ] } } } [4/22/2023, 7:55:51 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.picturemode", "version": 1, "status": "proposed", "name": "PictureMode", "ephemeral": false, "attributes": { "pictureMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModes": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setPictureMode": { "name": "setPictureMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:55:51 AM] [smartthings-tv] [Big Li TV] Registering capability: PictureMode [4/22/2023, 7:55:51 AM] [smartthings-tv] [Big Li TV] Capability PictureMode might not work as expected because it's status is: proposed [4/22/2023, 7:55:51 AM] [smartthings-tv] [Big Li TV] Registering picture mode: Dynamic [4/22/2023, 7:55:52 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.soundmode", "version": 1, "status": "proposed", "name": "SoundMode", "ephemeral": false, "attributes": { "supportedSoundModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "soundMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedSoundModes": { "schema": { "type": "object", "properties": { "value": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setSoundMode": { "name": "setSoundMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:55:52 AM] [smartthings-tv] [Big Li TV] Registering capability: SoundMode [4/22/2023, 7:55:52 AM] [smartthings-tv] [Big Li TV] Capability SoundMode might not work as expected because it's status is: proposed [4/22/2023, 7:55:52 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Amplify [4/22/2023, 7:55:52 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Standard [4/22/2023, 7:55:53 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.accessibility", "version": 1, "status": "proposed", "name": "Accessibility", "ephemeral": false, "attributes": {}, "commands": { "setAccessibility": { "name": "setAccessibility", "arguments": [ { "name": "menuName", "optional": false, "schema": { "type": "string" } }, { "name": "menuId", "optional": false, "schema": { "type": "string" } }, { "name": "option", "optional": true, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:55:53 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.launchapp", "version": 1, "status": "proposed", "name": "launchApp", "ephemeral": false, "attributes": {}, "commands": { "launchApp": { "name": "launchApp", "arguments": [ { "name": "appId", "optional": true, "schema": { "type": "string" } }, { "name": "appName", "optional": true, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:55:53 AM] [smartthings-tv] [Big Li TV] Registering capability: launchApp [4/22/2023, 7:55:53 AM] [smartthings-tv] [Big Li TV] Capability launchApp might not work as expected because it's status is: proposed

[4/22/2023, 7:56:04 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } } [4/22/2023, 7:56:05 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:56:05 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:56:05 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/22/2023, 7:56:05 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:56:05 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } }

[4/22/2023, 7:56:06 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 0 [4/22/2023, 7:56:07 AM] TypeError: Cannot read properties of undefined (reading 'getCharacteristic') at TvAccessory.setActiveIdentifier (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:269:41) at TvAccessory.registerAvailableLaunchApplications (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:490:10) at processTicksAndRejections (node:internal/process/task_queues:95:5) at TvAccessory.registerCapability (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:136:11) at TvAccessory.registerCapabilities (/usr/lib/node_modules/@o-lukas/homebridge-smartthings-tv/src/tvAccessory.ts:78:7)

[4/22/2023, 7:56:07 AM] Got SIGTERM, shutting down Homebridge... [4/22/2023, 7:56:07 AM] [TplinkSmarthome] shutdown [4/22/2023, 7:56:07 AM] [TplinkSmarthome.API] client.stopDiscovery() [4/22/2023, 7:56:07 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.recording", "version": 1, "status": "proposed", "name": "Recording", "ephemeral": false, "attributes": {}, "commands": { "recordStart": { "name": "recordStart", "arguments": [] }, "recordStop": { "name": "recordStop", "arguments": [] } } } [4/22/2023, 7:56:08 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.tvsearch", "version": 1, "status": "proposed", "name": "tvSearch", "ephemeral": false, "attributes": {}, "commands": { "search": { "name": "search", "arguments": [ { "name": "query", "optional": false, "schema": { "type": "string" } }, { "name": "url", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:56:08 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.disabledCapabilities", "version": 1, "status": "proposed", "name": "Disabled Capabilities", "ephemeral": false, "attributes": { "disabledCapabilities": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:56:09 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.remoteControl", "version": 1, "status": "proposed", "name": "Remote Control", "ephemeral": false, "attributes": {}, "commands": { "send": { "name": "send", "arguments": [ { "name": "keyValue", "optional": false, "schema": { "type": "string", "enum": [ "UP", "DOWN", "LEFT", "RIGHT", "OK", "BACK", "MENU", "HOME" ] } }, { "name": "keyState", "optional": true, "schema": { "type": "string", "enum": [ "PRESSED", "RELEASED", "PRESS_AND_RELEASED" ] } } ] } } } [4/22/2023, 7:56:09 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambient", "version": 1, "status": "proposed", "name": "Ambient", "ephemeral": false, "attributes": {}, "commands": { "setAmbientOn": { "name": "setAmbientOn", "arguments": [] } } } [4/22/2023, 7:56:10 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambientContent", "version": 1, "status": "proposed", "name": "Ambient Content", "ephemeral": false, "attributes": { "supportedAmbientApps": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setAmbientContent": { "name": "setAmbientContent", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:56:10 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.mediaInputSource", "version": 1, "status": "proposed", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSourcesMap": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "required": [] } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:56:10 AM] [smartthings-tv] [Big Li TV] Registering capability: Media Input Source [4/22/2023, 7:56:10 AM] [smartthings-tv] [Big Li TV] Capability Media Input Source might not work as expected because it's status is: proposed [4/22/2023, 7:56:11 AM] [smartthings-tv] [Big Li TV] Registering input source: TV [4/22/2023, 7:56:11 AM] [smartthings-tv] [Big Li TV] Registering input source: HDMI 2 [4/22/2023, 7:56:11 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.supportsFeatures", "version": 1, "status": "proposed", "name": "Supports Features", "ephemeral": false, "attributes": { "imeAdvSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mobileCamSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:56:12 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungim.fixedFindNode", "version": 1, "status": "proposed", "name": "Fixed Find Node", "ephemeral": false, "attributes": {}, "commands": { "refresh": { "name": "refresh", "arguments": [] } } } [4/22/2023, 7:56:12 AM] [HB Supervisor] Homebridge Process Ended. Code: 143, Signal: null [4/22/2023, 7:56:17 AM] [HB Supervisor] Restarting Homebridge... [4/22/2023, 7:56:17 AM] [HB Supervisor] Starting Homebridge with extra flags: -I -D [4/22/2023, 7:56:17 AM] [HB Supervisor] Started Homebridge v1.6.0 with PID: 3574 [4/22/2023, 7:56:21 AM] Loaded config.json with 2 accessories and 9 platforms. [4/22/2023, 7:56:22 AM] Loaded 20 cached accessories from cachedAccessories. [4/22/2023, 7:56:24 AM] --- [4/22/2023, 7:56:36 AM] Disabled plugin: homebridge-alexa@0.6.5 [4/22/2023, 7:56:36 AM] --- [4/22/2023, 7:56:37 AM] Loaded plugin: homebridge-config-ui-x@4.50.2 [4/22/2023, 7:56:37 AM] Registering platform 'homebridge-config-ui-x.config' [4/22/2023, 7:56:37 AM] --- [4/22/2023, 7:56:39 AM] Disabled plugin: homebridge-denon-heos@2.9.7 [4/22/2023, 7:56:39 AM] --- [4/22/2023, 7:56:41 AM] Loaded plugin: homebridge-myq@2.11.1 [4/22/2023, 7:56:41 AM] Registering platform 'homebridge-myq.myQ' [4/22/2023, 7:56:41 AM] --- [4/22/2023, 7:56:42 AM] Loaded plugin: homebridge-nest@4.6.9 [4/22/2023, 7:56:42 AM] Registering platform 'homebridge-nest.Nest' [4/22/2023, 7:56:42 AM] --- [4/22/2023, 7:56:42 AM] The plugin "homebridge-platform-wemo" requires Node.js version of ^14.17.2 || ^16.5.0 which does not satisfy the current Node.js version of v18.16.0. You may need to upgrade your installation of Node.js - see https://homebridge.io/w/JTKEF [4/22/2023, 7:56:43 AM] Loaded plugin: homebridge-platform-wemo@3.3.1 [4/22/2023, 7:56:43 AM] Registering platform 'homebridge-platform-wemo.BelkinWeMo' [4/22/2023, 7:56:43 AM] --- [4/22/2023, 7:56:51 AM] Loaded plugin: homebridge-ring@11.7.5 [4/22/2023, 7:56:51 AM] Registering platform 'homebridge-ring.Ring' [4/22/2023, 7:56:51 AM] --- [4/22/2023, 7:56:54 AM] Loaded plugin: homebridge-tesla@4.2.1 [4/22/2023, 7:56:54 AM] Registering accessory 'homebridge-tesla.Tesla' [4/22/2023, 7:56:54 AM] --- [4/22/2023, 7:56:55 AM] Loaded plugin: homebridge-tplink-smarthome@7.0.1 [4/22/2023, 7:56:55 AM] Registering platform 'homebridge-tplink-smarthome.TplinkSmarthome' [4/22/2023, 7:56:55 AM] --- [4/22/2023, 7:56:56 AM] Loaded plugin: @o-lukas/homebridge-smartthings-tv@1.4.3 [4/22/2023, 7:56:56 AM] Registering platform '@o-lukas/homebridge-smartthings-tv.smartthings-tv' [4/22/2023, 7:56:56 AM] --- [4/22/2023, 7:56:56 AM] Loading 9 platforms... [4/22/2023, 7:56:56 AM] [Belkin WeMo] Initializing BelkinWeMo platform... [4/22/2023, 7:56:56 AM] [Belkin WeMo] Initialising plugin v3.3.1 | Node v18.16.0 | HB v1.6.0... [4/22/2023, 7:56:56 AM] [myQ] Initializing myQ platform... [4/22/2023, 7:56:56 AM] Ignoring config for the platform "DenonAVR" in your config.json as the plugin "homebridge-denon-heos" has been disabled. [4/22/2023, 7:56:56 AM] [TplinkSmarthome] Initializing TplinkSmarthome platform... [4/22/2023, 7:56:56 AM] [TplinkSmarthome] homebridge-tplink-smarthome v7.0.1, node v18.16.0, homebridge v1.6.0, api v2.7 [4/22/2023, 7:56:56 AM] [TplinkSmarthome] config.json: {"name":"TplinkSmarthome","addCustomCharacteristics":true,"deviceTypes":["plug","bulb"],"devices":[{"host":"192.168.0.244"}],"platform":"TplinkSmarthome"} [4/22/2023, 7:56:58 AM] [TplinkSmarthome] config: {"addCustomCharacteristics":true,"switchModels":["HS200","HS210"],"waitTimeUpdate":100,"defaultSendOptions":{"timeout":15000},"discoveryOptions":{"port":0,"broadcast":"255.255.255.255","discoveryInterval":10000,"deviceTypes":["plug","bulb"],"deviceOptions":{"defaultSendOptions":{"timeout":15000},"inUseThreshold":0},"devices":[{"host":"192.168.0.244"}]}} [4/22/2023, 7:56:58 AM] [Nest] Initializing Nest platform... [4/22/2023, 7:56:58 AM] [Ring] Initializing Ring platform... [4/22/2023, 7:56:58 AM] [smartthings-tv] Initializing smartthings-tv platform... [4/22/2023, 7:56:58 AM] [smartthings-tv] Finished initializing platform: undefined [4/22/2023, 7:56:58 AM] Loading 2 accessories... [4/22/2023, 7:56:58 AM] [Bananana] Initializing Tesla accessory... [4/22/2023, 7:56:58 AM] [Belkin WeMo] Plugin initialised. Setting up accessories.... [4/22/2023, 7:56:58 AM] [TplinkSmarthome] didFinishLaunching [4/22/2023, 7:56:58 AM] [TplinkSmarthome.API] client.startDiscovery({"port":0,"broadcast":"255.255.255.255","discoveryInterval":10000,"deviceTypes":["plug","bulb"],"deviceOptions":{"defaultSendOptions":{"timeout":15000},"inUseThreshold":0},"devices":[{"host":"192.168.0.244"}]}) [4/22/2023, 7:56:58 AM] [TplinkSmarthome] refreshEmeter() [4/22/2023, 7:56:58 AM] [Nest] Fetching Nest devices. [4/22/2023, 7:56:58 AM] [Nest] Authenticating via Google. [4/22/2023, 7:56:59 AM] [Ring] didFinishLaunching [4/22/2023, 7:56:59 AM] [smartthings-tv] Executed didFinishLaunching callback [4/22/2023, 7:56:59 AM] [TplinkSmarthome] Scheduling next run of refreshEmeter() in 10000(ms) [4/22/2023, 7:56:59 AM] Publishing bridge accessory (name: Homebridge A3E8, publishInfo: { username: '0E:E7:5E:25:9C:33', port: 51682, pincode: '*-*-', category: 2, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). Setup Payload: X-HM://0024J3GYIEKB2 Enter this code with your HomeKit app on your iOS device to pair with Homebridge:

┌────────────┐     
│ 641-01-274 │     
└────────────┘     

[4/22/2023, 7:57:00 AM] Homebridge v1.6.0 (HAP v0.11.0) (Homebridge A3E8) is running on port 51682. [4/22/2023, 7:57:02 AM] [smartthings-tv] Adding new accessory: Big Li TV (8e28f71d-0960-55ed-a22e-4eeb3856bd22) [4/22/2023, 7:57:02 AM] [smartthings-tv] [Big Li TV] Registering capabilities for component main [4/22/2023, 7:57:02 AM] Publishing external accessory (name: Big Li TV, publishInfo: { username: '28:63:23:B9:18:1F', pincode: '*-*-', category: 31, port: undefined, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). [4/22/2023, 7:57:02 AM] Big Li TV B245 is running on port 34911. [4/22/2023, 7:57:02 AM] Please add [Big Li TV B245] manually in Home app. Setup Code: 641-01-274 [4/22/2023, 7:57:05 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "ocf", "version": 1, "status": "proposed", "name": "Ocf", "ephemeral": false, "attributes": { "st": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mndt": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnfv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [  "value" ] }, "enumCommands": [] }, "mnhw": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "di": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnsl": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dmv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "n": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmo": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "vid": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmn": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnml": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnpv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnos": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "pi": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "icv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "postOcfCommand": { "name": "postOcfCommand", "arguments": [ { "name": "href", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } }, { "name": "value", "optional": false, "schema": { "title": "JsonObject", "type": "object" } } ] } } } [4/22/2023, 7:57:06 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "switch", "version": 1, "status": "live", "name": "Switch", "ephemeral": false, "attributes": { "switch": { "schema": { "type": "object", "properties": { "value": { "title": "SwitchState", "type": "string", "enum": [ "on", "off" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [ { "command": "on", "value": "on" }, { "command": "off", "value": "off" } ] } }, "commands": { "off": { "name": "off", "arguments": [] }, "on": { "name": "on", "arguments": [] } } } [4/22/2023, 7:57:06 AM] [smartthings-tv] [Big Li TV] Registering capability: Switch [4/22/2023, 7:57:07 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioVolume", "version": 1, "status": "live", "name": "Audio Volume", "ephemeral": false, "attributes": { "volume": { "schema": { "title": "IntegerPercent", "type": "object", "properties": { "value": { "type": "integer", "minimum": 0, "maximum": 100 }, "unit": { "type": "string", "enum": [ "%" ], "default": "%" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setVolume", "enumCommands": [] } }, "commands": { "volumeDown": { "name": "volumeDown", "arguments": [] }, "volumeUp": { "name": "volumeUp", "arguments": [] }, "setVolume": { "name": "setVolume", "arguments": [ { "name": "volume", "optional": false, "schema": { "type": "integer", "minimum": 0, "maximum": 100 } } ] } } } [4/22/2023, 7:57:07 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Volume [4/22/2023, 7:57:08 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioMute", "version": 1, "status": "live", "name": "Audio Mute", "ephemeral": false, "attributes": { "mute": { "schema": { "type": "object", "properties": { "value": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setMute", "enumCommands": [ { "command": "mute", "value": "muted" }, { "command": "unmute", "value": "unmuted" } ] } }, "commands": { "setMute": { "name": "setMute", "arguments": [ { "name": "state", "optional": false, "schema": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } } ] }, "mute": { "name": "mute", "arguments": [] }, "unmute": { "name": "unmute", "arguments": [] } } } [4/22/2023, 7:57:08 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Mute [4/22/2023, 7:57:08 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } } [4/22/2023, 7:57:11 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "tvChannel", "version": 1, "status": "proposed", "name": "Tv Channel", "ephemeral": false, "attributes": { "tvChannel": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannel", "enumCommands": [] }, "tvChannelName": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannelName", "enumCommands": [] } }, "commands": { "channelDown": { "name": "channelDown", "arguments": [] }, "setTvChannel": { "name": "setTvChannel", "arguments": [ { "name": "tvChannel", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] }, "channelUp": { "name": "channelUp", "arguments": [] }, "setTvChannelName": { "name": "setTvChannelName", "arguments": [ { "name": "tvChannelName", "optional": true, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] } } } [4/22/2023, 7:57:14 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaInputSource", "version": 1, "status": "live", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSources": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setInputSource", "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "mode", "optional": false, "schema": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } } ] } } } [4/22/2023, 7:57:14 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:57:15 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } } [4/22/2023, 7:57:15 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:57:15 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaPlayback", "version": 1, "status": "live", "name": "Media Playback", "ephemeral": false, "attributes": { "supportedPlaybackCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaPlaybackCommands", "enum": [ "pause", "play", "stop", "fastForward", "rewind" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "playbackStatus": { "schema": { "type": "object", "properties": { "value": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding", "buffering" ], "type": "string" } }, "additionalProperties": false, "required": [] }, "setter": "setPlaybackStatus", "enumCommands": [ { "command": "play", "value": "playing" }, { "command": "pause", "value": "paused" }, { "command": "stop", "value": "stopped" }, { "command": "fastForward", "value": "fast forwarding" }, { "command": "rewind", "value": "rewinding" } ] } }, "commands": { "play": { "name": "play", "arguments": [] }, "stop": { "name": "stop", "arguments": [] }, "rewind": { "name": "rewind", "arguments": [] }, "fastForward": { "name": "fastForward", "arguments": [] }, "setPlaybackStatus": { "name": "setPlaybackStatus", "arguments": [ { "name": "status", "optional": false, "schema": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding" ], "type": "string" } } ] }, "pause": { "name": "pause", "arguments": [] } } } [4/22/2023, 7:57:15 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaTrackControl", "version": 1, "status": "live", "name": "Media Track Control", "ephemeral": false, "attributes": { "supportedTrackControlCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaTrackCommands", "enum": [ "previousTrack", "nextTrack" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "previousTrack": { "name": "previousTrack", "arguments": [] }, "nextTrack": { "name": "nextTrack", "arguments": [] } } } [4/22/2023, 7:57:16 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "powerConsumptionReport", "version": 1, "status": "live", "name": "Power Consumption Report", "ephemeral": false, "attributes": { "powerConsumption": { "schema": { "type": "object", "properties": { "value": { "properties": { "deltaEnergy": { "type": "number" }, "end": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "start": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "energySaved": { "type": "number" }, "persistedSavedEnergy": { "type": "number" }, "energy": { "type": "number" }, "power": { "type": "number" }, "powerEnergy": { "type": "number" }, "persistedEnergy": { "type": "number" } }, "additionalProperties": false, "title": "PowerConsumption", "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:57:16 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.error", "version": 1, "status": "proposed", "name": "Error", "ephemeral": false, "attributes": { "error": { "schema": { "type": "object", "properties": { "value": { "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setError": { "name": "setError", "arguments": [ { "name": "error", "optional": false, "schema": { "type": "object" } } ] } } } [4/22/2023, 7:57:17 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.picturemode", "version": 1, "status": "proposed", "name": "PictureMode", "ephemeral": false, "attributes": { "pictureMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModes": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setPictureMode": { "name": "setPictureMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:57:17 AM] [smartthings-tv] [Big Li TV] Registering capability: PictureMode [4/22/2023, 7:57:17 AM] [smartthings-tv] [Big Li TV] Capability PictureMode might not work as expected because it's status is: proposed [4/22/2023, 7:57:17 AM] [smartthings-tv] [Big Li TV] Registering picture mode: Dynamic [4/22/2023, 7:57:17 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.soundmode", "version": 1, "status": "proposed", "name": "SoundMode", "ephemeral": false, "attributes": { "supportedSoundModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "soundMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedSoundModes": { "schema": { "type": "object", "properties": { "value": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setSoundMode": { "name": "setSoundMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:57:17 AM] [smartthings-tv] [Big Li TV] Registering capability: SoundMode [4/22/2023, 7:57:17 AM] [smartthings-tv] [Big Li TV] Capability SoundMode might not work as expected because it's status is: proposed [4/22/2023, 7:57:18 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Amplify [4/22/2023, 7:57:18 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Standard [4/22/2023, 7:57:18 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.accessibility", "version": 1, "status": "proposed", "name": "Accessibility", "ephemeral": false, "attributes": {}, "commands": { "setAccessibility": { "name": "setAccessibility", "arguments": [ { "name": "menuName", "optional": false, "schema": { "type": "string" } }, { "name": "menuId", "optional": false, "schema": { "type": "string" } }, { "name": "option", "optional": true, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:57:19 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.launchapp", "version": 1, "status": "proposed", "name": "launchApp", "ephemeral": false, "attributes": {}, "commands": { "launchApp": { "name": "launchApp", "arguments": [ { "name": "appId", "optional": true, "schema": { "type": "string" } }, { "name": "appName", "optional": true, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:57:19 AM] [smartthings-tv] [Big Li TV] Registering capability: launchApp [4/22/2023, 7:57:19 AM] [smartthings-tv] [Big Li TV] Capability launchApp might not work as expected because it's status is: proposed [4/22/2023, 7:57:20 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:57:20 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:57:20 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } } [4/22/2023, 7:57:20 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:57:20 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:57:20 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/22/2023, 7:57:30 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:57:30 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-22T05:40:24.214Z" } } [4/22/2023, 7:57:30 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:57:30 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 7:57:31 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/22/2023, 7:57:31 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:57:31 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 0 [4/22/2023, 7:57:31 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.recording", "version": 1, "status": "proposed", "name": "Recording", "ephemeral": false, "attributes": {}, "commands": { "recordStart": { "name": "recordStart", "arguments": [] }, "recordStop": { "name": "recordStop", "arguments": [] } } } [4/22/2023, 7:57:32 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.tvsearch", "version": 1, "status": "proposed", "name": "tvSearch", "ephemeral": false, "attributes": {}, "commands": { "search": { "name": "search", "arguments": [ { "name": "query", "optional": false, "schema": { "type": "string" } }, { "name": "url", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:57:33 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.disabledCapabilities", "version": 1, "status": "proposed", "name": "Disabled Capabilities", "ephemeral": false, "attributes": { "disabledCapabilities": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} }

[4/22/2023, 7:57:33 AM] [smartthings-tv] [Big Li TV] Successfully executed command launchApp of capability custom.launchapp [4/22/2023, 7:57:33 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.remoteControl", "version": 1, "status": "proposed", "name": "Remote Control", "ephemeral": false, "attributes": {}, "commands": { "send": { "name": "send", "arguments": [ { "name": "keyValue", "optional": false, "schema": { "type": "string", "enum": [ "UP", "DOWN", "LEFT", "RIGHT", "OK", "BACK", "MENU", "HOME" ] } }, { "name": "keyState", "optional": true, "schema": { "type": "string", "enum": [ "PRESSED", "RELEASED", "PRESS_AND_RELEASED" ] } } ] } } }

[4/22/2023, 7:57:34 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambient", "version": 1, "status": "proposed", "name": "Ambient", "ephemeral": false, "attributes": {}, "commands": { "setAmbientOn": { "name": "setAmbientOn", "arguments": [] } } } [4/22/2023, 7:57:35 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambientContent", "version": 1, "status": "proposed", "name": "Ambient Content", "ephemeral": false, "attributes": { "supportedAmbientApps": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setAmbientContent": { "name": "setAmbientContent", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:57:35 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.mediaInputSource", "version": 1, "status": "proposed", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSourcesMap": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "required": [] } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:57:35 AM] [smartthings-tv] [Big Li TV] Registering capability: Media Input Source [4/22/2023, 7:57:35 AM] [smartthings-tv] [Big Li TV] Capability Media Input Source might not work as expected because it's status is: proposed [4/22/2023, 7:57:36 AM] [smartthings-tv] [Big Li TV] Registering input source: TV [4/22/2023, 7:57:36 AM] [smartthings-tv] [Big Li TV] Registering input source: HDMI 2 [4/22/2023, 7:57:36 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.supportsFeatures", "version": 1, "status": "proposed", "name": "Supports Features", "ephemeral": false, "attributes": { "imeAdvSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mobileCamSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:57:36 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungim.fixedFindNode", "version": 1, "status": "proposed", "name": "Fixed Find Node", "ephemeral": false, "attributes": {}, "commands": { "refresh": { "name": "refresh", "arguments": [] } } } [4/22/2023, 7:57:37 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "sec.diagnosticsInformation", "version": 1, "status": "proposed", "name": "Diagnostics Information", "ephemeral": false, "attributes": { "logType": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "title": "logType", "type": "string", "enum": [ "errCode", "dump" ] } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "endpoint": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "NONE", "PIPER", "SSM" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "minVersion": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "signinPermission": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "immutable", "updating", "enabled", "disabled" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "setupId": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "protocolType": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "ble_ocf", "wifi_https", "ble_stdk", "wifi_stdk" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnId": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dumpType": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "file", "id" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:57:37 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "refresh", "version": 1, "status": "live", "name": "Refresh", "ephemeral": false, "attributes": {}, "commands": { "refresh": { "name": "refresh", "arguments": [] } } } [4/22/2023, 7:57:38 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "execute", "version": 1, "status": "live", "name": "Execute", "ephemeral": false, "attributes": { "data": { "schema": { "type": "object", "properties": { "value": { "title": "JsonObject", "type": "object" }, "data": { "type": "object", "additionalProperties": true, "required": [] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "execute": { "name": "execute", "arguments": [ { "name": "command", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } }, { "name": "args", "optional": true, "schema": { "title": "JsonObject", "type": "object" } } ] } } } [4/22/2023, 7:57:38 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.firmwareVersion", "version": 1, "status": "proposed", "name": "Firmware Version", "ephemeral": false, "attributes": { "firmwareVersion": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setFirmwareVersion": { "name": "setFirmwareVersion", "arguments": [ { "name": "version", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 7:57:39 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.supportsPowerOnByOcf", "version": 1, "status": "proposed", "name": "Supports Power On By OCF", "ephemeral": false, "attributes": { "supportsPowerOnByOcf": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "true", "false" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 7:57:39 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/22/2023, 7:57:39 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 0 [4/22/2023, 7:57:39 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-22T14:57:35.025Z" } } [4/22/2023, 7:57:40 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:57:40 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:57:40 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } }

[4/22/2023, 7:58:42 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:58:42 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/22/2023, 7:58:42 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/22/2023, 7:58:42 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 0 [4/22/2023, 7:58:42 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 7:58:42 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-22T14:57:35.025Z" } }

[4/22/2023, 7:58:51 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 2 [4/22/2023, 7:58:52 AM] [smartthings-tv] [Big Li TV] Successfully executed command setInputSource of capability samsungvd.mediaInputSource [4/22/2023, 7:58:52 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 0 [4/22/2023, 7:58:54 AM] [smartthings-tv] [Big Li TV] Successfully executed command launchApp of capability custom.launchapp

[4/22/2023, 7:59:19 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 2 [4/22/2023, 7:59:20 AM] [smartthings-tv] [Big Li TV] Successfully executed command setInputSource of capability samsungvd.mediaInputSource [4/22/2023, 7:59:20 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 0

[4/22/2023, 7:59:21 AM] [smartthings-tv] [Big Li TV] Successfully executed command launchApp of capability custom.launchapp

[4/22/2023, 8:01:03 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/22/2023, 8:01:03 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 0 [4/22/2023, 8:01:03 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 8:01:03 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/22/2023, 8:01:03 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/22/2023, 8:01:03 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-22T14:57:35.025Z" } }

[4/22/2023, 8:01:26 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 2 [4/22/2023, 8:01:27 AM] [smartthings-tv] [Big Li TV] Successfully executed command setInputSource of capability samsungvd.mediaInputSource [4/22/2023, 8:01:27 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 0 [4/22/2023, 8:01:28 AM] [smartthings-tv] [Big Li TV] Successfully executed command launchApp of capability custom.launchapp

[4/22/2023, 8:02:16 AM] [HB Supervisor] Stopping services... [4/22/2023, 8:02:16 AM] Got SIGTERM, shutting down Homebridge... [4/22/2023, 8:02:16 AM] [TplinkSmarthome] shutdown [4/22/2023, 8:02:16 AM] [TplinkSmarthome.API] client.stopDiscovery() [4/22/2023, 8:02:21 AM] [TplinkSmarthome] refreshEmeter() [4/22/2023, 8:02:21 AM] [TplinkSmarthome] Scheduling next run of refreshEmeter() in 10000(ms) [4/22/2023, 8:02:21 AM] [HB Supervisor] Homebridge Process Ended. Code: 143, Signal: null [4/22/2023, 8:03:03 AM] [HB Supervisor] OS: Linux 5.10.103-v7+ arm [4/22/2023, 8:03:03 AM] [HB Supervisor] Node.js v18.16.0 /usr/bin/node [4/22/2023, 8:03:03 AM] [HB Supervisor] Homebridge Path: /usr/lib/node_modules/homebridge/bin/homebridge [4/22/2023, 8:03:03 AM] [HB Supervisor] UI Path: /usr/lib/node_modules/homebridge-config-ui-x/dist/bin/standalone.js [4/22/2023, 8:03:37 AM] [Homebridge UI] Homebridge Config UI X v4.50.2 is listening on :: port 8581 [4/22/2023, 8:03:42 AM] [HB Supervisor] Starting Homebridge with extra flags: -I -D [4/22/2023, 8:03:42 AM] [HB Supervisor] Started Homebridge v1.6.0 with PID: 6040 [4/22/2023, 8:03:47 AM] Loaded config.json with 2 accessories and 9 platforms. [4/22/2023, 8:03:48 AM] Loaded 20 cached accessories from cachedAccessories. [4/22/2023, 8:03:50 AM] --- [4/22/2023, 8:04:01 AM] Disabled plugin: homebridge-alexa@0.6.5 [4/22/2023, 8:04:01 AM] --- [4/22/2023, 8:04:01 AM] Loaded plugin: homebridge-config-ui-x@4.50.2 [4/22/2023, 8:04:01 AM] Registering platform 'homebridge-config-ui-x.config' [4/22/2023, 8:04:01 AM] --- [4/22/2023, 8:04:04 AM] Disabled plugin: homebridge-denon-heos@2.9.7 [4/22/2023, 8:04:04 AM] --- [4/22/2023, 8:04:05 AM] Loaded plugin: homebridge-myq@2.11.1 [4/22/2023, 8:04:05 AM] Registering platform 'homebridge-myq.myQ' [4/22/2023, 8:04:05 AM] --- [4/22/2023, 8:04:06 AM] Loaded plugin: homebridge-nest@4.6.9 [4/22/2023, 8:04:06 AM] Registering platform 'homebridge-nest.Nest' [4/22/2023, 8:04:06 AM] --- [4/22/2023, 8:04:06 AM] The plugin "homebridge-platform-wemo" requires Node.js version of ^14.17.2 || ^16.5.0 which does not satisfy the current Node.js version of v18.16.0. You may need to upgrade your installation of Node.js - see https://homebridge.io/w/JTKEF [4/22/2023, 8:04:07 AM] Loaded plugin: homebridge-platform-wemo@3.3.1 [4/22/2023, 8:04:07 AM] Registering platform 'homebridge-platform-wemo.BelkinWeMo' [4/22/2023, 8:04:07 AM] --- [4/22/2023, 8:04:15 AM] Loaded plugin: homebridge-ring@11.7.5 [4/22/2023, 8:04:15 AM] Registering platform 'homebridge-ring.Ring' [4/22/2023, 8:04:15 AM] --- [4/22/2023, 8:04:18 AM] Loaded plugin: homebridge-tesla@4.2.1 [4/22/2023, 8:04:18 AM] Registering accessory 'homebridge-tesla.Tesla' [4/22/2023, 8:04:18 AM] --- [4/22/2023, 8:04:19 AM] Loaded plugin: homebridge-tplink-smarthome@7.0.1 [4/22/2023, 8:04:19 AM] Registering platform 'homebridge-tplink-smarthome.TplinkSmarthome' [4/22/2023, 8:04:19 AM] --- [4/22/2023, 8:04:21 AM] Loaded plugin: @o-lukas/homebridge-smartthings-tv@1.4.3 [4/22/2023, 8:04:21 AM] Registering platform '@o-lukas/homebridge-smartthings-tv.smartthings-tv' [4/22/2023, 8:04:21 AM] --- [4/22/2023, 8:04:21 AM] Loading 9 platforms... [4/22/2023, 8:04:21 AM] [Belkin WeMo] Initializing BelkinWeMo platform... [4/22/2023, 8:04:21 AM] [Belkin WeMo] Initialising plugin v3.3.1 | Node v18.16.0 | HB v1.6.0... [4/22/2023, 8:04:21 AM] [myQ] Initializing myQ platform... [4/22/2023, 8:04:21 AM] Ignoring config for the platform "DenonAVR" in your config.json as the plugin "homebridge-denon-heos" has been disabled. [4/22/2023, 8:04:21 AM] [TplinkSmarthome] Initializing TplinkSmarthome platform... [4/22/2023, 8:04:21 AM] [TplinkSmarthome] homebridge-tplink-smarthome v7.0.1, node v18.16.0, homebridge v1.6.0, api v2.7 [4/22/2023, 8:04:21 AM] [TplinkSmarthome] config.json: {"name":"TplinkSmarthome","addCustomCharacteristics":true,"deviceTypes":["plug","bulb"],"devices":[{"host":"192.168.0.244"}],"platform":"TplinkSmarthome"} [4/22/2023, 8:04:22 AM] [TplinkSmarthome] config: {"addCustomCharacteristics":true,"switchModels":["HS200","HS210"],"waitTimeUpdate":100,"defaultSendOptions":{"timeout":15000},"discoveryOptions":{"port":0,"broadcast":"255.255.255.255","discoveryInterval":10000,"deviceTypes":["plug","bulb"],"deviceOptions":{"defaultSendOptions":{"timeout":15000},"inUseThreshold":0},"devices":[{"host":"192.168.0.244"}]}} [4/22/2023, 8:04:22 AM] [Nest] Initializing Nest platform... [4/22/2023, 8:04:22 AM] [Ring] Initializing Ring platform... [4/22/2023, 8:04:22 AM] Ignoring config for the platform "Alexa" in your config.json as the plugin "homebridge-alexa" has been disabled. [4/22/2023, 8:04:22 AM] [smartthings-tv] Initializing smartthings-tv platform... [4/22/2023, 8:04:22 AM] [smartthings-tv] Finished initializing platform: undefined [4/22/2023, 8:04:22 AM] Loading 2 accessories... [4/22/2023, 8:04:22 AM] [Bananana] Initializing Tesla accessory... [4/22/2023, 8:04:22 AM] [Model Y] Initializing Tesla accessory... [4/22/2023, 8:04:22 AM] [Belkin WeMo] Plugin initialised. Setting up accessories....

[4/22/2023, 8:04:23 AM] [Nest] Fetching Nest devices. [4/22/2023, 8:04:23 AM] [Nest] Authenticating via Google. [4/22/2023, 8:04:24 AM] [Ring] didFinishLaunching [4/22/2023, 8:04:24 AM] [smartthings-tv] Executed didFinishLaunching callback [4/22/2023, 8:04:24 AM] [TplinkSmarthome] Scheduling next run of refreshEmeter() in 10000(ms) [4/22/2023, 8:04:24 AM] Publishing bridge accessory (name: Homebridge A3E8, publishInfo: { username: '0E:E7:5E:25:9C:33', port: 51682, pincode: '*-*-', category: 2, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). Setup Payload: X-HM://0024J3GYIEKB2 Enter this code with your HomeKit app on your iOS device to pair with Homebridge:

┌────────────┐     
│ 641-01-274 │     
└────────────┘     

[4/22/2023, 8:04:24 AM] [Bananana] Exchanging refresh token for an access token…

[4/22/2023, 8:04:25 AM] Homebridge v1.6.0 (HAP v0.11.0) (Homebridge A3E8) is running on port 51682.

[4/22/2023, 8:04:27 AM] [smartthings-tv] Adding new accessory: Big Li TV (8e28f71d-0960-55ed-a22e-4eeb3856bd22) [4/22/2023, 8:04:28 AM] [smartthings-tv] [Big Li TV] Registering capabilities for component main [4/22/2023, 8:04:28 AM] Publishing external accessory (name: Big Li TV, publishInfo: { username: '28:63:23:B9:18:1F', pincode: '*-*-', category: 31, port: undefined, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). [4/22/2023, 8:04:28 AM] Big Li TV B245 is running on port 45547. [4/22/2023, 8:04:28 AM] Please add [Big Li TV B245] manually in Home app. Setup Code: 641-01-274

[4/22/2023, 8:04:30 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "ocf", "version": 1, "status": "proposed", "name": "Ocf", "ephemeral": false, "attributes": { "st": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mndt": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnfv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnhw": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "di": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnsl": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dmv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "n": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmo": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "vid": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmn": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnml": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnpv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnos": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "pi": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "icv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "postOcfCommand": { "name": "postOcfCommand", "arguments": [ { "name": "href", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } }, { "name": "value", "optional": false, "schema": { "title": "JsonObject", "type": "object" } } ] } } } [4/22/2023, 8:04:31 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "switch", "version": 1, "status": "live", "name": "Switch", "ephemeral": false, "attributes": { "switch": { "schema": { "type": "object", "properties": { "value": { "title": "SwitchState", "type": "string", "enum": [ "on", "off" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [ { "command": "on", "value": "on" }, { "command": "off", "value": "off" } ] } }, "commands": { "off": { "name": "off", "arguments": [] }, "on": { "name": "on", "arguments": [] } } } [4/22/2023, 8:04:31 AM] [smartthings-tv] [Big Li TV] Registering capability: Switch [4/22/2023, 8:04:32 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioVolume", "version": 1, "status": "live", "name": "Audio Volume", "ephemeral": false, "attributes": { "volume": { "schema": { "title": "IntegerPercent", "type": "object", "properties": { "value": { "type": "integer", "minimum": 0, "maximum": 100 }, "unit": { "type": "string", "enum": [ "%" ], "default": "%" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setVolume", "enumCommands": [] } }, "commands": { "volumeDown": { "name": "volumeDown", "arguments": [] }, "volumeUp": { "name": "volumeUp", "arguments": [] }, "setVolume": { "name": "setVolume", "arguments": [ { "name": "volume", "optional": false, "schema": { "type": "integer", "minimum": 0, "maximum": 100 } } ] } } } [4/22/2023, 8:04:32 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Volume

[4/22/2023, 8:04:33 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-22T14:57:35.025Z" } } [4/22/2023, 8:04:33 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioMute", "version": 1, "status": "live", "name": "Audio Mute", "ephemeral": false, "attributes": { "mute": { "schema": { "type": "object", "properties": { "value": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setMute", "enumCommands": [ { "command": "mute", "value": "muted" }, { "command": "unmute", "value": "unmuted" } ] } }, "commands": { "setMute": { "name": "setMute", "arguments": [ { "name": "state", "optional": false, "schema": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } } ] }, "mute": { "name": "mute", "arguments": [] }, "unmute": { "name": "unmute", "arguments": [] } } } [4/22/2023, 8:04:33 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Mute

[4/22/2023, 8:04:34 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "tvChannel", "version": 1, "status": "proposed", "name": "Tv Channel", "ephemeral": false, "attributes": { "tvChannel": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannel", "enumCommands": [] }, "tvChannelName": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannelName", "enumCommands": [] } }, "commands": { "channelDown": { "name": "channelDown", "arguments": [] }, "setTvChannel": { "name": "setTvChannel", "arguments": [ { "name": "tvChannel", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] }, "channelUp": { "name": "channelUp", "arguments": [] }, "setTvChannelName": { "name": "setTvChannelName", "arguments": [ { "name": "tvChannelName", "optional": true, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] } } } . [4/22/2023, 8:04:38 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaInputSource", "version": 1, "status": "live", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSources": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setInputSource", "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "mode", "optional": false, "schema": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } } ] } } }

[4/22/2023, 8:04:39 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaPlayback", "version": 1, "status": "live", "name": "Media Playback", "ephemeral": false, "attributes": { "supportedPlaybackCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaPlaybackCommands", "enum": [ "pause", "play", "stop", "fastForward", "rewind" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "playbackStatus": { "schema": { "type": "object", "properties": { "value": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding", "buffering" ], "type": "string" } }, "additionalProperties": false, "required": [] }, "setter": "setPlaybackStatus", "enumCommands": [ { "command": "play", "value": "playing" }, { "command": "pause", "value": "paused" }, { "command": "stop", "value": "stopped" }, { "command": "fastForward", "value": "fast forwarding" }, { "command": "rewind", "value": "rewinding" } ] } }, "commands": { "play": { "name": "play", "arguments": [] }, "stop": { "name": "stop", "arguments": [] }, "rewind": { "name": "rewind", "arguments": [] }, "fastForward": { "name": "fastForward", "arguments": [] }, "setPlaybackStatus": { "name": "setPlaybackStatus", "arguments": [ { "name": "status", "optional": false, "schema": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding" ], "type": "string" } } ] }, "pause": { "name": "pause", "arguments": [] } } } [4/22/2023, 8:04:39 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaTrackControl", "version": 1, "status": "live", "name": "Media Track Control", "ephemeral": false, "attributes": { "supportedTrackControlCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaTrackCommands", "enum": [ "previousTrack", "nextTrack" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "previousTrack": { "name": "previousTrack", "arguments": [] }, "nextTrack": { "name": "nextTrack", "arguments": [] } } } [4/22/2023, 8:04:40 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "powerConsumptionReport", "version": 1, "status": "live", "name": "Power Consumption Report", "ephemeral": false, "attributes": { "powerConsumption": { "schema": { "type": "object", "properties": { "value": { "properties": { "deltaEnergy": { "type": "number" }, "end": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "start": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "energySaved": { "type": "number" }, "persistedSavedEnergy": { "type": "number" }, "energy": { "type": "number" }, "power": { "type": "number" }, "powerEnergy": { "type": "number" }, "persistedEnergy": { "type": "number" } }, "additionalProperties": false, "title": "PowerConsumption", "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 8:04:40 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.error", "version": 1, "status": "proposed", "name": "Error", "ephemeral": false, "attributes": { "error": { "schema": { "type": "object", "properties": { "value": { "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setError": { "name": "setError", "arguments": [ { "name": "error", "optional": false, "schema": { "type": "object" } } ] } } } [4/22/2023, 8:04:41 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.picturemode", "version": 1, "status": "proposed", "name": "PictureMode", "ephemeral": false, "attributes": { "pictureMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModes": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setPictureMode": { "name": "setPictureMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 8:04:41 AM] [smartthings-tv] [Big Li TV] Registering capability: PictureMode [4/22/2023, 8:04:41 AM] [smartthings-tv] [Big Li TV] Capability PictureMode might not work as expected because it's status is: proposed [4/22/2023, 8:04:41 AM] [smartthings-tv] [Big Li TV] Registering picture mode: Dynamic [4/22/2023, 8:04:42 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.soundmode", "version": 1, "status": "proposed", "name": "SoundMode", "ephemeral": false, "attributes": { "supportedSoundModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "soundMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedSoundModes": { "schema": { "type": "object", "properties": { "value": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setSoundMode": { "name": "setSoundMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 8:04:42 AM] [smartthings-tv] [Big Li TV] Registering capability: SoundMode [4/22/2023, 8:04:42 AM] [smartthings-tv] [Big Li TV] Capability SoundMode might not work as expected because it's status is: proposed [4/22/2023, 8:04:42 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Amplify [4/22/2023, 8:04:42 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Standard [4/22/2023, 8:04:42 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.accessibility", "version": 1, "status": "proposed", "name": "Accessibility", "ephemeral": false, "attributes": {}, "commands": { "setAccessibility": { "name": "setAccessibility", "arguments": [ { "name": "menuName", "optional": false, "schema": { "type": "string" } }, { "name": "menuId", "optional": false, "schema": { "type": "string" } }, { "name": "option", "optional": true, "schema": { "type": "string" } } ] } } } [4/22/2023, 8:04:43 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.launchapp", "version": 1, "status": "proposed", "name": "launchApp", "ephemeral": false, "attributes": {}, "commands": { "launchApp": { "name": "launchApp", "arguments": [ { "name": "appId", "optional": true, "schema": { "type": "string" } }, { "name": "appName", "optional": true, "schema": { "type": "string" } } ] } } } [4/22/2023, 8:04:43 AM] [smartthings-tv] [Big Li TV] Registering capability: launchApp [4/22/2023, 8:04:43 AM] [smartthings-tv] [Big Li TV] Capability launchApp might not work as expected because it's status is: proposed [4/22/2023, 8:04:44 AM] [smartthings-tv] [Big Li TV] Registering input source: Netflix [4/22/2023, 8:04:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 8:04:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/22/2023, 8:04:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-22T14:57:35.025Z" } }

[4/22/2023, 8:04:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/22/2023, 8:04:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } }

[4/22/2023, 8:04:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } }

[4/22/2023, 8:04:45 AM] [smartthings-tv] [Big Li TV] Registering input source: YouTube [4/22/2023, 8:04:46 AM] [smartthings-tv] [Big Li TV] Registering input source: YouTubeTV [4/22/2023, 8:04:47 AM] [smartthings-tv] [Big Li TV] Registering input source: Prime Video

[4/22/2023, 8:04:49 AM] [smartthings-tv] [Big Li TV] Registering input source: Disney+

[4/22/2023, 8:04:50 AM] [smartthings-tv] [Big Li TV] Registering input source: Apple TV [4/22/2023, 8:04:51 AM] [smartthings-tv] [Big Li TV] Registering input source: Apple Music [4/22/2023, 8:04:52 AM] [smartthings-tv] [Big Li TV] Registering input source: Amazon Music [4/22/2023, 8:04:52 AM] [smartthings-tv] [Big Li TV] Registering input source: Spotify [4/22/2023, 8:04:53 AM] [smartthings-tv] [Big Li TV] Registering input source: Deezer [4/22/2023, 8:04:54 AM] [smartthings-tv] [Big Li TV] Registering input source: Steam Link

[4/22/2023, 8:04:55 AM] [smartthings-tv] [Big Li TV] Registering input source: Eurosport Player [4/22/2023, 8:04:56 AM] [smartthings-tv] [Big Li TV] Registering input source: EduPedia [4/22/2023, 8:04:57 AM] [smartthings-tv] [Big Li TV] Registering input source: ARTE [4/22/2023, 8:04:57 AM] [smartthings-tv] [Big Li TV] Registering input source: Twitch [4/22/2023, 8:04:57 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 0 [4/22/2023, 8:04:58 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.recording", "version": 1, "status": "proposed", "name": "Recording", "ephemeral": false, "attributes": {}, "commands": { "recordStart": { "name": "recordStart", "arguments": [] }, "recordStop": { "name": "recordStop", "arguments": [] } } } [4/22/2023, 8:04:58 AM] [smartthings-tv] [Big Li TV] Successfully executed command launchApp of capability custom.launchapp [4/22/2023, 8:04:58 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.tvsearch", "version": 1, "status": "proposed", "name": "tvSearch", "ephemeral": false, "attributes": {}, "commands": { "search": { "name": "search", "arguments": [ { "name": "query", "optional": false, "schema": { "type": "string" } }, { "name": "url", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 8:04:59 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.disabledCapabilities", "version": 1, "status": "proposed", "name": "Disabled Capabilities", "ephemeral": false, "attributes": { "disabledCapabilities": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 8:04:59 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.remoteControl", "version": 1, "status": "proposed", "name": "Remote Control", "ephemeral": false, "attributes": {}, "commands": { "send": { "name": "send", "arguments": [ { "name": "keyValue", "optional": false, "schema": { "type": "string", "enum": [ "UP", "DOWN", "LEFT", "RIGHT", "OK", "BACK", "MENU", "HOME" ] } }, { "name": "keyState", "optional": true, "schema": { "type": "string", "enum": [ "PRESSED", "RELEASED", "PRESS_AND_RELEASED" ] } } ] } } }

[4/22/2023, 8:05:00 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambient", "version": 1, "status": "proposed", "name": "Ambient", "ephemeral": false, "attributes": {}, "commands": { "setAmbientOn": { "name": "setAmbientOn", "arguments": [] } } } [4/22/2023, 8:05:00 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambientContent", "version": 1, "status": "proposed", "name": "Ambient Content", "ephemeral": false, "attributes": { "supportedAmbientApps": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setAmbientContent": { "name": "setAmbientContent", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 8:05:01 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.mediaInputSource", "version": 1, "status": "proposed", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSourcesMap": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "required": [] } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 8:05:01 AM] [smartthings-tv] [Big Li TV] Registering capability: Media Input Source [4/22/2023, 8:05:01 AM] [smartthings-tv] [Big Li TV] Capability Media Input Source might not work as expected because it's status is: proposed [4/22/2023, 8:05:01 AM] [smartthings-tv] [Big Li TV] Registering input source: TV [4/22/2023, 8:05:01 AM] [smartthings-tv] [Big Li TV] Registering input source: HDMI 2 [4/22/2023, 8:05:02 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.supportsFeatures", "version": 1, "status": "proposed", "name": "Supports Features", "ephemeral": false, "attributes": { "imeAdvSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mobileCamSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 8:05:02 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungim.fixedFindNode", "version": 1, "status": "proposed", "name": "Fixed Find Node", "ephemeral": false, "attributes": {}, "commands": { "refresh": { "name": "refresh", "arguments": [] } } } [4/22/2023, 8:05:03 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "sec.diagnosticsInformation", "version": 1, "status": "proposed", "name": "Diagnostics Information", "ephemeral": false, "attributes": { "logType": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "title": "logType", "type": "string", "enum": [ "errCode", "dump" ] } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "endpoint": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "NONE", "PIPER", "SSM" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "minVersion": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "signinPermission": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "immutable", "updating", "enabled", "disabled" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "setupId": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "protocolType": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "ble_ocf", "wifi_https", "ble_stdk", "wifi_stdk" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnId": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dumpType": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "file", "id" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/22/2023, 8:05:03 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "refresh", "version": 1, "status": "live", "name": "Refresh", "ephemeral": false, "attributes": {}, "commands": { "refresh": { "name": "refresh", "arguments": [] } } } [4/22/2023, 8:05:04 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "execute", "version": 1, "status": "live", "name": "Execute", "ephemeral": false, "attributes": { "data": { "schema": { "type": "object", "properties": { "value": { "title": "JsonObject", "type": "object" }, "data": { "type": "object", "additionalProperties": true, "required": [] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "execute": { "name": "execute", "arguments": [ { "name": "command", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } }, { "name": "args", "optional": true, "schema": { "title": "JsonObject", "type": "object" } } ] } } }

[4/22/2023, 8:05:05 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.firmwareVersion", "version": 1, "status": "proposed", "name": "Firmware Version", "ephemeral": false, "attributes": { "firmwareVersion": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setFirmwareVersion": { "name": "setFirmwareVersion", "arguments": [ { "name": "version", "optional": false, "schema": { "type": "string" } } ] } } } [4/22/2023, 8:05:05 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.supportsPowerOnByOcf", "version": 1, "status": "proposed", "name": "Supports Power On By OCF", "ephemeral": false, "attributes": { "supportsPowerOnByOcf": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "true", "false" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} }

o-lukas commented 1 year ago

Thanks for the quick feedback!

I fixed the crashes which were caused by my latest changes with v1.4.4

If you have some strange buttons in your Home app please try to unpair the external published accessory (Homebridge settings -> Unpair Bridges / Cameras / TVs / External Accessories) matching the TV and then add the TV again in the Home app. Sometimes the Home app does not really keep up with the names of the buttons. The buttons should be the image and sound modes. If you don't need them anyway you could also disable them in the config.

To be honest I can't really keep up which problems are still open. Could you please open separate issues for each problem because I'm kind of confused which problems are fixed now and which are not.

The initial problem of this issue should be fixed now if I'm not mistaken?

ssllii commented 1 year ago

Thank YOU for the quick releases! I updated to v1.4.4, and re-add the accessary to Homekit, now the button labels are correct and everything seems to work fine, except 1 thing. Btw, when I loaded your plug-in, I was just looking to be able to power-on the TV with Siri. You have already gotten more functionality that I was hoping for.

In any case, the issue I noticed is when I used the scroll wheel to select the input source, be it an app or HDMI. Everything seems to work except the very first position, which happens to be Netflix on my TV, i.e. I can select say YoutubeTV and the TV will go there, I can select HDMI 2 and the TV will connect to the device connected to my HDMI 2 BUT when I select Netflix (the first posistion in the scroll wheel), nothing happens.

Here is more logs from the latest run:

4/24/2023, 7:32:09 AM] [HB Supervisor] OS: Linux 5.10.103-v7+ arm [4/24/2023, 7:32:09 AM] [HB Supervisor] Node.js v18.16.0 /usr/bin/node [4/24/2023, 7:32:09 AM] [HB Supervisor] Homebridge Path: /usr/lib/node_modules/homebridge/bin/homebridge [4/24/2023, 7:32:09 AM] [HB Supervisor] UI Path: /usr/lib/node_modules/homebridge-config-ui-x/dist/bin/standalone.js [4/24/2023, 7:32:44 AM] [Homebridge UI] Homebridge Config UI X v4.50.2 is listening on :: port 8581 [4/24/2023, 7:32:47 AM] [HB Supervisor] Starting Homebridge with extra flags: -I -D [4/24/2023, 7:32:47 AM] [HB Supervisor] Started Homebridge v1.6.0 with PID: 17505 [4/24/2023, 7:32:54 AM] Loaded config.json with 2 accessories and 9 platforms. [4/24/2023, 7:32:54 AM] Loaded 20 cached accessories from cachedAccessories. [4/24/2023, 7:32:57 AM] --- [4/24/2023, 7:33:09 AM] Disabled plugin: homebridge-alexa@0.6.5 [4/24/2023, 7:33:09 AM] --- [4/24/2023, 7:33:10 AM] Loaded plugin: homebridge-config-ui-x@4.50.2 [4/24/2023, 7:33:10 AM] Registering platform 'homebridge-config-ui-x.config' [4/24/2023, 7:33:10 AM] --- [4/24/2023, 7:33:13 AM] Disabled plugin: homebridge-denon-heos@2.9.7 [4/24/2023, 7:33:13 AM] --- [4/24/2023, 7:33:15 AM] Loaded plugin: homebridge-myq@2.11.1 [4/24/2023, 7:33:15 AM] Registering platform 'homebridge-myq.myQ' [4/24/2023, 7:33:15 AM] --- [4/24/2023, 7:33:16 AM] Loaded plugin: homebridge-nest@4.6.9 [4/24/2023, 7:33:16 AM] Registering platform 'homebridge-nest.Nest' [4/24/2023, 7:33:16 AM] --- [4/24/2023, 7:33:16 AM] The plugin "homebridge-platform-wemo" requires Node.js version of ^14.17.2 || ^16.5.0 which does not satisfy the current Node.js version of v18.16.0. You may need to upgrade your installation of Node.js - see https://homebridge.io/w/JTKEF [4/24/2023, 7:33:18 AM] Loaded plugin: homebridge-platform-wemo@3.3.1 [4/24/2023, 7:33:18 AM] Registering platform 'homebridge-platform-wemo.BelkinWeMo' [4/24/2023, 7:33:18 AM] --- [4/24/2023, 7:33:29 AM] Loaded plugin: homebridge-ring@11.7.5 [4/24/2023, 7:33:29 AM] Registering platform 'homebridge-ring.Ring' [4/24/2023, 7:33:29 AM] --- [4/24/2023, 7:33:33 AM] Loaded plugin: homebridge-tesla@4.2.1 [4/24/2023, 7:33:33 AM] Registering accessory 'homebridge-tesla.Tesla' [4/24/2023, 7:33:33 AM] --- [4/24/2023, 7:33:34 AM] Loaded plugin: homebridge-tplink-smarthome@7.0.1 [4/24/2023, 7:33:34 AM] Registering platform 'homebridge-tplink-smarthome.TplinkSmarthome' [4/24/2023, 7:33:34 AM] --- [4/24/2023, 7:33:36 AM] Loaded plugin: @o-lukas/homebridge-smartthings-tv@1.4.4 [4/24/2023, 7:33:36 AM] Registering platform '@o-lukas/homebridge-smartthings-tv.smartthings-tv' [4/24/2023, 7:33:36 AM] --- [4/24/2023, 7:33:36 AM] Loading 9 platforms... [4/24/2023, 7:33:36 AM] [Belkin WeMo] Initializing BelkinWeMo platform... [4/24/2023, 7:33:36 AM] [Belkin WeMo] Initialising plugin v3.3.1 | Node v18.16.0 | HB v1.6.0... [4/24/2023, 7:33:36 AM] [myQ] Initializing myQ platform... [4/24/2023, 7:33:36 AM] Ignoring config for the platform "DenonAVR" in your config.json as the plugin "homebridge-denon-heos" has been disabled.

[4/24/2023, 7:33:39 AM] Homebridge v1.6.0 (HAP v0.11.0) (Homebridge A3E8) is running on port 51682.

[4/24/2023, 7:33:43 AM] [smartthings-tv] Adding new accessory: Big Li TV (8e28f71d-0960-55ed-a22e-4eeb3856bd22) [4/24/2023, 7:33:43 AM] [smartthings-tv] [Big Li TV] Registering capabilities for component main [4/24/2023, 7:33:43 AM] Publishing external accessory (name: Big Li TV, publishInfo: { username: '28:63:23:B9:18:1F', pincode: '*-*-', category: 31, port: undefined, bind: undefined, mdns: undefined, addIdentifyingMaterial: true, advertiser: undefined }). [4/24/2023, 7:33:43 AM] Big Li TV B245 is running on port 44669. [4/24/2023, 7:33:43 AM] Please add [Big Li TV B245] manually in Home app. Setup Code: 641-01-274

[4/24/2023, 7:33:45 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "ocf", "version": 1, "status": "proposed", "name": "Ocf", "ephemeral": false, "attributes": { "st": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mndt": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnfv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnhw": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "di": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnsl": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dmv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "n": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmo": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "vid": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnmn": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnml": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnpv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnos": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "pi": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "icv": { "schema": { "title": "StringAttribute", "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "postOcfCommand": { "name": "postOcfCommand", "arguments": [ { "name": "href", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } }, { "name": "value", "optional": false, "schema": { "title": "JsonObject", "type": "object" } } ] } } }

[4/24/2023, 7:33:47 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "switch", "version": 1, "status": "live", "name": "Switch", "ephemeral": false, "attributes": { "switch": { "schema": { "type": "object", "properties": { "value": { "title": "SwitchState", "type": "string", "enum": [ "on", "off" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [ { "command": "on", "value": "on" }, { "command": "off", "value": "off" } ] } }, "commands": { "off": { "name": "off", "arguments": [] }, "on": { "name": "on", "arguments": [] } } } [4/24/2023, 7:33:47 AM] [smartthings-tv] [Big Li TV] Registering capability: Switch

[4/24/2023, 7:33:48 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioVolume", "version": 1, "status": "live", "name": "Audio Volume", "ephemeral": false, "attributes": { "volume": { "schema": { "title": "IntegerPercent", "type": "object", "properties": { "value": { "type": "integer", "minimum": 0, "maximum": 100 }, "unit": { "type": "string", "enum": [ "%" ], "default": "%" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setVolume", "enumCommands": [] } }, "commands": { "volumeDown": { "name": "volumeDown", "arguments": [] }, "volumeUp": { "name": "volumeUp", "arguments": [] }, "setVolume": { "name": "setVolume", "arguments": [ { "name": "volume", "optional": false, "schema": { "type": "integer", "minimum": 0, "maximum": 100 } } ] } } } [4/24/2023, 7:33:48 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Volume [4/24/2023, 7:33:49 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "audioMute", "version": 1, "status": "live", "name": "Audio Mute", "ephemeral": false, "attributes": { "mute": { "schema": { "type": "object", "properties": { "value": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setMute", "enumCommands": [ { "command": "mute", "value": "muted" }, { "command": "unmute", "value": "unmuted" } ] } }, "commands": { "setMute": { "name": "setMute", "arguments": [ { "name": "state", "optional": false, "schema": { "title": "MuteState", "type": "string", "enum": [ "muted", "unmuted" ] } } ] }, "mute": { "name": "mute", "arguments": [] }, "unmute": { "name": "unmute", "arguments": [] } } } [4/24/2023, 7:33:49 AM] [smartthings-tv] [Big Li TV] Registering capability: Audio Mute

[4/24/2023, 7:33:53 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "tvChannel", "version": 1, "status": "proposed", "name": "Tv Channel", "ephemeral": false, "attributes": { "tvChannel": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannel", "enumCommands": [] }, "tvChannelName": { "schema": { "type": "object", "properties": { "value": { "title": "String", "type": "string", "maxLength": 255 } }, "additionalProperties": false, "required": [] }, "setter": "setTvChannelName", "enumCommands": [] } }, "commands": { "channelDown": { "name": "channelDown", "arguments": [] }, "setTvChannel": { "name": "setTvChannel", "arguments": [ { "name": "tvChannel", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] }, "channelUp": { "name": "channelUp", "arguments": [] }, "setTvChannelName": { "name": "setTvChannelName", "arguments": [ { "name": "tvChannelName", "optional": true, "schema": { "title": "String", "type": "string", "maxLength": 255 } } ] } } } [4/24/2023, 7:33:53 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaInputSource", "version": 1, "status": "live", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSources": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "setter": "setInputSource", "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "mode", "optional": false, "schema": { "title": "MediaSource", "enum": [ "AM", "CD", "FM", "HDMI", "HDMI1", "HDMI2", "HDMI3", "HDMI4", "HDMI5", "HDMI6", "digitalTv", "USB", "YouTube", "aux", "bluetooth", "digital", "melon", "wifi" ], "type": "string" } } ] } } } [4/24/2023, 7:33:54 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaPlayback", "version": 1, "status": "live", "name": "Media Playback", "ephemeral": false, "attributes": { "supportedPlaybackCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaPlaybackCommands", "enum": [ "pause", "play", "stop", "fastForward", "rewind" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "playbackStatus": { "schema": { "type": "object", "properties": { "value": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding", "buffering" ], "type": "string" } }, "additionalProperties": false, "required": [] }, "setter": "setPlaybackStatus", "enumCommands": [ { "command": "play", "value": "playing" }, { "command": "pause", "value": "paused" }, { "command": "stop", "value": "stopped" }, { "command": "fastForward", "value": "fast forwarding" }, { "command": "rewind",  "value": "rewinding" } ] } }, "commands": { "play": { "name": "play", "arguments": [] }, "stop": { "name": "stop", "arguments": [] }, "rewind": { "name": "rewind", "arguments": [] }, "fastForward": { "name": "fastForward", "arguments": [] }, "setPlaybackStatus": { "name": "setPlaybackStatus", "arguments": [ { "name": "status", "optional": false, "schema": { "enum": [ "paused", "playing", "stopped", "fast forwarding", "rewinding" ], "type": "string" } } ] }, "pause": { "name": "pause", "arguments": [] } } } [4/24/2023, 7:33:54 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "mediaTrackControl", "version": 1, "status": "live", "name": "Media Track Control", "ephemeral": false, "attributes": { "supportedTrackControlCommands": { "schema": { "type": "object", "properties": { "value": { "items": { "title": "MediaTrackCommands", "enum": [ "previousTrack", "nextTrack" ], "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "previousTrack": { "name": "previousTrack", "arguments": [] }, "nextTrack": { "name": "nextTrack", "arguments": [] } } } [4/24/2023, 7:33:55 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "powerConsumptionReport", "version": 1, "status": "live", "name": "Power Consumption Report", "ephemeral": false, "attributes": { "powerConsumption": { "schema": { "type": "object", "properties": { "value": { "properties": { "deltaEnergy": { "type": "number" }, "end": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "start": { "pattern": "^(?:[1-9]\d{3}-?(?:(?:0[1-9]|1[0-2])-?(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-?(?:29|30)|(?:0[13578]|1[02])-?31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-?02-?29)T(?:[01]\d|2[0-3]):?[0-5]\d:?[0-5]\d(?:\.\d{3})?(?:Z|[+-][01]\d(?::?[0-5]\d)?)$", "title": "Iso8601Date", "type": "string" }, "energySaved": { "type": "number" }, "persistedSavedEnergy": { "type": "number" }, "energy": { "type": "number" }, "power": { "type": "number" }, "powerEnergy": { "type": "number" }, "persistedEnergy": { "type": "number" } }, "additionalProperties": false, "title": "PowerConsumption", "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/24/2023, 7:33:55 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.error", "version": 1, "status": "proposed", "name": "Error", "ephemeral": false, "attributes": { "error": { "schema": { "type": "object", "properties": { "value": { "type": "object" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setError": { "name": "setError", "arguments": [ { "name": "error", "optional": false, "schema": { "type": "object" } } ] } } } [4/24/2023, 7:33:56 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.picturemode", "version": 1, "status": "proposed", "name": "PictureMode", "ephemeral": false, "attributes": { "pictureMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModes": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedPictureModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setPictureMode": { "name": "setPictureMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/24/2023, 7:33:56 AM] [smartthings-tv] [Big Li TV] Registering capability: PictureMode [4/24/2023, 7:33:56 AM] [smartthings-tv] [Big Li TV] Capability PictureMode might not work as expected because it's status is: proposed [4/24/2023, 7:33:56 AM] [smartthings-tv] [Big Li TV] Registering picture mode: Dynamic [4/24/2023, 7:33:57 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.soundmode", "version": 1, "status": "proposed", "name": "SoundMode", "ephemeral": false, "attributes": { "supportedSoundModesMap": { "schema": { "type": "object", "properties": { "value": { "required": [], "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "soundMode": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "supportedSoundModes": { "schema": { "type": "object", "properties": { "value": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "required": [] }, "enumCommands": [] } }, "commands": { "setSoundMode": { "name": "setSoundMode", "arguments": [ { "name": "mode", "optional": false, "schema": { "type": "string" } } ] } } } [4/24/2023, 7:33:57 AM] [smartthings-tv] [Big Li TV] Registering capability: SoundMode [4/24/2023, 7:33:57 AM] [smartthings-tv] [Big Li TV] Capability SoundMode might not work as expected because it's status is: proposed [4/24/2023, 7:33:57 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Amplify [4/24/2023, 7:33:57 AM] [smartthings-tv] [Big Li TV] Registering sound mode: Standard [4/24/2023, 7:33:58 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.accessibility", "version": 1, "status": "proposed", "name": "Accessibility", "ephemeral": false, "attributes": {}, "commands": { "setAccessibility": { "name": "setAccessibility", "arguments": [ { "name": "menuName", "optional": false, "schema": { "type": "string" } }, { "name": "menuId", "optional": false, "schema": { "type": "string" } }, { "name": "option", "optional": true, "schema": { "type": "string" } } ] } } } [4/24/2023, 7:33:58 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.launchapp", "version": 1, "status": "proposed", "name": "launchApp", "ephemeral": false, "attributes": {}, "commands": { "launchApp": { "name": "launchApp", "arguments": [ { "name": "appId", "optional": true, "schema": { "type": "string" } }, { "name": "appName", "optional": true, "schema": { "type": "string" } } ] } } } [4/24/2023, 7:33:58 AM] [smartthings-tv] [Big Li TV] Registering capability: launchApp [4/24/2023, 7:33:58 AM] [smartthings-tv] [Big Li TV] Capability launchApp might not work as expected because it's status is: proposed [4/24/2023, 7:33:59 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:33:59 AM] [TplinkSmarthome] refreshEmeter() [4/24/2023, 7:33:59 AM] [TplinkSmarthome] Scheduling next run of refreshEmeter() in 10000(ms) [4/24/2023, 7:34:00 AM] [smartthings-tv] [Big Li TV] Registering input source: Netflix [4/24/2023, 7:34:00 AM] [smartthings-tv] [Big Li TV] Registering input source: YouTube

[4/24/2023, 7:34:01 AM] [smartthings-tv] [Big Li TV] Registering input source: YouTubeTV

[4/24/2023, 7:34:02 AM] [smartthings-tv] [Big Li TV] Registering input source: Prime Video [4/24/2023, 7:34:03 AM] [smartthings-tv] [Big Li TV] Registering input source: Disney+ [4/24/2023, 7:34:03 AM] [smartthings-tv] [Big Li TV] Registering input source: Apple TV [4/24/2023, 7:34:05 AM] [smartthings-tv] [Big Li TV] Registering input source: Apple Music [4/24/2023, 7:34:05 AM] [smartthings-tv] [Big Li TV] Registering input source: Amazon Music [4/24/2023, 7:34:06 AM] [smartthings-tv] [Big Li TV] Registering input source: Spotify

[4/24/2023, 7:34:08 AM] [smartthings-tv] [Big Li TV] Registering input source: Deezer

[4/24/2023, 7:34:09 AM] [smartthings-tv] [Big Li TV] Registering input source: Steam Link [4/24/2023, 7:34:10 AM] [smartthings-tv] [Big Li TV] Registering input source: Eurosport Player

[4/24/2023, 7:34:11 AM] [smartthings-tv] [Big Li TV] Registering input source: EduPedia [4/24/2023, 7:34:12 AM] [smartthings-tv] [Big Li TV] Registering input source: ARTE [4/24/2023, 7:34:13 AM] [smartthings-tv] [Big Li TV] Registering input source: Twitch [4/24/2023, 7:34:13 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.recording", "version": 1, "status": "proposed", "name": "Recording", "ephemeral": false, "attributes": {}, "commands": { "recordStart": { "name": "recordStart", "arguments": [] }, "recordStop": { "name": "recordStop", "arguments": [] } } } [4/24/2023, 7:34:14 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.tvsearch", "version": 1, "status": "proposed", "name": "tvSearch", "ephemeral": false, "attributes": {}, "commands": { "search": { "name": "search", "arguments": [ { "name": "query", "optional": false, "schema": { "type": "string" } }, { "name": "url", "optional": false, "schema": { "type": "string" } } ] } } } [4/24/2023, 7:34:14 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "custom.disabledCapabilities", "version": 1, "status": "proposed", "name": "Disabled Capabilities", "ephemeral": false, "attributes": { "disabledCapabilities": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/24/2023, 7:34:14 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.remoteControl", "version": 1, "status": "proposed", "name": "Remote Control", "ephemeral": false, "attributes": {}, "commands": { "send": { "name": "send", "arguments": [ { "name": "keyValue", "optional": false, "schema": { "type": "string", "enum": [ "UP", "DOWN", "LEFT", "RIGHT", "OK", "BACK", "MENU", "HOME" ] } }, { "name": "keyState", "optional": true, "schema": { "type": "string", "enum": [ "PRESSED", "RELEASED", "PRESS_AND_RELEASED" ] } } ] } } } [4/24/2023, 7:34:15 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambient", "version": 1, "status": "proposed", "name": "Ambient", "ephemeral": false, "attributes": {}, "commands": { "setAmbientOn": { "name": "setAmbientOn", "arguments": [] } } } [4/24/2023, 7:34:15 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.ambientContent", "version": 1, "status": "proposed", "name": "Ambient Content", "ephemeral": false, "attributes": { "supportedAmbientApps": { "schema": { "type": "object", "properties": { "value": { "type": "array" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setAmbientContent": { "name": "setAmbientContent", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/24/2023, 7:34:16 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.mediaInputSource", "version": 1, "status": "proposed", "name": "Media Input Source", "ephemeral": false, "attributes": { "supportedInputSourcesMap": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } }, "required": [] } }, "additionalProperties": false, "required": [] }, "enumCommands": [] }, "inputSource": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setInputSource": { "name": "setInputSource", "arguments": [ { "name": "id", "optional": false, "schema": { "type": "string" } } ] } } } [4/24/2023, 7:34:16 AM] [smartthings-tv] [Big Li TV] Registering capability: Media Input Source [4/24/2023, 7:34:16 AM] [smartthings-tv] [Big Li TV] Capability Media Input Source might not work as expected because it's status is: proposed [4/24/2023, 7:34:16 AM] [smartthings-tv] [Big Li TV] Registering input source: TV [4/24/2023, 7:34:16 AM] [smartthings-tv] [Big Li TV] Registering input source: HDMI 2 [4/24/2023, 7:34:17 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.supportsFeatures", "version": 1, "status": "proposed", "name": "Supports Features", "ephemeral": false, "attributes": { "imeAdvSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mobileCamSupported": { "schema": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/24/2023, 7:34:17 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungim.fixedFindNode", "version": 1, "status": "proposed", "name": "Fixed Find Node", "ephemeral": false, "attributes": {}, "commands": { "refresh": { "name": "refresh", "arguments": [] } } }

[4/24/2023, 7:34:18 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "sec.diagnosticsInformation", "version": 1, "status": "proposed", "name": "Diagnostics Information", "ephemeral": false, "attributes": { "logType": { "schema": { "type": "object", "properties": { "value": { "type": "array", "items": { "title": "logType", "type": "string", "enum": [ "errCode", "dump" ] } } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "endpoint": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "NONE", "PIPER", "SSM" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "minVersion": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "signinPermission": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "immutable", "updating", "enabled", "disabled" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "setupId": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "protocolType": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "ble_ocf", "wifi_https", "ble_stdk", "wifi_stdk" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "mnId": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] }, "dumpType": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "file", "id" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} } [4/24/2023, 7:34:18 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "refresh", "version": 1, "status": "live", "name": "Refresh", "ephemeral": false, "attributes": {}, "commands": { "refresh": { "name": "refresh", "arguments": [] } } } [4/24/2023, 7:34:19 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "execute", "version": 1, "status": "live", "name": "Execute", "ephemeral": false, "attributes": { "data": { "schema": { "type": "object", "properties": { "value": { "title": "JsonObject", "type": "object" }, "data": { "type": "object", "additionalProperties": true, "required": [] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "execute": { "name": "execute", "arguments": [ { "name": "command", "optional": false, "schema": { "title": "String", "type": "string", "maxLength": 255 } }, { "name": "args", "optional": true, "schema": { "title": "JsonObject", "type": "object" } } ] } } } [4/24/2023, 7:34:19 AM] [TplinkSmarthome] refreshEmeter() [4/24/2023, 7:34:19 AM] [TplinkSmarthome] Scheduling next run of refreshEmeter() in 10000(ms) [4/24/2023, 7:34:19 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.firmwareVersion", "version": 1, "status": "proposed", "name": "Firmware Version", "ephemeral": false, "attributes": { "firmwareVersion": { "schema": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": { "setFirmwareVersion": { "name": "setFirmwareVersion", "arguments": [ { "name": "version", "optional": false, "schema": { "type": "string" } } ] } } } [4/24/2023, 7:34:20 AM] [smartthings-tv] [Big Li TV] Available capability: { "id": "samsungvd.supportsPowerOnByOcf", "version": 1, "status": "proposed", "name": "Supports Power On By OCF", "ephemeral": false, "attributes": { "supportsPowerOnByOcf": { "schema": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "true", "false" ] } }, "additionalProperties": false, "required": [ "value" ] }, "enumCommands": [] } }, "commands": {} }

[4/24/2023, 7:35:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/24/2023, 7:35:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:35:45 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 0 [4/24/2023, 7:35:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:35:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:35:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:35:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:35:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/24/2023, 7:35:47 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:35:47 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:35:47 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:35:47 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:35:47 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:35:47 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 0

[4/24/2023, 7:35:56 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:35:56 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:35:56 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ],  "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:35:56 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:35:56 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 0 [4/24/2023, 7:35:56 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:35:56 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/24/2023, 7:35:56 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } }

[4/24/2023, 7:36:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/24/2023, 7:36:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:36:13 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 0 [4/24/2023, 7:36:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:36:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } }

[4/24/2023, 7:36:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:36:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } }

[4/24/2023, 7:36:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } }

[4/24/2023, 7:36:24 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:36:24 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:36:24 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:36:24 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:36:24 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 0 [4/24/2023, 7:36:24 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:36:24 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/24/2023, 7:36:24 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } }

[4/24/2023, 7:36:55 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:36:55 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:36:55 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioVolume: { "volume": { "value": 15, "unit": "%", "timestamp": "2023-04-16T02:37:40.540Z" } } [4/24/2023, 7:36:55 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:36:55 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 0 [4/24/2023, 7:36:55 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:36:55 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:36:55 AM] [smartthings-tv] [Big Li TV] Successfully get status of audioMute: { "mute": { "value": "unmuted", "timestamp": "2023-04-16T02:37:40.540Z" } }

[4/24/2023, 7:37:33 AM] [smartthings-tv] [Big Li TV] Set active identifier to: 2 [4/24/2023, 7:37:34 AM] [smartthings-tv] [Big Li TV] Successfully executed command launchApp of capability custom.launchapp

[4/24/2023, 7:38:34 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:38:34 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:38:35 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:38:35 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:38:35 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 2 [4/24/2023, 7:38:35 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } }

[4/24/2023, 7:42:31 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:42:31 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:42:31 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:42:31 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 2 [4/24/2023, 7:42:31 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:42:31 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } }

[4/24/2023, 7:43:05 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:43:05 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:43:05 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:43:05 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 2 [4/24/2023, 7:43:05 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:43:05 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } }

[4/24/2023, 7:43:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } }

[4/24/2023, 7:43:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:43:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:43:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:43:13 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 2 [4/24/2023, 7:43:13 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } }

[4/24/2023, 7:43:38 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:43:38 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:43:38 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:43:38 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } }

[4/24/2023, 7:43:38 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:43:38 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 2

[4/24/2023, 7:45:43 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:45:43 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:45:43 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } }

[4/24/2023, 7:45:43 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } }

[4/24/2023, 7:45:43 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:45:43 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 2 . [4/24/2023, 7:45:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } } [4/24/2023, 7:45:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:45:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:45:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:45:45 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 2 [4/24/2023, 7:45:45 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:45:47 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:45:47 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:45:47 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:45:47 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:45:47 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 2 [4/24/2023, 7:45:47 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "on", "timestamp": "2023-04-24T14:32:06.289Z" } }

[4/24/2023, 7:46:27 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:46:27 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:46:27 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-24T14:46:10.791Z" } } [4/24/2023, 7:46:27 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:46:27 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 2 [4/24/2023, 7:46:27 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:46:28 AM] [smartthings-tv] [Big Li TV] Successfully get status of samsungvd.mediaInputSource: { "supportedInputSourcesMap": { "value": [ { "id": "dtv", "name": "TV" }, { "id": "HDMI2", "name": "HDMI 2" } ], "timestamp": "2023-04-16T02:37:40.786Z" }, "inputSource": { "value": "HDMI2", "timestamp": "2023-04-22T03:43:50.732Z" } } [4/24/2023, 7:46:28 AM] [smartthings-tv] [Big Li TV] ActiveIdentifier has not been changed on the device - using temporary result: 2 [4/24/2023, 7:46:28 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } } [4/24/2023, 7:46:28 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.picturemode: { "pictureMode": { "value": "Dynamic", "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModes": { "value": [ "Dynamic" ], "timestamp": "2023-04-16T02:55:32.898Z" }, "supportedPictureModesMap": { "value": [ { "id": "modeNone", "name": "Dynamic" } ], "timestamp": "2023-04-16T02:55:32.898Z" } } [4/24/2023, 7:46:28 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-24T14:46:10.791Z" } } [4/24/2023, 7:46:28 AM] [smartthings-tv] [Big Li TV] Successfully get status of custom.soundmode: { "supportedSoundModesMap": { "value": [ { "id": "modeAmplify", "name": "Amplify" }, { "id": "modeStandard", "name": "Standard" } ], "timestamp": "2023-04-16T02:55:32.970Z" }, "soundMode": { "value": "Standard", "timestamp": "2023-04-16T02:37:40.637Z" }, "supportedSoundModes": { "value": [ "Amplify", "Standard" ], "timestamp": "2023-04-16T02:55:32.970Z" } }

[4/24/2023, 7:46:29 AM] [smartthings-tv] [Big Li TV] Successfully get status of switch: { "switch": { "value": "off", "timestamp": "2023-04-24T14:46:10.791Z" } }

o-lukas commented 1 year ago

I'm glad you like the plugin and I hope I can get everything working for you :)

Regarding your problem: I couldn't find any log entry for setting the active identifier to 0/changing to your first input source. So somehow the Home App doesn't even send a request to set the input source. I will try to reproduce the problem and let you know if I find any fix.

Sorry my answer took a while - I was quite busy this week...

ssllii commented 1 year ago

It is possible that Homekit does not send any call when I selected the zero-th slot of the scroll wheel widget.

I appreciate all your quick responses.

github-actions[bot] commented 1 year ago

This issue is stale because it has been open for 14 days with no activity.

github-actions[bot] commented 1 year ago

This issue was closed because it has been inactive for 7 days since being marked as stale.