Not sure where I got my copy of this PDF :
http://www.scribd.com/doc/251042421/Ssd-1306#scribdI found a vertical flip:
oled.ssd1306_send_command( ((0xc8) >> 8) | 0xc0 ); // send command Set COM Output Scan Direction (C0h/C8h)This puts into HUD mode, that is flipped 180 and mirrored. Not fun to look at. This shows up as a side effect of bugs in the current (1.5.8C) code (updated on GitHub now for next release) if you see it while wrapping text.
10.1.14 Set COM Output Scan Direction (C0h/C8h)
This command sets the scan direction of the COM output, allowing layout flexibility in the OLED module
design. Additionally, the display will show once this command is issued. For example, if this command is
sent during normal display then the graphic display will be vertically flipped immediately. Please refer to
Table 10-3 for details.
I found this if you like black on white text - maybe you want to use the OLED as a white LED or catch your attention:
oled.ssd1306_send_command( 0xa7 ); // send command 0xa6 Set Normal/ 0xa7 Inverse Display (A6h/A7h)Very fast and preserves screen content but inverts the whole display, when blinking the LED won't do.