Little application to drive Led matrix displays on your raspberry pi
Go to file
Martijn de Boer 81d5fb0c94 Tests and Travis 2018-01-05 19:34:03 +01:00
__tests__ Update README with test info, add drowingoperations tests, add getMatrix function to driver for tests. 2018-01-05 18:25:27 +01:00
controllers Dynamically load display size from the driver to the canvas on app init 2017-12-25 21:05:14 +01:00
drivers Update README with test info, add drowingoperations tests, add getMatrix function to driver for tests. 2018-01-05 18:25:27 +01:00
www Update code quality 2018-01-05 00:03:37 +01:00
.gitignore Tests and Travis 2018-01-05 19:34:03 +01:00
.travis.yml Tests and Travis 2018-01-05 19:34:03 +01:00
CODE_OF_CONDUCT.md Add the code of conduct file 2018-01-04 23:04:13 +01:00
CONTRIBUTING.md CONTRIBUTING.md: add content 2018-01-03 19:11:06 -06:00
LICENSE.md First work in progress app 2017-12-12 20:41:32 +01:00
README.md Tests and Travis 2018-01-05 19:34:03 +01:00
config.example.json Working implementation of drivers, and drawing application. Things light up! 2017-12-18 20:39:51 +01:00
package-lock.json Tests and Travis 2018-01-05 19:34:03 +01:00
package.json Tests and Travis 2018-01-05 19:34:03 +01:00
pixdisp.js Config lookup 2018-01-05 15:26:03 +01:00

README.md

MIT Licence Known Vulnerabilities Maintainability

A small application to drive LED matrix displays, such as the Pimoroni Unicorn, from nodejs. My intention is to create a digital graffiti/guestbook system and a general animation system. This is a project for fun, so if you have a feature just request it! Or add it and I'll review it. Social coding ftw.

Make sure you are on a recent nodejs version. Raspbian has an old version. Use Nodesource ;).

Also, use a decent modern browser. I wrote recent syntax, so probably works best in Chrome 62+. Firefox is known to have some issues, Edge works, Safari is a PITA. Just wait for your browser to play catch up then with recent standards. If you dislike Chrome, you can put this trough Babel. But you're on your own there.

Copy config.example.json to config.json and pick a driver + display size.

execute:

npm install
nodejs pixdisp.js

Navigate to http://localhost:8080/

Matrix driver & Unicorn Hat HD driver inspired by https://github.com/vesteraas/node-unicornhathd

Unit tests

This application has some unit tests, making use of Jest. Jest is configured as a dev dependency.

execute:

npm test

The coverage flag is optional, but provides helpful encouragement to write tests.

Drawing

Device drawing

Simple clicking on the canvas in the responsive webinterface makes things light up.

Camera

Using your camera

The webinterface allows you to capture your camera and submit images from there.

Webinterface

Web interface

A simple web interface is included for drawing on the device. Defaults to port 8080.