Line 13: Line 13:
 
|0 || 1 || 1 || 1 || 1 || 0 || SA0 || R/W
 
|0 || 1 || 1 || 1 || 1 || 0 || SA0 || R/W
 
|}
 
|}
“SA0” bit provides an extension bit for the slave address. Either “0111100” or “0111101”, can be
+
<b>SA0</b> bit provides an extension bit for the slave address. Either “0111100” or “0111101”, can be selected as the slave address of SSD1306.<br>
selected as the slave address of SSD1306. D/C# pin acts as SA0 for slave address selection.
+
<b>R/W</b> bit is used to determine the operation mode of the I2C-bus interface.<br>
“R/W” bit is used to determine the operation mode of the I2C-bus interface. R/W#=1, it is in read mode. R/W=0, it is in write mode.
+
R/W=1, it is in read mode. <br>
 +
R/W=0, it is in write mode.
  
 
*<b>I2C-bus data signal (SDA):</b> SDA acts as a communication channel between the transmitter and the receiver. The data and the acknowledgement are sent through the SDA.
 
*<b>I2C-bus data signal (SDA):</b> SDA acts as a communication channel between the transmitter and the receiver. The data and the acknowledgement are sent through the SDA.
It should be noticed that the ITO track resistance and the pulled-up resistance at “SDA” pin becomes a voltage potential divider. As a result, the acknowledgement would not be possible to attain a valid logic 0 level in “SDA”.
+
 
“SDAIN” and “SDAOUT” are tied together and serve as SDA. The “SDAIN” pin must be connected to act as SDA. The “SDAOUT” pin may be disconnected. When “SDAOUT” pin is disconnected, the acknowledgement signal will be ignored in the I2C-bus.
+
 
*<b>I2C-bus clock signal (SCL):</b> The transmission of information in the I2C-bus is following a clock signal, SCL. Each transmission of data bit is taken place during a single clock period of SCL.
 
*<b>I2C-bus clock signal (SCL):</b> The transmission of information in the I2C-bus is following a clock signal, SCL. Each transmission of data bit is taken place during a single clock period of SCL.
  

Revision as of 12:33, 8 August 2016

In earlier tutorials, we discussed the interfacing of LCD and GLCD. In this tutorial, we will see how to interfaces an I2C OLED(128x64) with 8051. There are plenty of well written arduino oled libraries to display strings, numbers, and logos. They all use a shadow ram buffer of 1024 bytes(128x64 pixels) and support different fonts etc. As 8051 has only 128 bytes of RAM we cannot use the shadow RAM buffer and support all the fonts.
First, we will see the frame format for sending the commands and data to OLED. After this, we will discuss few of the OLED commands. Finally, we will be displaying string, numbers on OLED. Displaying of logos/icons will be discussed in the separate tutorial.

OLED Frame Formats

The I2C communication interface consists of slave address bit SA0, I2C-bus data signal SDA and I2C-bus clock signal SCL. Both the data and clock signals must be connected to pull-up resistors.

  • Slave address bit (SA0): SSD1306 has to recognize the slave address before transmitting or receiving any information by the I2C-bus. The device will respond to the slave address following by the slave address bit (“SA0” bit) and the read/write select bit (“R/W#” bit) with the following byte format,
B7 B6 B5 B4 B3 B2 B1 B0
0 1 1 1 1 0 SA0 R/W

SA0 bit provides an extension bit for the slave address. Either “0111100” or “0111101”, can be selected as the slave address of SSD1306.
R/W bit is used to determine the operation mode of the I2C-bus interface.
R/W=1, it is in read mode.
R/W=0, it is in write mode.

  • I2C-bus data signal (SDA): SDA acts as a communication channel between the transmitter and the receiver. The data and the acknowledgement are sent through the SDA.
  • I2C-bus clock signal (SCL): The transmission of information in the I2C-bus is following a clock signal, SCL. Each transmission of data bit is taken place during a single clock period of SCL.

OLED Commands

Command Write

Example Code

Downloads