Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
soundanalogous committed Nov 29, 2015
1 parent 37f1e91 commit aaaa5d3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name=ConfigurableFirmata
version=2.7.0
version=2.8.0
author=Firmata Developers
maintainer=https://github.com/firmata/arduino
sentence=This library implements the Firmata protocol and allows you to control the Arduino board from the an application on the computer.
paragraph=The Firmata library implements the Firmata protocol for communicating with software on the host computer. This allows you to write custom firmware without having to create your own protocol and objects for the programming environment that you are using.
maintainer=https://github.com/firmata/ConfigurableFirmata
sentence=This library implements the Firmata protocol as a set of plugins that can be used to create applications to remotely interface with an Arduino board.
paragraph=ConfigurableFirmata is an implementation of the Firmata protocol that breaks features such as Digital Input, Digital Output, Analog Input, Analog Output, I2C, etc into individual classes making it easier to mix and match standard features with custom features.
category=Device Control
url=https://github.com/firmata/arduino
url=https://github.com/firmata/ConfigurableFirmata
architectures=*
2 changes: 1 addition & 1 deletion src/ConfigurableFirmata.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
ConfigurableFirmata.pp - ConfigurableFirmata library v2.7.0 - 2015-11-22
ConfigurableFirmata.pp - ConfigurableFirmata library v2.8.0 - 2015-11-28
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
Copyright (c) 2013 Norbert Truchsess. All rights reserved.
Copyright (c) 2013-2015 Jeff Hoefs. All rights reserved.
Expand Down
6 changes: 3 additions & 3 deletions src/ConfigurableFirmata.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
ConfigurableFirmata.h - ConfigurableFirmata library v2.7.0 - 2015-11-22
ConfigurableFirmata.h - ConfigurableFirmata library v2.8.0 - 2015-11-28
Copyright (c) 2006-2008 Hans-Christoph Steiner. All rights reserved.
Copyright (c) 2013 Norbert Truchsess. All rights reserved.
Copyright (c) 2013-2015 Jeff Hoefs. All rights reserved.
Expand All @@ -26,9 +26,9 @@
#define FIRMATA_BUGFIX_VERSION 0 // for bugfix releases

// The version of this library, it is different than the version of the Firmata protocol.
// In other words, ConfigurableFirmata 2.7.0 implements version 2.5.0 of the Firmata protocol.
// In other words, ConfigurableFirmata 2.8.0 implements version 2.5.0 of the Firmata protocol.
#define FIRMWARE_MAJOR_VERSION 2 // for non-compatible changes
#define FIRMWARE_MINOR_VERSION 7 // for backwards compatible changes
#define FIRMWARE_MINOR_VERSION 8 // for backwards compatible changes
#define FIRMWARE_BUGFIX_VERSION 0 // for bugfix releases

#define MAX_DATA_BYTES 64 // max number of data bytes in incoming messages
Expand Down

0 comments on commit aaaa5d3

Please sign in to comment.