This is a library for the Adafruit LED Backpacks. This library works with the Adafruit Mini 8x8.

Fork of Adafruit_LEDBackpack by Luiz Hespanha

This is a very simple update waiting for Luiz to pull the changes.

Files at this revision

API Documentation at this revision

Comitter:
cbuss
Date:
Tue Aug 19 19:32:37 2014 +0000
Parent:
1:f066d5347c60
Commit message:
Added 'virtual' to drawPixel in order to avoid compiler warning.

Changed in this revision

Adafruit_LEDBackpack.h Show annotated file Show diff for this revision Revisions of this file
--- a/Adafruit_LEDBackpack.h	Fri Aug 16 15:44:44 2013 +0000
+++ b/Adafruit_LEDBackpack.h	Tue Aug 19 19:32:37 2014 +0000
@@ -68,7 +68,7 @@
  public:
   Adafruit_8x8matrix(I2C *i2c);
 
-  void drawPixel(int16_t x, int16_t y, uint16_t color);
+  virtual void drawPixel(int16_t x, int16_t y, uint16_t color);
 
  private:
 };
\ No newline at end of file