oled 1.0
OLED Graphics Control Library
Loading...
Searching...
No Matches
oled.h File Reference

Header file for OLED display control via hardware or software TWI/I2C. More...

#include <avr/io.h>
#include <util/delay.h>
#include <avr/eeprom.h>
#include "../common/macros/STRING_macros.h"
#include "../hal/avr/twi_soft/twi_soft.h"
Include dependency graph for oled.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define F_CPU   12000000UL
 System clock frequency definition.
#define OLED_USE_SOFT_TWI
 Enable software-based TWI (I2C) communication for the OLED display.
#define OLED_HAL_PLATFORM   avr
 Sets the target platform for the OLED hardware abstraction layer (HAL), e.g., avr or avr0.
#define OLED_ADDRESS   (0x78>>1)
 I2C (TWI) slave address of the OLED display.
#define OLED_CONTROL_COMMAND   0x80
 Control byte indicating a command for the OLED display.
#define OLED_CONTROL_DATA   0x40
 Control byte indicating data for the OLED display.
#define OLED_PAGE_SIZE   8UL
 Number of pixels per OLED page.
#define OLED_ROW_SIZE   64UL
 Number of pixel rows in the OLED display.
#define OLED_COLUMN_SIZE   128UL
 Number of pixel columns in the OLED display.
#define OLED_IDLE_TIME_US   10
 Delay time in microseconds after OLED TWI/I2C stop condition.
#define OLED_INIT_ROUTINE_IN_EEPROM
 Store OLED initialization routine commands in EEPROM.
#define OLED_CMD_SET_DISPLAY   0xAE
#define OLED_CMD_SET_DISPLAY_ON   0x01
#define OLED_CMD_SET_DISPLAY_OFF   0x00
#define OLED_CMD_SET_DISPLAY_CLOCK   0xD5
#define OLED_CMD_SET_DISPLAY_CLOCK_DIVIDE_RATIO   0x00
#define OLED_CMD_SET_DISPLAY_CLOCK_FREQUENCY   0x80
#define OLED_CMD_SET_MULTIPLEX_RATIO   0xA8
#define OLED_CMD_SET_MULTIPLEX_RATIO_16_MUX   0x1F
#define OLED_CMD_SET_MULTIPLEX_RATIO_32_MUX   0x2F
#define OLED_CMD_SET_MULTIPLEX_RATIO_64_MUX   0x3F
#define OLED_CMD_SET_DISPLAY_OFFSET   0xD3
#define OLED_CMD_SET_DISPLAY_OFFSET_VALUE   0x00
#define OLED_CMD_SET_DISPLAY_START_LINE_OFFSET   0x00
#define OLED_CMD_SET_DISPLAY_START_LINE   (0x40 | OLED_CMD_SET_DISPLAY_START_LINE_OFFSET)
#define OLED_CMD_SET_CHARGE_PUMP   0x8D
#define OLED_CMD_SET_CHARGE_PUMP_EXTERNAL   0x10
#define OLED_CMD_SET_CHARGE_PUMP_INTERNAL   0x14
#define OLED_CMD_SET_SEGMENT_REMAP_STANDARD   0x00
#define OLED_CMD_SET_SEGMENT_REMAP_REVERSED   0x01
#define OLED_CMD_SET_SEGMENT_REMAP   (0xA0 | OLED_CMD_SET_SEGMENT_REMAP_REVERSED)
#define OLED_CMD_SET_COM_OUTPUT_SCAN_DIRECTION_NORMAL   0x00
#define OLED_CMD_SET_COM_OUTPUT_SCAN_DIRECTION_REVERSED   0x08
#define OLED_CMD_SET_COM_OUTPUT_SCAN_DIRECTION   (0xC0 | OLED_CMD_SET_COM_OUTPUT_SCAN_DIRECTION_REVERSED)
#define OLED_CMD_SET_COM_PINS_HARDWARE_CONFIGURATION   0xDA
#define OLED_CMD_SET_COM_PINS_HARDWARE_CONFIGURATION_SEQUENTIAL   0x02
#define OLED_CMD_SET_COM_PINS_HARDWARE_CONFIGURATION_ALTERNATIVE   0x12
#define OLED_CMD_SET_COM_PINS_HARDWARE_CONFIGURATION_NOREMAP   0x02
#define OLED_CMD_SET_COM_PINS_HARDWARE_CONFIGURATION_REMAP   0x22
#define OLED_CMD_SET_COM_PINS_HARDWARE_CONFIGURATION_SETUP   (OLED_CMD_SET_COM_PINS_HARDWARE_CONFIGURATION_ALTERNATIVE | OLED_CMD_SET_COM_PINS_HARDWARE_CONFIGURATION_NOREMAP)
#define OLED_CMD_SET_CONTRAST   0x81
#define OLED_CMD_SET_CONTRAST_VALUE   0x7F
#define OLED_CMD_ENTIRE_DISPLAY_ON_RESUME_RAM   0x00
#define OLED_CMD_ENTIRE_DISPLAY_ON_IGNORE_RAM   0x01
#define OLED_CMD_ENTIRE_DISPLAY_ON   (0xA4 | OLED_CMD_ENTIRE_DISPLAY_ON_RESUME_RAM)
#define OLED_CMD_SET_DISPLAY_MODE_NORMAL   0x00
#define OLED_CMD_SET_DISPLAY_MODE_INVERSE   0x01
#define OLED_CMD_SET_DISPLAY_MODE   (0xA6 | OLED_CMD_SET_DISPLAY_MODE_NORMAL)
#define OLED_CMD_SET_MEMORY_ADDRESSING_MODE   0x20
#define OLED_CMD_SET_MEMORY_ADDRESSING_MODE_HORIZONTAL   0x00
#define OLED_CMD_SET_MEMORY_ADDRESSING_MODE_VERTICAL   0x01
#define OLED_CMD_SET_MEMORY_ADDRESSING_MODE_PAGE   0x02
#define OLED_CMD_SET_PAGE_START_ADDRESS   0xB0
 Command to set the start address of a page in the OLED display memory.
