This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// parse pin2dmd raw files | |
// https://github.com/neophob/wpc-emu/blob/master/client/scripts/lib/pin2DmdExport.js | |
byte raw[]; | |
int offset = 0; | |
int frameSize = 0; | |
void setup(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Place this file in a sketch folder and run it to launch your sketch | |
# You need to have processing-java installed https://github.com/processing/processing/wiki/Command-Line | |
# Usefull for developement when using other editors like Atom | |
# Usefull for launching with ssh, "DISPLAY=:0 ./plaunch.sh" | |
# Usefull for automaticaly launching a sketch on computer startup, | |
# specialy if you wish to be able to edit something in a .pde file and avoid having to re-export a application | |
processing-java --sketch="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" --output=/tmp/processing --force --run |