1
0
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:
Hans-Christoph Steiner 2008-09-12 16:53:03 +00:00
parent 8d8b3a3647
commit dea4079d94

View File

@ -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();