mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-30 11:24:12 +01:00
Firmata.h now needs to have WProgram.h, since in the sketches WProgram.h has moved from the first include to the last
This commit is contained in:
parent
8d8b3a3647
commit
dea4079d94
@ -13,6 +13,7 @@
|
||||
#ifndef Firmata_h
|
||||
#define Firmata_h
|
||||
|
||||
#include <WProgram.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
|
||||
@ -66,7 +67,7 @@ extern "C" {
|
||||
|
||||
|
||||
// TODO make it a subclass of HardwareSerial
|
||||
class FirmataClass
|
||||
class FirmataClass : public Print
|
||||
{
|
||||
public:
|
||||
FirmataClass();
|
||||
|
Loading…
Reference in New Issue
Block a user