This is a library for the Adafruit LED Backpacks. This library works with the Adafruit Mini 8x8.
Dependents: CompSci335Project TritiumSim
How to use this library:
main.cpp
#include "mbed.h" #include "Adafruit_LEDBackpack.h" #include "Adafruit_GFX.h" I2C i2c(p9, p10); Adafruit_8x8matrix matrix = Adafruit_8x8matrix(&i2c); int main() { matrix.begin(0x70); while(1) { matrix.clear(); for (int i = 0; i < 8; i++) { for (int j = 0; j < 8; j++) { matrix.drawPixel(i, j, LED_ON); } } matrix.writeDisplay(); // write the changes we just made to the display wait(60); } }
Files at revision 1:f066d5347c60
Name | Size | Actions |
---|---|---|
[up] | ||
Adafruit_GFX.cpp | 11221 | Revisions Annotate |
Adafruit_GFX.h | 4201 | Revisions Annotate |
Adafruit_LEDBackpack.cpp | 2893 | Revisions Annotate |
Adafruit_LEDBackpack.h | 1949 | Revisions Annotate |
glcdfont.h | 9839 | Revisions Annotate |