Demonstration of SSD1308 OLED driver library

Dependencies:   mbed SSD1308_128x64_I2C

Files at this revision

API Documentation at this revision

Comitter:
wim
Date:
Mon Dec 18 18:46:21 2017 +0000
Parent:
7:ae282775cbcc
Commit message:
Fixed non-copyable issue (Thx kenjiArai)

Changed in this revision

SSD1308_128x64_I2C.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- a/SSD1308_128x64_I2C.lib	Thu Jan 01 17:54:33 2015 +0000
+++ b/SSD1308_128x64_I2C.lib	Mon Dec 18 18:46:21 2017 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/wim/code/SSD1308_128x64_I2C/#df92b0c0cb92
+http://mbed.org/users/wim/code/SSD1308_128x64_I2C/#e564cde8e03e
--- a/main.cpp	Thu Jan 01 17:54:33 2015 +0000
+++ b/main.cpp	Mon Dec 18 18:46:21 2017 +0000
@@ -5,6 +5,7 @@
  * Released under the MIT License: http://mbed.org/license/mit
  *
  * version 0.2 Initial Release
+ * version 0.3 2017 Fixed non-copyable issue (Thx kenjiArai) 
  */
 #include "mbed.h"
 #include "mbed_logo.h"
@@ -45,7 +46,7 @@
 Serial pc(USBTX, USBRX); // tx, rx
 
 // Instantiate OLED
-SSD1308 oled = SSD1308(i2c, SSD1308_SA0);
+SSD1308 oled = SSD1308(&i2c, SSD1308_SA0);
 
 void show_menu() {
     pc.printf("0: Exit\r");
--- a/mbed.bld	Thu Jan 01 17:54:33 2015 +0000
+++ b/mbed.bld	Mon Dec 18 18:46:21 2017 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/4fc01daae5a5
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/e7ca05fa8600
\ No newline at end of file