kch-rgbw-lib
TypeScript icon, indicating that this package has built-in type declarations

2.1.1 • Public • Published

Kch RGBW Lib

npm version Build Status Coverage Status License: MIT

RGB/RGBW LED class library in typescript. It provides following classes and functions,

  • Composite LED class RGBWLED for multi-color LED. In addition to R-G-B (3 LEDs), R-G-B-W (4 LEDs), it can have unlimited many number of component LEDs.
  • Mathematically clear solution for many-LED problem.
  • Conversions between
    • Composite color <=> Each component LEDs mix ratio (e.g. PWM).
    • RGB, HSV and CIE 1931 Chromaticity (XYZ, xy+Y) colorspace
    • Color temperature <=> chromaticity (experimental)
    • Wavelength <=> CIE
  • Typical RGB LED properties

It is intended to use with homebridge-raspi-rgbw-led project.

Many-LED problem

Many-LED problem is a mathematical and engineering problem to determine the mix ratio of R-G-B or more LED light sources (component LEDs) to produce an intermediate color and luminosity. While a color and luminosity is given by 3 parameters (for example, x-y chromaticity and luminance), many-LED problem is to determine the mix ratio of 3 or more component LEDs.

For 3 LEDs, it is a determinate problem. For 4 or more, this problem is indeterminate and needs additional constraint(s) to solve. Minimizing power consumption is a useful constraint. For 4 LEDs, it is solved as a single parameter inequality. For more than 5 LEDs we need to solve it using linear programming (LP).

In detail, see Solve RGB+ LEDs PWM from Chromaticity.

System Requirements

  • Node 10.20.0 or newer except 11.x.
  • Unix systems with C++-17 compiler.

These are limitation of linear-program-solver.

Installation

Install with npm:

npm install kch-rgbw-lib

Some additional npm packages will be installed.

API

  • CSpace : Color conversion class.
  • RGBWLED : Composite LED class.
  • LEDChip : Single color LED chip class.
  • ColorTemperature : Functions for color temperature of black body.
  • WaveLength : Functions for CIE 1931 chromaticity and wave length.

Code snippets

More to read

References

License

The MIT License (MIT) Copyright (c) K. Chinzei (kchinzei@gmail.com) 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.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.1.1
    10
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.1.1
    10
  • 2.0.2
    0
  • 2.0.1
    0
  • 1.0.1
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i kch-rgbw-lib

Weekly Downloads

10

Version

2.1.1

License

MIT

Unpacked Size

1.35 MB

Total Files

96

Last publish

Collaborators

  • kchinzei