led-matrix-ts
TypeScript icon, indicating that this package has built-in type declarations

0.9.8 • Public • Published

led-matrix-ts

A library for simulating an LED matrix panel in the browser. The library offers a maximum of flexibility for the developer to do just about anything to it's panel. Whether you want to add custom characters, a scrolling sequence or/and customize the appareance, you can.

Demo gif Demo gif 2

Size

18.31 KB

4.08 KB (Gzipped)

Installation

via npm

npm install led-matrix-ts

via yarn

yarn add led-matrix-ts

dev

npm install

yarn install

yarn start

Basics

Check out src/demos/basics for more details

html

<div id="root" style="font-family: monospace; white-space: pre"></div>

Check out the basics section of the wiki for more importing options ts

const ledMatrix = new LedMatrix();

CharactersJSON.import("alphabet.json", (characters) => {
    ledMatrix.addCharacters(characters);
    ledMatrix.input = "hello world";
    ledMatrix.play();
});

Documentation

Check out the wiki

License

Copyright (c) 2018 Bubblesphere


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.

Package Sidebar

Install

npm i led-matrix-ts

Weekly Downloads

0

Version

0.9.8

License

MIT

Unpacked Size

361 kB

Total Files

126

Last publish

Collaborators

  • dericdallaire