#define OLED_CMD_SET_LOWER_START_COLUMN_ADDRESS   0x00
 Command to set the lower nibble of the start column address in the OLED display memory.
#define OLED_CMD_SET_HIGHER_START_COLUMN_ADDRESS   0x10
 Command to set the higher nibble of the start column address in the OLED display memory.
#define TWI_SOFT_HEADER   _STR(../hal/OLED_HAL_PLATFORM/twi_soft/twi_soft.h)
#define OLED_START(MODE)
#define OLED_STOP()
#define OLED_DATA()
#define OLED_HOME()
 Sets the cursor position to the top-left corner of the OLED display.

Functions

void oled_init (void)
 Initializes the OLED display.
void oled_disable (void)
 Disables the TWI interface used for OLED communication.
void oled_home (void)
void oled_position (unsigned char column, unsigned char row)
 Sets the current write position on the OLED display.
void oled_scroll_vertical (unsigned char scroll)
 Scrolls the OLED display vertically by a specified offset.
void oled_frame (unsigned char *frame)
 Displays a full frame (all pages) of pixel data on the OLED.
void oled_page (unsigned char *data, unsigned char page)
 Writes a full page of pixel data to the OLED display.
void oled_page_segment (unsigned char *data, unsigned char column_start, unsigned char column_stop, unsigned char page)
 Writes a segment of pixel data to a specific page on the OLED display.
void oled_column (unsigned char data, unsigned char column, unsigned char page)
 Writes a single byte of pixel data to a specific column and page on the OLED display.
void oled_clear (void)
 Clears the entire OLED display.
void oled_clear_page (unsigned char page)
 Clears a single page of the OLED display.
void oled_clear_page_segment (unsigned char column_start, unsigned char column_stop, unsigned char page)
 Clears a specific segment of a page on the OLED display.
void oled_clear_column (unsigned char column, unsigned char page)
 Clears a single column within a specified page on the OLED display.

Detailed Description

Header file for OLED display control via hardware or software TWI/I2C.

This file provides function prototypes, macro definitions, and constants for controlling a monochrome OLED display connected over TWI (I2C) interface. It supports both software and hardware TWI implementations selectable via macros. The file defines configuration parameters such as display dimensions, control bytes, timing settings, and command codes required to initialize and operate the OLED display.

Note
Functions declared here enable initializing the display, positioning the cursor, updating display content by pages or columns, clearing the display, and scrolling.

Macros abstract the underlying TWI communication method (software or hardware) for sending commands and data, to ensure flexible deployment depending on hardware capabilities.

Author
g.raf
Date
2025-09-01
Version
1.0 Release
Note
This file is part of a larger project and subject to the license specified in the repository. For updates and the complete revision history, see the GitHub repository.
See also
https://github.com/0x007e/oled "AVR ATmega GitHub Repository"

Macro Definition Documentation

◆ F_CPU

#define F_CPU   12000000UL

System clock frequency definition.

