Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dogeared/minipovgenerator
Pass in a text string and generate the code necessary to program a minipov module from adafruit.com
https://github.com/dogeared/minipovgenerator
Last synced: about 18 hours ago
JSON representation
Pass in a text string and generate the code necessary to program a minipov module from adafruit.com
- Host: GitHub
- URL: https://github.com/dogeared/minipovgenerator
- Owner: dogeared
- Created: 2011-12-20T18:08:29.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2011-12-20T18:41:27.000Z (almost 13 years ago)
- Last Synced: 2024-04-15T13:19:43.181Z (7 months ago)
- Language: JavaScript
- Homepage: http://afitnerd.com
- Size: 93.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
MiniPOVGenerator
This node.js program takes in a string and spits out the text representation of the binary code needed to program the miniPOV project as described on http://www.ladyada.net/make/minipov3/.
There are good software build instructions here: http://www.ladyada.net/make/minipov3/software.html
Other browser based generators can be found at these locations:
http://www.repulsor.net/minipov/
http://zachrattner.com/pov/
http://experiments.coderonfire.com/minipov_generator/The font used in minipov.js is adapted from a project found here: http://tinkersoc.org/wiki/projects:tinkerpov
Usage:
node minipov.js Hi\ there\!
Note: As of right now, the only characters supported are: 0 through 9, A through Z, a through z, ! and space
Also Note: The code generated from here is based on the largeimage.c example in the minipovfirmware.zip examples
Third Note: It's written for node.js, but could easily be made to work in the browser or anywhere else javascript can be used. The only thing that is really node.js specific is processing the command line arguments.