SSD1306 I2C Display Driver
1.2.2
This library is developed to control SSD1306 I2C OLED Display
|
#include <stdint.h>
#include <avr/pgmspace.h>
Go to the source code of this file.
Enumerations | |
enum | { LCD_TYPE_SSD1306, LCD_TYPE_PCD8544 } |
Variables | |
uint8_t | s_displayHeight |
uint8_t | s_displayWidth |
uint8_t | g_lcd_type |
global lcd settings
Definition in file lcd_common.h.
anonymous enum |
Enumerator | |
---|---|
LCD_TYPE_SSD1306 | Default type of LCD display: ssd1306 oled |
LCD_TYPE_PCD8544 | Experimental type of LCD display: pcd8544 led |
Definition at line 33 of file lcd_common.h.
uint8_t g_lcd_type |
Current selected lcd display type
Definition at line 30 of file ssd1306.cpp.
uint8_t s_displayHeight |
Current display height
Definition at line 28 of file ssd1306.cpp.
uint8_t s_displayWidth |
Current display width
Definition at line 29 of file ssd1306.cpp.