This macro defines the operating frequency of the microcontroller's clock in Hertz. It is used by delay functions and timing calculations. The value should match the actual hardware clock frequency to ensure correct timing behavior in the software.

◆ OLED_ADDRESS

#define OLED_ADDRESS   (0x78>>1)

I2C (TWI) slave address of the OLED display.

This macro defines the 7-bit I2C address of the OLED display device used for communication over the TWI bus. The address is derived by right-shifting the 8-bit address 0x78 to conform to the 7-bit addressing scheme used by the hardware TWI interface. It is used when initiating communication with the display to ensure data is sent to the correct device on the bus.

◆ OLED_CMD_SET_HIGHER_START_COLUMN_ADDRESS

#define OLED_CMD_SET_HIGHER_START_COLUMN_ADDRESS   0x10

Command to set the higher nibble of the start column address in the OLED display memory.

This macro defines the command byte used to set the upper 4 bits (nibble) of the column start address, specifying the higher portion of the horizontal position in display RAM where data updates will begin.

Note
Combined with the lower nibble command, it allows full addressing across all columns.

Usage Example: Follow the lower nibble command and data with this higher nibble command and data (OLED_CMD_SET_HIGHER_START_COLUMN_ADDRESS | (data>>4)) to set the full column start address.

◆ OLED_CMD_SET_LOWER_START_COLUMN_ADDRESS

#define OLED_CMD_SET_LOWER_START_COLUMN_ADDRESS   0x00

Command to set the lower nibble of the start column address in the OLED display memory.

This macro defines the command byte used to set the lower 4 bits (nibble) of the column start address, specifying the horizontal position in display RAM where data writing begins. It works in conjunction with the higher nibble address command to address the full (0-127) column range of the display.

Usage Example: To set the column start address, send this command with the lower nibble data (OLED_CMD_SET_LOWER_START_COLUMN_ADDRESS | data) followed by the command for the higher nibble.

◆ OLED_CMD_SET_PAGE_START_ADDRESS

#define OLED_CMD_SET_PAGE_START_ADDRESS   0xB0

Command to set the start address of a page in the OLED display memory.

This macro defines the command byte used to select the page (row group) in the display RAM to begin writing data. The OLED display memory is organized into pages, each typically 8 pixels tall.

Note
Setting the page start address allows targeted updates to specific vertical sections of the display.

Usage Example: To write data to a specific page, send the command OLED_CMD_SET_PAGE_START_ADDRESS followed by the page number.

◆ OLED_COLUMN_SIZE

#define OLED_COLUMN_SIZE   128UL

Number of pixel columns in the OLED display.

This macro defines the horizontal resolution of the OLED display in pixels. It specifies how many columns of pixels the display has, which is important for memory addressing and graphical rendering on the display.

◆ OLED_CONTROL_COMMAND

#define OLED_CONTROL_COMMAND   0x80

Control byte indicating a command for the OLED display.

This macro defines the control byte value sent before a command byte to the OLED display during TWI (I2C) communication. It signals to the display controller that the following byte(s) should be interpreted as commands rather than display data.

Note
Proper use of this control byte is essential for configuring and controlling the OLED hardware.

◆ OLED_CONTROL_DATA

#define OLED_CONTROL_DATA   0x40

Control byte indicating data for the OLED display.

This macro defines the control byte value sent before display data bytes to the OLED display during TWI (I2C) communication. It signals to the display controller that the following byte(s) should be treated as pixel or graphic data to be rendered on the screen.

Note
Correct usage of this control byte ensures the proper update and display of graphical content.

◆ OLED_HAL_PLATFORM

#define OLED_HAL_PLATFORM   avr

Sets the target platform for the OLED hardware abstraction layer (HAL), e.g., avr or avr0.

Define this macro with the name of the target platform to select the corresponding platform-specific implementations (such as BUS or TWI access) for the OLED driver.

Common values are avr (classic AVR architecture) or avr0 (AVR0/1 series).

Note
Set this macro as global define as a compiler symbol to select the correct libraries of the whole project.

◆ OLED_HOME

#define OLED_HOME ( )
Value:
void oled_position(unsigned char column, unsigned char page)
Sets the current write position on the OLED display.
Definition oled.c:128

Sets the cursor position to the top-left corner of the OLED display.

This macro calls the function oled_position with coordinates (0, 0), which moves the cursor to the first column and first page (row) of the OLED screen.

Note
It is typically used to reset the write position before updating or clearing the display.

◆ OLED_IDLE_TIME_US

#define OLED_IDLE_TIME_US   10

Delay time in microseconds after OLED TWI/I2C stop condition.

