i2c version has an offset due to wrong copy of temp buffer to display buffer, fixed in Adafruit_SSD1306.h

Dependents:   ezSBC_MPU9250 Test_OLED_Display untodoenuno OledI2CDisplay ... more

Fork of Adafruit_GFX by Neal Horman

Committer:
JojoS
Date:
Mon Jul 24 19:44:33 2017 +0000
Revision:
23:0b35bb153799
Parent:
21:ef35019b9b50
reversed use Stream logic: default is using Stream for compatibility

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nkhorman 13:8f03f908f22a 1 #ifndef _ADAFRUIT_GFX_CONFIG_H_
nkhorman 13:8f03f908f22a 2 #define _ADAFRUIT_GFX_CONFIG_H_
nkhorman 13:8f03f908f22a 3
nkhorman 13:8f03f908f22a 4 // Uncomment this to turn off the builtin splash
JojoS 21:ef35019b9b50 5 #define NO_SPLASH_ADAFRUIT
nkhorman 13:8f03f908f22a 6
nkhorman 13:8f03f908f22a 7 // Uncomment this to enable all functionality
JojoS 21:ef35019b9b50 8 // saves about 600 Bytes
JojoS 18:6aa925f254d6 9 #define GFX_WANT_ABSTRACTS
nkhorman 13:8f03f908f22a 10
JojoS 21:ef35019b9b50 11 // USE_IOSTREAM : GFX is derived from class stream
JojoS 21:ef35019b9b50 12 // adds printf, but costs about 10 kB
JojoS 23:0b35bb153799 13 //#define USE_NO_IOSTREAM
JojoS 21:ef35019b9b50 14
nkhorman 13:8f03f908f22a 15 // Uncomment this to enable only runtime font scaling, without all the rest of the Abstracts
nkhorman 13:8f03f908f22a 16 //#define GFX_SIZEABLE_TEXT
nkhorman 13:8f03f908f22a 17
nkhorman 13:8f03f908f22a 18
JojoS 21:ef35019b9b50 19 #endif