Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: GPS_OLED_HelloWorld WIZwiki-REST-io_v101 WIZwiki-REST-io_v102 WIZwiki-REST-io_v103
Fork of Adafruit_GFX by
Revision 17:e42e6f9c84e0, committed 2015-06-23
- Comitter:
- kaizen
- Date:
- Tue Jun 23 09:21:11 2015 +0000
- Parent:
- 16:7fb1d4d3525d
- Child:
- 18:3112550cc6a3
- Commit message:
- Fixed bug; It can't display the text after using display function. This problem is fixed;
Changed in this revision
| Adafruit_SSD1306.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/Adafruit_SSD1306.cpp Tue Nov 11 22:08:20 2014 +0000 +++ b/Adafruit_SSD1306.cpp Tue Jun 23 09:21:11 2015 +0000 @@ -141,6 +141,7 @@ command(SSD1306_SETHIGHCOLUMN | 0x0); // hi col = 0 command(SSD1306_SETSTARTLINE | 0x0); // line #0 sendDisplayBuffer(); + command(SSD1306_DISPLAYON); } // Clear the display buffer. Requires a display() call at some point afterwards
