Skip to content

Commit

Permalink
readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hoanganh25991 committed Sep 7, 2016
1 parent 5d61d04 commit c52bce6
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-max7219",
"version": "1.0.16",
"version": "1.0.17",
"description": "max7219 for raspberry pi with node, by wrapper a really cool python package rm-hull/max7219",
"main": "index.js",
"bin": {
Expand Down
31 changes: 31 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#node max7219
Simple version of node wrap a `really cool` python package for max7219 [rm-hull/max7219](https://github.com/rm-hull/max7219)

##Usage:

var Max7219 = require('node-max7219');

var originOptions = {
device: 'sevensegment',
cascaded: 2,
brightness: 7,
vertical: false
};

var max7219 = Max7219(options);

max7219.drawText('hello world');

##Note:

you must read rm-hull/max7219 guide
to install enough dependencies which let node exec __python code__

##Review on youtube:

+ [node max7219 2016 09 07 195105 ](https://www.youtube.com/watch?v=4vBFxDvuNFI)





0 comments on commit c52bce6

Please sign in to comment.