Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Version to 3.3.1 #175

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/firmata/ConfigurableFirmata.git"
},
"version": "3.3.0",
"version": "3.3.1",
"exclude": [
"extras",
"test"
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ConfigurableFirmata
version=3.3.0
version=3.3.1
author=Firmata Developers
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.
Expand Down
2 changes: 1 addition & 1 deletion src/ConfigurableFirmata.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
#define FIRMATA_FIRMWARE_MAJOR_VERSION 3 // for non-compatible changes
#define FIRMATA_FIRMWARE_MINOR_VERSION 3 // for backwards compatible changes
#define FIRMATA_FIRMWARE_BUGFIX_VERSION 0 // for bugfix releases
#define FIRMATA_FIRMWARE_BUGFIX_VERSION 1 // for bugfix releases

#ifdef LARGE_MEM_DEVICE
#define MAX_DATA_BYTES 252 // The ESP32 has enough RAM so we can reduce the number of packets, but the value must not exceed 2^8 - 1, because many methods use byte-indexing only
Expand Down
1 change: 1 addition & 0 deletions src/I2CFirmata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include "I2CFirmata.h"

I2CFirmata::I2CFirmata()
: query()
{
isI2CEnabled = false;
queryIndex = -1;
Expand Down
Loading