npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

iobroker.samsung_tizen

v1.1.0

Published

ioBroker adapter to control Samsung TizenOs tvs(mj>= 2016)

Downloads

162

Readme

Logo

iobroker.samsung_tizen

=====================

This adapter is to control samsung tvs with tizenOS (>=2016).

  1. Installation
  2. Configuration
    2.1. Protocol
    2.2. IP Adress
    2.3. Port
    2.4. Token
    2.5. Mac Adress
    2.6. TV State Polling
    2.7. Command Delay
  3. Usage
    3.1. Control
    3.2. Apps
    3.3. Commands
  4. License

1. Installation

open iobroker admin go to the adapters tab and install the adapter from a custom source.

  1. click on the github icon (install from custom URL) install1
  2. enter this github URL https://github.com/dahuby/iobroker.samsung_tizen/tarball/master
  3. click on install install2
  4. go back to the adapters tab and search "Samsung Tizen"
  5. click on "+" to add a new instance install3
  6. configure the adapter install4

2. Configuration

How to configure this adapter. First check your TV settings, switch on the TV and go to Settings / General / External Device Manager / Device Connection Manager there the access notification should be activated to "first time only"

2.1. Protocol

Protocol for the websocket connection to your TV. possible values are http or wss, on newer devices use wss

2.2. IP Address

IP Address of your Samsung TV

2.3. Port

Port for the websocket connection to your TV. 8001 unsecure port 8002 secure port

2.4. Token

Token for a secure connection to your TV. Save the adapter with token = 0 and go to the iobroker admin object tab. Then go to iobroker.samsung_tizen.0.config.getToken object and click the button. If all works fine a new object iobroker.samsung_tizen.0.config.token should appear with id iobroker.samsung_tizen.0.config.token and the name is your token - copy the name (e.g. 123456789) and go back to the adapter config and paste it in the token field. can be deactivated with value "0"

npm install wscat

Turn TV on and query the token via websocket connection

wscat -n -c wss://tvIp:8002/api/v2/channels/samsung.remote.control?name=aW9Ccm9rZXI=

a pop up appears on your TV that must be accepted. take the token from the returned json response

{"name":"aW9Ccm9rZXI="},"connectTime":1575818900205,"deviceName":"aW9Ccm9rZXI=","id":"12345678-797c-45b0-b0f1-233535918548","isHost":false}],"id":"12345678-797c-45b0-b0f1-233535918548","token":"10916644"},"event":"ms.channel.connect"}

2.5. MAC Address

MAC Address of your Samsung TV, will be used for WakeOnLAN. Does only work if your TV is connected per wire and not wireless. If your TV is wireless connected it can only powered on from shortStandby. wakeOnLan can be deactivated with value "0"

2.6. TV state polling

Polling Port

a port to get the power state default: 9110 known available ports: 9110, 9119, 9197

Polling Interval

how often the poll request shall be sent default: 60 seconds can be deactivated with value "0"

2.7. Command Delay

delay in milliseconds between the commands sent via the iobroker.samsung_tizen.0.control.sendCmd object.

3. Usage

3.1. Control

Send a single key

to send a single key click the button under e.g. iobroker.samsung_tizen.0.control.KEY_MUTE

Send a key for a not defined button

you can send a custom (not defined) key with the iobroker.samsung_tizen.0.control.sendCmd object. Enter the key what you want to send e.g. KEY_POWER.

Send multiple keys in a single command

to send multiple key in a single command use the iobroker.samsung_tizen.0.control.sendCmd object. enter keys separated with "," e.g. KEY_POWER,KEY_HDMI,KEY_VOLUP.

Create macros for commands

Go to iobroker.samsung_tizen.0.command here you can find example macros and you can create your own macros. How to create a new macro

3.2. APPS

Load installed Apps

to load the installed Apps click on iobroker.samsung_tizen.0.apps.getInstalledApps button. After that, a separate object with the name start_app_name is created for each installed app.

Start App

you can start an app with a click on the iobroker.samsung_tizen.0.apps.start_app_name object.

Power State

if you have the power state polling configured as mentioned above, you get the under iobroker.samsung_tizen.0.powerOn the state true if your tv is on or false if it is off.

3.3. Commands

Commands can be manually sent via the iobroker.samsung_tizen.0.control.sendCmd object as mentioned in Control or over a custom created objects under iobroker.samsung_tizen.0.command . There are few example commands but you can also create your own macros.

  1. go to adapters and open iobroker.samsung_tizen.0.command
  2. click on the + icon to create a new object cmd1
  3. check that the parent object is iobroker.samsung_tizen.0.command
  4. enter a new name for your command and check that type is datapoint and stateType = boolean. cmd2
  5. under name enter the keys what you want to send.
  6. role must be button
  7. and save cmd3
  8. then you can send your command with the newly created object cmd4

Credits

The first generation of this adapter has been developed by Stefan0875 (https://github.com/Stefan0875) which has been adapted and maintined by highpressure (https://github.com/Highpressure) and finaly dahuby (https://github.com/dahuby). Thanks a lot for their work and grantig a publich license.

Changelog

1.1.0 (2024-04-26)

  • (mcm1957) Adapter requires node.js >= 18 and js-controller >= 5 now
  • (mcm1957) Dependencies have been updated

1.0.0 (2023-09-30)

  • (mcm1957) An official release has been created

1.0.0-alpha.2 (2023-09-24)

  • (mcm1957) Dependencies have been updated

1.0.0-alpha.1 (2023-09-24)

  • (mcm1957) Adapter requires node 16 or newer now.
  • (mcm1957) Adapter has been moved to iobroker-community-adapters organization.

License

MIT License

Copyright (c) 2023-2024 ioBroker Community Developers [email protected]
Copyright (c) 2020 dahuby

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.