Last active
August 29, 2015 14:00
-
-
Save fenrir-naru/11387836 to your computer and use it in GitHub Desktop.
How to use NinjaScan-Light with your Raspberry Pi
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
sudo apt-get update && sudo apt-get install subversion # as you need, anything else such as gmake, g++ | |
svn co https://ninja-scan-light.googlecode.com/svn/trunk ninja-scan-light | |
cd ninja-scan-light/tool | |
make | |
# insert your NinjaScan-Light to RasPi USB port | |
sudo ./build_GCC/log_CSV.out /dev/ttyACM0 --direct_sylphide=on --page=A --page=G --page=M --page=P | |
# if you want to run log_CSV.out without sudo, then | |
# $ sudo usermod -a -G dialout <your username, default is "pi"> | |
# and restart your Pi. | |
# This is because only users belonging to dialout group can access /dev/ttyACM0. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment