Last active
December 17, 2015 21:19
-
-
Save acmcelwee/5673931 to your computer and use it in GitHub Desktop.
Using Firmata 2.2 on Arduino Uno
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 | |
wget http://at.or.at/hans/pd/Firmata-2.2.zip | |
unzip Firmata-2.2.zip | |
mv Firmata-2.2/Firmata /Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata_2_2 | |
rm -rf Firmata-2.2 | |
rm Firmata-2.2.zip | |
# Start your Arduino IDE. | |
# Navigate to File -> Examples -> Firmata_2_2 -> StandardFirmata | |
# Click Upload and select the port of your Arduino, if prompted to do so. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment