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
1 changed files with 2 additions and 1 deletions

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