aboutsummaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorHans-Christoph Steiner <hans@at.or.at>2008-09-12 16:53:03 +0000
committerHans-Christoph Steiner <hans@at.or.at>2008-09-12 16:53:03 +0000
commitad860f84d3e561767d434c88ee8e25e6ea612e18 (patch)
treecc4d49ac81af2d6caf0568545fd140218eddd0df /libraries
parent7b658714de746b9c3da1e05157413942d349ff1b (diff)
Firmata.h now needs to have WProgram.h, since in the sketches WProgram.h has moved from the first include to the last
Diffstat (limited to 'libraries')
-rw-r--r--libraries/Firmata/Firmata.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/Firmata/Firmata.h b/libraries/Firmata/Firmata.h
index 702e1dc..c556c4a 100644
--- a/libraries/Firmata/Firmata.h
+++ b/libraries/Firmata/Firmata.h
@@ -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();