ugfx/drivers/gdisp/SSD1306
Joel Bodenmann 08e1b0ebc7 Removed the doxygen inside of every driver as doxygen is only meant for highlevel API documentation.
Documenting the drivers interface should be done inside a template driver or the gdisp LLD abstraction.
2014-03-28 19:45:08 +01:00
..
SSD1306.h Removed the doxygen inside of every driver as doxygen is only meant for highlevel API documentation. 2014-03-28 19:45:08 +01:00
board_SSD1306_template.h Removed the doxygen inside of every driver as doxygen is only meant for highlevel API documentation. 2014-03-28 19:45:08 +01:00
gdisp_lld.mk Rename GDISP driver files to prevent problems when compiling for multiple controllers on platforms that put all generated object files into a single directory. 2013-10-28 11:03:39 +10:00
gdisp_lld_SSD1306.c Removed the doxygen inside of every driver as doxygen is only meant for highlevel API documentation. 2014-03-28 19:45:08 +01:00
gdisp_lld_config.h Removed the doxygen inside of every driver as doxygen is only meant for highlevel API documentation. 2014-03-28 19:45:08 +01:00
readme.txt Added SSD1306 driver by user goeck 2013-08-26 00:50:47 +02:00

readme.txt

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

Description:

Driver for OLED with 4-wire serial interface and I²C/SPI interface

Know restictions:
- Driver works only with SSD1306 hooked up over I2C or SPI (include corresponding header)
- Driver is written for 128x64 pixel displays (128x32 are only partly supported and need small further work)
- after using uGFX subsystem gdisp_lld_display() has to be called "by hand" to push framebuffer to display

To use this driver:

1. 	Add in your gfxconf.h:
	a) #define GFX_USE_GDISP	TRUE

	b) Any optional high level driver defines (see gdisp.h) eg: GDISP_NEED_MULTITHREAD

	c) The following are optional - define them if you are not using the defaults below:
		#define GDISP_SCREEN_WIDTH		128
		#define GDISP_SCREEN_HEIGHT		64

2. 	If you are not using a known board then create a gdisp_lld_board.h file according to
	given example files (or just stick with them) and ensure it is on your include path.

3. 	To your makefile add the following lines:
	include $(GFXLIB)/drivers/gdisp/SSD1306/gdisp_lld.mk

4. 	Call gdisp_lld_display() every time you want to update display content