cyberman54 / ss_oled

Simple and small Arduino library to control SH1106/SSD1306 OLED displays

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ss_oled (Small Simple OLED library)
Project started 1/15/2017
Copyright (c) 2017-2019 BitBank Software, Inc.
Written by Larry Bank
bitbank@pobox.com

ss_oled
The purpose of this code is to easily control SH1106/SSD1306 OLED displays using a minimum of FLASH and RAM. The displays can be connected to the traditional I2C bus or you can use any 2 GPIO pins to define a virtual I2C bus. On AVR microcontrollers, there is an optimized option to speed up access to the GPIO pins to allow speeds which match or exceed normal I2C speeds. The pins are numbered with the Port letter as the first digit followed by the bit number. For example, To use bit 0 of Port B, you would reference pin number 0xb0. Includes the unique feature that the init function automatically detects the display address (0x3C or 0x3D) and the controller type (SSD1306 or SH1106).

Features:
---------

  • Automatically detects the display address and type (I2C only)
  • Supports 72x40, 96x16, 64x32, 128x32, 128x64 and 132x64 (SH1106) display sizes
  • Drive displays from I2C, SPI or any 2 GPIO pins (virtual I2C)
  • 4 sizes of fixed fonts (6x8, 8x8, 16x16, 16x32)
  • Deferred rendering allows preparing a back buffer, then displaying it
  • Text scrolling features (vertical and horizontal)
  • Text cursor position with optional line wrap
  • a function to load a Windows BMP file
  • Pixel drawing on SH1106 without needing backing RAM
  • Optimized Bresenham line drawing
  • Optional backing RAM for drawing pixels for systems with enough RAM
  • 16x16 Tile/Sprite drawing at any angle.
  • Light enough to run on an ATtiny85

This code depends on the BitBang_I2C library. You can download it here:

https://github.com/bitbank2/BitBang_I2C

Instructions for use:
---------------------
Start by initializing the library. Either using hardware I2C, bit-banged I2C or SPI to talk to the display. For I2C, the address of the display will be detected automatically (either 0x3c or 0x3d). The typical MCU only allows setting the I2C speed up to 400Khz, but the SSD1306 displays can handle a much faster signal. With the bit-bang code, you can usually specify a stable 800Khz clock and with Cortex-M0 targets, the hardware I2C can be told to be almost any speed, but the displays I've tested tend to stop working beyond 1.6Mhz. After initializing the display you can begin drawing text or graphics on it. The final parameter of all of the drawing functions is a render flag. When true, the graphics will be sent to the internal backing buffer (when available) and sent to the display. When false, the graphics will only be drawn into the internal buffer (on non-AVR systems). Once you're ready to send the pixels to the display, call oledDumpBuffer(NULL) and it will copy the internal buffer in its entirety to the display. The text drawing function now has a scroll offset parameter. This tells it how many pixels of the text to skip before drawing the text at the given destination coordinates. For example, if you pass a value of 20 for the scroll offset and are using an 8-pixel wide font (FONT_NORMAL), the first two and a half characters will not be drawn; the second half of the third and subsequent characters will be drawn starting at the x/y you specified. This allows you to create a scrolling text effect by repeatedly calling the oledWriteString() function with progressively larger scroll offset values to make the text scroll from right to left.

If you find this code useful, please consider buying me a cup of coffee

paypal

About

Simple and small Arduino library to control SH1106/SSD1306 OLED displays

License:GNU General Public License v3.0


Languages

Language:C++ 91.7%Language:C 7.9%Language:Makefile 0.4%