Heavily documented control library for the uOLED-96-G1 (SGC) by 4D Systems. Will likely work with any of the 4D Systems serial controlled screens. <<info>> All examples in the documentation have been tested to the best of my current abilities, but there are a few functions that I simply do not use. I have created a Lighthouse page for this library. You may submit bug reports or feature requests to [[http://mbed-uoled.lighthouseapp.com|this page]]. If you really do not wish to sign up for a Lighthouse account you may also post any bugs or requests [[/users/Nakor/notebook/uoled-bug-reports/|here]]. <</info>>

Dependents:   DS18B20 DS18B20GSM Astromed Astromed_build20121123

Revision:
11:1686d4d4bbdb
Parent:
10:b9efeb70cce1
Child:
12:59da6ae5cfb7
--- a/uOLED.cpp	Mon Dec 20 20:10:13 2010 +0000
+++ b/uOLED.cpp	Mon Dec 20 20:17:07 2010 +0000
@@ -230,16 +230,16 @@
     return returnValue;
 }
 
-bool uOLED::setBackgroundColor(short colorA, short colorB) {
+bool uOLED::setBackgroundColor(short color) {
     _oled.putc(0x42);
 
-    /*
+    
     _oled.putc(color >> 8);
     _oled.putc(color & 0xFF);
-    */
+    
     
-    _oled.putc(colorA);
-    _oled.putc(colorB);
+    //_oled.putc(colorA);
+    //_oled.putc(colorB);
 
     return (_oled.getc() == OLED_ACK);
 }