SSD1306 LCD 96x16 model
Dependents: testSoftware8_alles_display
Fork of ssd1306_library by
ssd1306.h
- Committer:
- rodriguj
- Date:
- 2017-11-01
- Revision:
- 7:b0e7ccc9138b
- Parent:
- 6:cff0e772910f
- Child:
- 8:09b1578f93d9
File content as of revision 7:b0e7ccc9138b:
/* * ssd1306.cpp * * Created on: 20 oct. 2017 * Author: Miguel Angel Rodriguez Jodar * * Based upon Adafruit library. * GPL licensed. * */ #ifndef MBED_SSD1306_LIBRARY #define MBED_SSD1306_LIBRARY #include "mbed.h" #define SSD1306_IS_COMMAND 0x00 #define SSD1306_IS_DATA 0x40 #define SSD1306_IS_NOT_LAST 0x80 #define SSD1306_IS_LAST 0x00 #define SSD1306_SETCONTRAST 0x81 #define SSD1306_DISPLAYALLON_RESUME 0xA4 #define SSD1306_DISPLAYALLON 0xA5 #define SSD1306_NORMALDISPLAY 0xA6 #define SSD1306_INVERTDISPLAY 0xA7 #define SSD1306_DISPLAYOFF 0xAE #define SSD1306_DISPLAYON 0xAF #define SSD1306_SETDISPLAYOFFSET 0xD3 #define SSD1306_SETCOMPINS 0xDA #define SSD1306_SETVCOMDETECT 0xDB #define SSD1306_SETDISPLAYCLOCKDIV 0xD5 #define SSD1306_SETPRECHARGE 0xD9 #define SSD1306_SETMULTIPLEX 0xA8 #define SSD1306_SETLOWCOLUMN 0x00 #define SSD1306_SETHIGHCOLUMN 0x10 #define SSD1306_SETSTARTLINE 0x40 #define SSD1306_MEMORYMODE 0x20 #define SSD1306_COMSCANINC 0xC0 #define SSD1306_COMSCANDEC 0xC8 #define SSD1306_SEGREMAP 0xA0 #define SSD1306_CHARGEPUMP 0x8D #define SSD1306_EXTERNALVCC 0x1 #define SSD1306_SWITCHCAPVCC 0x2 // Scrolling #defines #define SSD1306_ACTIVATE_SCROLL 0x2F #define SSD1306_DEACTIVATE_SCROLL 0x2E #define SSD1306_SET_VERTICAL_SCROLL_AREA 0xA3 #define SSD1306_RIGHT_HORIZONTAL_SCROLL 0x26 #define SSD1306_LEFT_HORIZONTAL_SCROLL 0x27 #define SSD1306_VERTICAL_AND_RIGHT_HORIZONTAL_SCROLL 0x29 #define SSD1306_VERTICAL_AND_LEFT_HORIZONTAL_SCROLL 0x2A /** * SSD1306. A class for interacting with SSD1306 controlled 128x64 cheap OLED displays */ class SSD1306 { public: /** * PlotStyle. Defines how pixels being plotted interact with existing pixels on the screen */ enum PlotStyle { Normal, Inverse, Xor }; /** * I2CSpeed. Defines the speed of the I2C bus */ enum I2CSpeed { Slow, Medium, Fast }; /** * Creates an instance of a SSD1306 driver, specifying I2C pins to use * * @param sda I2C data line pin * @param scl I2C clock line pin */ SSD1306 (PinName sda, PinName scl, char ssd1306_addr = 0x78); /** * Creates an instance of a SSD1306 driver using an existing I2C object * * @param busi2c I2C object * @param ssd1306_addr I2C addr of SSD1306 controller */ SSD1306 (I2C &busi2c, char ssd1306_addr = 0x78); /** * Set the frequency of the I2C interface * * @param hz The bus frequency in hertz */ void speed (I2CSpeed spd); /** * Initialize the SSD1306 controller */ int init (void); /** * Scrolls up one text line * * @param refresh (optional) Force an actual screen redraw after scrolling */ void scroll (bool refresh=false); /** * Print a character at the current text position. Updates the text position and forces a scroll if at the end of the screen * * @param c ASCII code of the character to print (8-bit ASCII code, use original IBM code page 437. No control codes. * @param refresh (optional) Force an actual screen redraw after scrolling */ void putchar (char c, bool refresh=false); /** * Prints a NUL terminated string * * @param s C-style string (NUL terminated) to print. * @param refresh (optional) Force an actual screen redraw after scrolling */ void puts (char *s, bool refresh=false); /** * printf interface to SSD1306 controller * * @param fmt Format string. */ void printf (const char *fmt,...); /** * Change the text position * * @param row Text row (0-7) to print the next character * @param column Text column (0-15) to print the next character */ void locate (char row, char column); /** * Redraw the physical display, sending the content of the display memory to the SSD1306 controller using the I2C bus */ void display (void); /** * Changes the contrast (actually, pixel brightness) of the screen * * @param v Contrast level (0-255) */ void set_contrast (char v); /** * Clear screen and optionally, fills it with a predefined picture (in 128x64 OLED format, see display datasheet). Also resets the text position. * * @param bkground If not NULL, should point to a 1024 byte buffer with the image to load to the display * @param refresh (optional) Force an actual screen redraw after scrolling */ void cls (char *bkground=NULL, bool refresh=false); /** * Plots a pixel. * * @param x x-coordinate (0-127) of the pixel. X coordinates go left to right. * @param y y-coordinate (0-63) of the pixel. Y coordinates go up to down. * @param mode. Plot style mode: Normal (pixel is drawn), Inverse (pixel is erased), or Xor (pixel is erased if background position is already set, otherwise is drawn) * @param refresh (optional) Force an actual screen redraw after scrolling */ void plot (char x, char y, PlotStyle mode, bool refresh=false); /** * Returns the state of a pixel coordinate from screen * * @param x x-coordinate (0-127) of the pixel. X coordinates go left to right. * @param y y-coordinate (0-63) of the pixel. Y coordinates go up to down. * @return true if the pixel was set, or false otherwise */ bool point (char x, char y); /** * Draws a line using the Bresenham algorithm * * @param x0 x-coordinate (0-127) of the starting point * @param y0 y-coordinate (0-63) of the starting point * @param x1 x-coordinate (0-127) of the ending point * @param y1 y-coordinate (0-63) of the ending point * @param mode. Plot style mode: Normal (pixel is drawn), Inverse (pixel is erased), or Xor (pixel is erased if background position is already set, otherwise is drawn) * @param refresh (optional) Force an actual screen redraw after scrolling */ void line (char x0, char y0, char x1, char y1, PlotStyle mode, bool refresh=false); /** * Draws a circle * * @param x0 x-coordinate (0-127) of the center point * @param y0 y-coordinate (0-63) of the center point * @param r radius of the circle * @param mode. Plot style mode: Normal (pixel is drawn), Inverse (pixel is erased), or Xor (pixel is erased if background position is already set, otherwise is drawn) * @param refresh (optional) Force an actual screen redraw after scrolling */ void circle (char x0, char y0, char r, PlotStyle mode, bool refresh=false); virtual ~SSD1306 () { if (!do_not_delete_bus) delete bus; delete fb; } protected: I2C *bus; // I2C object char ssd1306_i2c_addr; // I2C address of SSD1306 controller char *fb; // pointer to display buffer (1024 bytes) char do_not_delete_bus; // flag to prevent deletion of bus when destroying SSD1306 object int idxfb; // Current text position (referred to screen address memory) int command (char c); // Sends a I2C command to SSD1306 int data (char d); // Sends I2C data to SSD1306 int command_data (char c, char c_or_d, char lastitem); // Sends a command or data and signal if it is not the last command/data in a list char scan (); // Scans the I2C bus searcing for I2C id's 0x78 or 0x7A. Currently not used }; #endif