Port of the Adafruit_IS31FL3731 library for Arduino. Enables control of the feather Charliewing LED Matrix peripheral board. Makes use of the I2Cdev library for I2C.

Dependencies:   I2Cdev_MAX32630FTHR

Defaulty uses pinmap for the Maxim 32630FTHR Pegasus board. For a different board, change pin definitions in I2Cdev.h

Committer:
DVLevine
Date:
Sat Mar 17 23:15:19 2018 +0000
Revision:
3:0da61b470b86
Parent:
0:9a73d45a17de
Cleaned up comments a bit. Removed old commend out code from arduino port.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
DVLevine 0:9a73d45a17de 1 #ifndef _ADAFRUIT_GFX_CONFIG_H_
DVLevine 0:9a73d45a17de 2 #define _ADAFRUIT_GFX_CONFIG_H_
DVLevine 0:9a73d45a17de 3
DVLevine 0:9a73d45a17de 4 // Uncomment this to turn off the builtin splash
DVLevine 0:9a73d45a17de 5 //#define NO_SPLASH_ADAFRUIT
DVLevine 0:9a73d45a17de 6
DVLevine 0:9a73d45a17de 7 // Uncomment this to enable all functionality
DVLevine 0:9a73d45a17de 8 #define GFX_WANT_ABSTRACTS
DVLevine 0:9a73d45a17de 9
DVLevine 0:9a73d45a17de 10 // Uncomment this to enable only runtime font scaling, without all the rest of the Abstracts
DVLevine 0:9a73d45a17de 11 //#define GFX_SIZEABLE_TEXT
DVLevine 0:9a73d45a17de 12
DVLevine 0:9a73d45a17de 13
DVLevine 0:9a73d45a17de 14 #endif