This macro defines the idle delay time in microseconds to wait after sending a stop condition to the OLED display over the TWI (I2C) bus. This delay ensures the display has sufficient time to process commands before the next communication starts.

◆ OLED_INIT_ROUTINE_IN_EEPROM

#define OLED_INIT_ROUTINE_IN_EEPROM

Store OLED initialization routine commands in EEPROM.

Defining this macro moves the OLED display initialization command sequence from program memory (flash) to EEPROM. This can help reduce flash usage and allow easier modification of initialization commands without recompiling the firmware.

Note
If not defined, the initialization routine is stored in program memory by default.

◆ OLED_PAGE_SIZE

#define OLED_PAGE_SIZE   8UL

Number of pixels per OLED page.

This macro defines the height of a single OLED page in pixels. The OLED display memory is organized in pages of this size, which is used for addressing and updating the display in page mode.

◆ OLED_ROW_SIZE

#define OLED_ROW_SIZE   64UL

Number of pixel rows in the OLED display.

This macro defines the vertical resolution of the OLED display in pixels. It specifies how many rows of pixels the display has, used to calculate display memory size and addressing for rendering graphics.

◆ OLED_USE_SOFT_TWI

#define OLED_USE_SOFT_TWI

Enable software-based TWI (I2C) communication for the OLED display.

Define this macro to use a software-implemented TWI (bit-banging) interface for communication with the OLED display. If this macro is not defined, the library defaults to using the hardware TWI (I2C) peripheral of the system. Software TWI can be useful on systems without hardware TWI support or if pin flexibility is required.

Note
To disable software TWI and use hardware TWI instead, comment out or undefine this macro.

Function Documentation

◆ oled_clear()

void oled_clear ( void )

Clears the entire OLED display.

This function iterates through all display pages and clears each one by calling oled_clear_page. After clearing all pages, it resets the cursor position to the home position (0,0) using OLED_HOME.

Note
This effectively resets the display content, turning off all pixels.
Here is the call graph for this function:
Here is the caller graph for this function:

◆ oled_clear_column()

void oled_clear_column ( unsigned char column,
unsigned char page )

Clears a single column within a specified page on the OLED display.

Parameters
columnThe column index (horizontal position) to clear.
pageThe page index (vertical position in groups of 8 pixel rows) where the column resides.

This function sets the cursor to the specified column and page, then writes a single zero byte to turn off all pixels in that column for the specified page. Communication with the display is done via TWI, using start and stop conditions, and the data control byte.

Note
Clearing a column effectively resets the pixels in that vertical segment to off.
Here is the call graph for this function:

◆ oled_clear_page()

void oled_clear_page ( unsigned char page)

Clears a single page of the OLED display.

Parameters
pageThe page index (0-based) to clear. Must be less than OLED_ROW_SIZE/OLED_PAGE_SIZE.

This function clears all columns within the specified page by calling oled_clear_page_segment with the full column range from 0 to OLED_COLUMN_SIZE - 1.

Note
It turns off all pixels on that page, effectively wiping the displayed content in that segment.
Here is the call graph for this function:
Here is the caller graph for this function:

◆ oled_clear_page_segment()

void oled_clear_page_segment ( unsigned char column_start,
unsigned char column_stop,
unsigned char page )

Clears a specific segment of a page on the OLED display.

Parameters
column_startThe starting column index of the segment to clear (inclusive).
column_stopThe ending column index of the segment to clear (inclusive).
pageThe page index (0-based) on which the segment is located. Must be less than OLED_ROW_SIZE/OLED_PAGE_SIZE.

This function clears a horizontal segment of a specified page by writing zeroes (turning off pixels) to the display RAM across the specified column range. It first validates the input parameters to ensure they are within the display boundaries and that column_start is less than or equal to column_stop. After setting the cursor position to the start column of the specified page, it sends a series of zero bytes over the TWI interface to clear each column in the segment. Communication starts with a start condition and a control byte indicating data transmission, and ends with a stop condition.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ oled_column()

void oled_column ( unsigned char data,
unsigned char column,
unsigned char page )

Writes a single byte of pixel data to a specific column and page on the OLED display.

Parameters
dataThe byte of pixel data to write; each bit represents a pixel in the vertical column.
columnThe column index (horizontal position) where the data should be written.
pageThe page index where the data should be written.
Note
Both column and page must be within the display bounds (OLED_COLUMN_SIZE and OLED_ROW_SIZE/OLED_PAGE_SIZE respectively).

