Skip to content

Commit 872e3cc

Browse files
add missing SerialFirmata.h optional include
1 parent c27ab47 commit 872e3cc

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

examples/StandardFirmataBLE/StandardFirmataBLE.ino

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,18 @@
2727
#include <Wire.h>
2828
#include <Firmata.h>
2929

30-
#include "bleConfig.h"
31-
3230
//#define SERIAL_DEBUG
3331
#include "utility/firmataDebug.h"
3432

33+
/*
34+
* Uncomment the following include to enable interfacing
35+
* with Serial devices via hardware or software serial.
36+
*/
37+
//#include "utility/SerialFirmata.h"
38+
39+
// follow the instructions in bleConfig.h to configure your BLE hardware
40+
#include "bleConfig.h"
41+
3542
#define I2C_WRITE 0x00 //B00000000
3643
#define I2C_READ 0x08 //B00001000
3744
#define I2C_READ_CONTINUOUSLY 0x10 //B00010000

0 commit comments

Comments
 (0)