oledb 2.0.0.0
Main Page

OLED B click

OLED B click carries a 96 x 39px blue monochrome passive matrix OLED display. The display is bright, has a wide viewing angle and low power consumption.

click Product page


Click library

  • Author : MikroE Team
  • Date : Feb 2023.
  • Type : I2C/SPI type

Software Support

We provide a library for the OLEDB Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

Package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Library Description

‍This library contains API for OLEDB Click driver.

Standard key functions :

  • oledb_cfg_setup Config Object Initialization function.
    void oledb_cfg_setup(oledb_cfg_t *cfg)
    Configuration Object Setup function.
    Click configuration structure definition.
    Definition oledb.h:204
  • oledb_init Initialization function.
    #define err_t
    Definition oledb.h:126
    err_t oledb_init(oledb_t *ctx, oledb_cfg_t *cfg)
    Click Initialization function.
    Click context object definition.
    Definition oledb.h:179

Example key functions :

  • oledb_display_picture This function allows user to display picture for on the screen.
    void oledb_display_picture(oledb_t *ctx, oledb_resources_t *pic)
    Display Picture function.
    const uint8_t oledb_resources_t
    Definition oledb.h:167
  • oledb_clear_display This function clears SSD1306 controller display.
    void oledb_clear_display(oledb_t *ctx)
    Clear Display function.
  • oledb_write_string This function writes a text string from the selected position in a 5x7 or 6x8 font size.
    void oledb_write_string( oledb_t *ctx, uint8_t font, uint8_t row, uint8_t position, uint8_t *data_in );
    void oledb_write_string(oledb_t *ctx, uint8_t font, uint8_t row, uint8_t position, uint8_t *data_in)
    Write String function.

Example Description

‍This example demonstrates the use (control) of the OLED B display.

The demo application is composed of two sections :

Application Init

‍Configures the microcontroller for communication and initializes the click board to default state.

void application_init ( void ) {
log_cfg_t log_cfg;
oledb_cfg_t oledb_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
oledb_cfg_setup( &oledb_cfg );
OLEDB_MAP_MIKROBUS( oledb_cfg, MIKROBUS_1 );
err_t init_flag = oledb_init( &oledb, &oledb_cfg );
if ( ( I2C_MASTER_ERROR == init_flag ) || ( SPI_MASTER_ERROR == init_flag ) )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
oledb_default_cfg ( &oledb );
log_info( &logger, " Application Task " );
}
#define OLEDB_MAP_MIKROBUS(cfg, mikrobus)
Definition oledb.h:145
void oledb_default_cfg(oledb_t *ctx)
Click Default Configuration function.
void application_init(void)
Definition main.c:29

Application Task

‍This section contains the main program that is executed showing a practical example on how to use the implemented functions.

void application_task ( void ) {
Delay_ms ( 100 );
oledb_write_string( &oledb, OLEDB_FONT_6X8, 0, 0, " MIKROE " );
oledb_write_string( &oledb, OLEDB_FONT_6X8, 1, 0, " OLED B click " );
oledb_write_string( &oledb, OLEDB_FONT_6X8, 2, 0, " with SSD1306 " );
oledb_write_string( &oledb, OLEDB_FONT_6X8, 3, 0, " controller " );
oledb_write_string( &oledb, OLEDB_FONT_6X8, 4, 0, " TEST EXAMPLE " );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
oledb_write_string( &oledb, OLEDB_FONT_6X8, 0, 0, " TEXT SCROLL EXAMPLE " );
oledb_write_string( &oledb, OLEDB_FONT_6X8, 4, 0, " TEXT SCROLL EXAMPLE " );
Delay_ms ( 1000 );
oledb_scroll_right( &oledb, 4, 0 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
oledb_stop_scroll( &oledb );
Delay_ms ( 100 );
Delay_ms ( 500 );
Delay_ms ( 500 );
Delay_ms ( 500 );
Delay_ms ( 500 );
Delay_ms ( 300 );
for ( uint8_t contrast = 0xAF; contrast > 0x00; contrast-- )
{
oledb_set_contrast( &oledb, contrast );
Delay_ms ( 5 );
}
for ( uint8_t contrast = 0x00; contrast < 0xAF; contrast++ )
{
oledb_set_contrast( &oledb, contrast );
Delay_ms ( 5 );
}
oledb_scroll_left( &oledb, 0, 4 );
Delay_ms ( 1000 );
oledb_stop_scroll( &oledb );
oledb_scroll_right( &oledb, 0, 4 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
oledb_stop_scroll( &oledb );
oledb_scroll_left( &oledb, 0, 4 );
Delay_ms ( 1000 );
oledb_stop_scroll( &oledb );
}
void oledb_set_contrast(oledb_t *ctx, oledb_data_t value)
Contrast Setting function.
void oledb_send_cmd(oledb_t *ctx, oledb_data_t tx_cmd)
Send cmd function.
void oledb_stop_scroll(oledb_t *ctx)
Stop Scrolling function.
void oledb_scroll_right(oledb_t *ctx, oledb_data_t start_page_addr, oledb_data_t end_page_addr)
Scroll Right function.
void oledb_scroll_left(oledb_t *ctx, oledb_data_t start_page_addr, oledb_data_t end_page_addr)
Scroll Left function.
#define OLEDB_NORMALDISPLAY
Definition oledb.h:80
#define OLEDB_FONT_6X8
Definition oledb.h:65
#define OLEDB_INVERTDISPLAY
Definition oledb.h:83
void application_task(void)
Definition main.c:62
const uint8_t oledb_img_mikroe[]
Memory buffers for 96x39 OLED monochrome module.

The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Other Mikroe Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.OLEDB

Additional notes and informations

Depending on the development board you are using, you may need USB UART click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. UART terminal is available in all MikroElektronika compilers.