This function updates the pixel data of one specific column within a specified page. It first verifies that the target page and column are valid. Then, it sets the OLED cursor to the specified position and sends the pixel data byte via TWI. Communication begins with a start condition and a control byte indicating data transmission, followed by the data byte, and ends with a stop condition.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ oled_disable()

void oled_disable ( void )
inline

Disables the TWI interface used for OLED communication.

This inline function disables the TWI (I2C) peripheral or software interface used to communicate with the OLED display, depending on whether software or hardware TWI is enabled. It is used to safely release TWI resources when OLED communication is no longer required, helping to reduce power consumption or prevent bus contention.

Here is the call graph for this function:

◆ oled_frame()

void oled_frame ( unsigned char * frame)

Displays a full frame (all pages) of pixel data on the OLED.

Parameters
framePointer to an array containing pixel data for the entire display, organized as consecutive pages.

This function updates the entire OLED screen by sequentially writing data page by page. It first resets the current cursor position to the home position (0,0), then iterates over all pages, calling oled_page to write each page’s data.

Note
The frame parameter should contain OLED_PAGE_SIZE pages of pixel data, where each page holds pixel data for the full width of the display.
Here is the call graph for this function:

◆ oled_home()

void oled_home ( void )

◆ oled_init()

void oled_init ( void )

Initializes the OLED display.

This function initializes the TWI (I2C) communication interface to the OLED display, supports both software and hardware TWI based on compile-time configuration. It then sends a predefined sequence of initialization commands stored either in EEPROM or program memory to configure the OLED hardware registers and settings. After sending the initialization commands, the communication is ended with a stop condition, and the display is cleared to prepare it for use.

Note
This function must be called once during system startup before any display operations.
Here is the call graph for this function:
Here is the caller graph for this function:

◆ oled_page()

void oled_page ( unsigned char * data,
unsigned char page )

Writes a full page of pixel data to the OLED display.

Parameters
dataPointer to an array containing pixel data for one display page.
pageThe page index (0-based) to which the data should be written. Must be less than OLED_ROW_SIZE/OLED_PAGE_SIZE.

This function writes pixel data to a complete page (horizontal row of 8 pixel rows) on the OLED display. It performs boundary checking on the page parameter; if the page is invalid, the function returns without action.

Note
Internally, it calls oled_page_segment to update the entire width of the display on the specified page, passing the full column range from 0 to OLED_COLUMN_SIZE - 1.
Here is the call graph for this function:
Here is the caller graph for this function:

◆ oled_page_segment()

void oled_page_segment ( unsigned char * data,
unsigned char column_start,
unsigned char column_stop,
unsigned char page )

Writes a segment of pixel data to a specific page on the OLED display.

Parameters
dataPointer to an array containing pixel data for the segment to write.
column_startThe starting column index of the segment (inclusive).
column_stopThe ending column index of the segment (inclusive).
pageThe page index (0-based) where the data should be written. Must be less than OLED_ROW_SIZE/OLED_PAGE_SIZE.

This function writes a horizontal segment of pixel data on a specified page of the OLED display. It first validates the input parameters to ensure the page and column ranges are within the display bounds, and that the column start is less than the column stop.

The display cursor is set to the starting column and page before data transmission. Data bytes are then sent sequentially to the OLED over the TWI interface, using either software or hardware TWI accordingly. Communication begins with a start condition and control byte indicating data transmission, and ends with a stop condition.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ oled_position()

void oled_position ( unsigned char column,
unsigned char page )

Sets the current write position on the OLED display.

Parameters
columnThe column index (horizontal position) to set, must be less than OLED_COLUMN_SIZE.
pageThe page index to set, must be less than OLED_ROW_SIZE/OLED_PAGE_SIZE.

This function updates the internal tracking variables column_current_position and page_current_position to the specified values and sends the corresponding commands to the OLED controller to set the memory addressing position for subsequent pixel data writes. It sends commands to set the page start address and the lower and higher nibbles of the column start address. Communication is done over the TWI interface in write mode.

Note
If the requested position exceeds display bounds, the function does nothing.
Here is the caller graph for this function:

◆ oled_scroll_vertical()

void oled_scroll_vertical ( unsigned char scroll)

Scrolls the OLED display vertically by a specified offset.

Parameters
scrollThe number of pixel rows to offset the display vertically. Must be less than OLED_ROW_SIZE to be valid.

This function adjusts the vertical display offset by sending the appropriate command and data to the OLED controller via TWI interface. It effectively shifts the visible area of the display vertically by the specified number of pixel rows, creating a scrolling effect.

Note
If the scroll value is equal to or exceeds the maximum row size, the function does nothing.