Skip to content

Commit 4534570

Browse files
bump version. update readme and revisions log
1 parent e2cede3 commit 4534570

File tree

6 files changed

+25
-15
lines changed

6 files changed

+25
-15
lines changed

Firmata.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Firmata.cpp - Firmata library v2.4.2 - 2015-3-16
2+
Firmata.cpp - Firmata library v2.4.3 - 2015-4-11
33
Copyright (C) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
55
This library is free software; you can redistribute it and/or

Firmata.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Firmata.h - Firmata library v2.4.2 - 2015-3-16
2+
Firmata.h - Firmata library v2.4.3 - 2015-4-11
33
Copyright (C) 2006-2008 Hans-Christoph Steiner. All rights reserved.
44
55
This library is free software; you can redistribute it and/or
@@ -21,7 +21,7 @@
2121
* installed firmware. */
2222
#define FIRMATA_MAJOR_VERSION 2 // for non-compatible changes
2323
#define FIRMATA_MINOR_VERSION 4 // for backwards compatible changes
24-
#define FIRMATA_BUGFIX_VERSION 2 // for bugfix releases
24+
#define FIRMATA_BUGFIX_VERSION 3 // for bugfix releases
2525

2626
#define MAX_DATA_BYTES 64 // max number of data bytes in incoming messages
2727

extras/revisions.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
FIRMATA 2.4.3 - Apr 11, 2015
2+
3+
[core library]
4+
* Added debug macros (utility/firmataDebug.h)
5+
* Added Norbert Truchsess' EthernetClientStream lib from the configurable branch
6+
7+
[examples]
8+
* Added StandardFirmataEthernet to enable Firmata over Ethernet
9+
* Minor updates to StandardFirmata and StandardFirmataYun
10+
111
FIRMATA 2.4.2 - Mar 16, 2015
212

313
[core library]

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Firmata
2-
version=2.4.2
2+
version=2.4.3
33
author=Firmata Developers
44
maintainer=https://github.com/firmata/arduino
55
sentence=Enables the communication with computer apps using a standard serial protocol. For all Arduino boards.

readme.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Most of the time you will be interacting with arduino with a client library on t
5858
Note: The above libraries may support various versions of the Firmata protocol and therefore may not support all features of the latest Firmata spec nor all arduino and arduino-compatible boards. Refer to the respective projects for details.
5959

6060
##Updating Firmata in the Arduino IDE
61-
The version of firmata in the Arduino IDE contains an outdated version of Firmata. To update Firmata, download the latest [release](https://github.com/firmata/arduino/releases/tag/v2.4.2) (for Arduino 1.0.x or Arduino 1.5.6 or higher) and replace the existing Firmata folder in your Arduino application. See the instructions below for your platform.
61+
The version of firmata in the Arduino IDE contains an outdated version of Firmata. To update Firmata, download the latest [release](https://github.com/firmata/arduino/releases/tag/v2.4.3) (for Arduino 1.0.x or Arduino 1.5.6 or higher) and replace the existing Firmata folder in your Arduino application. See the instructions below for your platform.
6262

6363
*Note that Arduino 1.5.0 - 1.5.5 are not supported. Please use Arduino 1.5.6 or higher (or Arduino 1.0.5 or 1.0.6).*
6464

@@ -69,8 +69,8 @@ The Firmata library is contained within the Arduino package.
6969
1. Navigate to the Arduino application
7070
2. Right click on the application icon and select `Show Package Contents`
7171
3. Navigate to: `/Contents/Resources/Java/libraries/` and replace the existing
72-
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.2) (note there is a different download
73-
for Arduino 1.0.x vs 1.5.x)
72+
`Firmata` folder with latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.3) (note there is a different download
73+
for Arduino 1.0.x vs 1.6.x)
7474
4. Restart the Arduino application and the latest version of Firmata will be available.
7575

7676
If you are using the Java 7 version of Arduino 1.5.7 or higher, the file path
@@ -79,25 +79,25 @@ will differ slightly: `Contents/Java/libraries/Firmata` (no Resources directory)
7979
###Windows:
8080

8181
1. Navigate to `c:/Program\ Files/arduino-1.x/libraries/` and replace the existing
82-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.2) (note there is a different download
83-
for Arduino 1.0.x vs 1.5.x).
82+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.3) (note there is a different download
83+
for Arduino 1.0.x vs 1.6.x).
8484
2. Restart the Arduino application and the latest version of Firmata will be available.
8585

8686
*Update the path and arduino version as necessary*
8787

8888
###Linux:
8989

9090
1. Navigate to `~/arduino-1.x/libraries/` and replace the existing
91-
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.2) (note there is a different download
92-
for Arduino 1.0.x vs 1.5.x).
91+
`Firmata` folder with the latest [Firmata release](https://github.com/firmata/arduino/releases/tag/v2.4.3) (note there is a different download
92+
for Arduino 1.0.x vs 1.6.x).
9393
2. Restart the Arduino application and the latest version of Firmata will be available.
9494

9595
*Update the path and arduino version as necessary*
9696

9797
###Using the Source code rather than release archive
9898

9999
Clone this repo directly into the core Arduino libraries directory. If you are using
100-
Arduino 1.5.x, the repo directory structure will not match the Arduino
100+
Arduino 1.5.x or 1.6.x, the repo directory structure will not match the Arduino
101101
library format, however it should still compile as long as you are using Arduino 1.5.7
102102
or higher.
103103

@@ -111,7 +111,7 @@ $ git clone git@github.com:firmata/arduino.git /Applications/Arduino.app/Content
111111

112112
*Update paths if you're using Windows or Linux*
113113

114-
To generate properly formatted versions of Firmata (for Arduino 1.0.x and Arduino 1.5.x), run the
114+
To generate properly formatted versions of Firmata (for Arduino 1.0.x and Arduino 1.6.x), run the
115115
`release.sh` script.
116116

117117

release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cd temp
1616
find . -name "*.DS_Store" -type f -delete
1717
zip -r Firmata.zip ./Firmata/
1818
cd ..
19-
mv ./temp/Firmata.zip Firmata-2.4.2.zip
19+
mv ./temp/Firmata.zip Firmata-2.4.3.zip
2020

2121
#package for Arduino 1.6.x
2222
cp library.properties temp/Firmata
@@ -31,5 +31,5 @@ cd ..
3131
find . -name "*.DS_Store" -type f -delete
3232
zip -r Firmata.zip ./Firmata/
3333
cd ..
34-
mv ./temp/Firmata.zip Arduino-1.6.x-Firmata-2.4.2.zip
34+
mv ./temp/Firmata.zip Arduino-1.6.x-Firmata-2.4.3.zip
3535
rm -r ./temp

0 commit comments

Comments
 (0)