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.twinkly

v1.0.14

Published

Adapter to communicate with the Twinkly lights.

Downloads

97

Readme

Logo

ioBroker.twinkly

Number of Installations (latest) Number of Installations (stable) NPM version Downloads

Test and Release CodeQL Known Vulnerabilities

twinkly adapter for ioBroker

Adapter to communicate with the Twinkly lights.

This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers. For more details and for information how to disable the error reporting see Sentry-Plugin Documentation! Sentry reporting is used starting with js-controller 3.0.

Settings

The following Settings are available: Admin Settings

In the table you can add all the Twinkly lights you want to control.

| Column | Description | |--------------|---------------------------------------------------------------------------------------------------------------------------------| | Enabled | Shall this connection be accessed | | Name | Name of the connection in ioBroker | | IP Address | IP-Address to the Twinkly Lights | | Mode On | Which ledMode should be activated when state on is enabled.Color, Effect, Movie, Music Reactive, Playlist or last Mode |

The following additionals States are created per device when checked:

  • Device Info
  • MQTT
  • Network Status

The following States are available:

| State | Writable | Description | |---------------|--------------------|---------------------------------------------------------------------------------------------------------------------------------| | connected | :x: | Device Connected | | details | :x: | Device Details | | firmware | :x: | Firmware Version | | ledBri | :heavy_check_mark: | Brightness (deactivate control with -1) | | ledColor | :heavy_check_mark: | Color of LEDs, HSV/RGB(W)/HEX (Color) | | ledConfig | :heavy_check_mark: | Configuration of LEDs | | ledEffect | :heavy_check_mark: | Effects (Effect) | | ledLayout | :heavy_check_mark: | Layout of LEDs (disabled for further testing) | | ledMode | :heavy_check_mark: | Mode: Color, Effect, Movie, Music Reactive, Playlist, Off, RealTime (not yet supported), Demo | | ledMovie | :heavy_check_mark: | Active Movie, If multiple Movies are added in the Playlist feature then they can be selected here. (Movie) | | ledPlaylist | :heavy_check_mark: | Active Playlist Entry, Switch between Movies. (Playlist) | | ledSat | :heavy_check_mark: | Saturation 0-100 (deactivate control with -1) | | mqtt | :heavy_check_mark: | MQTT-Connection | | name | :heavy_check_mark: | Name | | network | :x: | Network-Information | | on | :heavy_check_mark: | On/Off Switch | | paused | :heavy_check_mark: | Pause Connection to Twinkly so you can do changes in the App. Otherwise you might loose the connection while working in the App | | timer | :heavy_check_mark: | Update the Timer |

Private API information by Pavol Babinčák

Known Issues

  • The maximum length for the movie name is 15 characters

Code Expamples

Upload Movie

sendTo('twinkly.0', 'uploadMovie', {
    connection : 'Fenster',
    frames     : [
        [{"r":221,"g":0,"b":85},{"r":221,"g":0,"b":85}, ...],
        [{"r":221,"g":0,"b":85},{"r":221,"g":0,"b":85}, ...],
        ...
    ],
    delay : 250
});

Upload Template Movie

Upload a predefined movie.

  • 0: Twinkle Blue-White
  • 1: Twinkle Christmas-Green-Red
sendTo('twinkly.0', 'uploadTemplateMovie', {
    connection : 'Fenster',
    template   : 1
});

Upload Twinkle Movie

sendTo('twinkly.0', 'uploadTwinkleMovie', {
    connection  : 'Fenster',
    baseColor   : '#00873f', // or {r: 0, g: 135, b: 62}
    secondColor : '#c30F15'  // or {r: 195, g: 15, b: 22}
});

Generate Frame in a specific color

Returns a full frame in one color. By sending the colors in the property colors you get an array of frames returned.

sendTo('twinkly.0', 'generateFrame', {
    connection : 'Fenster',
    color      : '#dd0055' // or {r: 221, g: 0, b: 85}
});
response => {
    // [{"r":221,"g":0,"b":85},{"r":221,"g":0,"b":85}, ...]
    ...
}

sendTo('twinkly.0', 'generateFrame', {
    connection : 'Fenster',
    colors     : ['#dd0055', ...] // or [{r: 221, g: 0, b: 85}, ...]
});
response => {
    // [[{"r":221,"g":0,"b":85},{"r":221,"g":0,"b":85}, ...], ..]
    ...
}

Changelog

1.0.14 (2023-07-19)

  • Add formatting to some states (hex-values -> uppercase, uptime in hours)
  • Handle Sentry message (IOBROKER-TWINKLY-8P)
  • Update dependencies

1.0.13 (2023-02-01)

  • Update dependencies

1.0.12 (2022-12-22)

  • Slave can write ledBri and ledSat

1.0.11 (2022-12-13)

  • Extend Sentry logging for details.groups when "deprecated"
  • Cancel active pause not working after startup if active beforehand
  • Merge libraries request and twinkly
  • Optimized Code in requests
  • Updated Sentry logging for better viewability

1.0.10 (2022-12-05)

  • Add sendTo message uploadTwinkleMovie to upload a twinkle movie with own colors
  • Update Release Integration in Github Actions and Sentry

1.0.9 (2022-11-27)

  • Now detects if Twinkly is in a group (firmware >= 2.8.3). If so, the group can only be controlled by the master, the states from the slave are read-only.

1.0.8 (2022-11-26)

  • Add musicreactive Mode
  • Add Ukrainian translation
  • Rework how objects are created, objects are now created after first connect after startup and updated after a firmware update

License

MIT License

Copyright (c) 2023 patrickbs96 [email protected]

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.