-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2329b73
commit b24c854
Showing
1 changed file
with
10 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,10 +65,11 @@ The version of firmata in the Arduino IDE contains an outdated version of Firmat | |
###Mac OSX: | ||
|
||
The Firmata library is contained within the Arduino package. | ||
|
||
1. Navigate to the Arduino application | ||
2. Right click on the application icon and select `Show Package Contents` | ||
3. Navigate to: `/Contents/Resources/Java/libraries/` and replace the existing | ||
`Firmata` folder with latest Firmata release (note there is a different download | ||
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases) (note there is a different download | ||
for Arduino 1.0.x vs 1.5.x) | ||
4. Restart the Arduino application and the latest version of Firmata will be available. | ||
|
||
|
@@ -77,20 +78,22 @@ will differ slightly: `Contents/Java/libraries/Firmata` (no Resources directory) | |
|
||
###Windows: | ||
|
||
Update the path and arduino version as necessary | ||
1. Navigate to `c:/Program\ Files/arduino-1.x/libraries/` and replace the existing | ||
`Firmata` folder with the latest Firmata release (note there is a different download | ||
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases) (note there is a different download | ||
for Arduino 1.0.x vs 1.5.x). | ||
2. Restart the Arduino application and the latest version of Firmata will be available. | ||
|
||
*Update the path and arduino version as necessary* | ||
|
||
###Linux: | ||
|
||
Update the path and arduino version as necessary | ||
1. Navigate to `~/arduino-1.x/libraries/` and replace the existing | ||
`Firmata` folder with the latest Firmata release (note there is a different download | ||
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases) (note there is a different download | ||
for Arduino 1.0.x vs 1.5.x). | ||
2. Restart the Arduino application and the latest version of Firmata will be available. | ||
|
||
*Update the path and arduino version as necessary* | ||
|
||
###Using the Source code rather than release archive | ||
|
||
Clone this repo directly into the core Arduino libraries directory. If you are using | ||
|
@@ -101,12 +104,13 @@ or higher. | |
You will first need to remove the existing Firmata library, then clone firmata/arduino | ||
into an empty Firmata directory: | ||
|
||
Update paths if you're using Windows or Linux | ||
```bash | ||
$ rm -r /Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata | ||
$ git clone [email protected]:firmata/arduino.git /Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata | ||
``` | ||
|
||
*Update paths if you're using Windows or Linux* | ||
|
||
To generate properly formatted versions of Firmata (for Arduino 1.0.x and Arduino 1.5.x), run the | ||
`release.sh` script. | ||
|
||
|