From bec9b2b4e72b4b308f1fb14c81d19666482c0884 Mon Sep 17 00:00:00 2001 From: commandergc Date: Thu, 7 Aug 2014 06:47:33 +0100 Subject: [PATCH] Update MatrixDisplay.h Made a change to includes so that the library will work with newer versions of the Arduino software. #include / have been replaced with --- MatrixDisplay.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/MatrixDisplay.h b/MatrixDisplay.h index b5c30aa..af49b2f 100644 --- a/MatrixDisplay.h +++ b/MatrixDisplay.h @@ -22,11 +22,18 @@ #ifndef MATRIX_DISPLAY_GUARD #define MATRIX_DISPLAY_GUARD +#if ARDUINO < 100 +#include +#include +#else +#include +#endif + #include #include #include #include -#include + #include "HardwareSerial.h" #include "ht1632_cmd.h"