Skip to content

Latest commit

 

History

History
 
 

SSD1306BareBack

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

#087 OLED/SSD1306BareBack

Test driving a monochrome 128x64 OLED Display with an Arduino and the raw command set

Here's a quick video of the circuit in action:

OLED/SSD1306BareBack demo

▶️ return to the LEAP Catalog

Notes

It runs a simple demo cycle, including the reading and display of a voltage from the A0 pin.

There are a few commonly-used libraries - such as ladyada's, as demoed in the SSD1306WithAdaFruitLibraries project - however this sketch uses the instruction set for device directly, as documented in the SSD1306 datasheet.

I'm using an Arduino Pro Mini running on 3.3V at 8MHz, and driving the OLED directly.

The OLED is one I got from aliexpress for USD3.93 - see the seller's page: Yellow+Blue 0.96" SPI Serial 128X64 OLED. Although it's a monochrome display, this unit comes with two-tinted glass, which makes the upper fifth of the screen yellow and the lower blue.

The pin breakouts are slightly different from the AdaFruit module (used in the Fritzing diagram). These are the actual pin connections for my unit:

Arduino OLED
D09 MOSI
D10 CLK
D11 D/C
D12 CS
GND GND
VCC VCC

Note that my OLED doesn't have a reset connection, so I'm not able to use a reset to get the display back to default configuration, hence the setup method runs through and sets all the configuration options regardless.

Of course, using the raw command approach means the program leaves out all the unecessary support, so memory requirements are much less than if importing a full library:

Memory Usage
program storage 4,650 bytes (15%)
dynamic memory 505 bytes (24%)

Construction

The Breadboard

The Schematic

The Build

Credits and References