Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Adafruit_GFX by
Revision 20:5fa5c734e5f2, committed 2015-03-08
- Comitter:
- jimconner
- Date:
- Sun Mar 08 22:31:46 2015 +0000
- Parent:
- 19:f393e67ed0b5
- Commit message:
- Added support for CD4067 multiplexer on I2C bus
Changed in this revision
Adafruit_SSD1306.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/Adafruit_SSD1306.h Thu Feb 05 22:07:19 2015 +0000 +++ b/Adafruit_SSD1306.h Sun Mar 08 22:31:46 2015 +0000 @@ -238,7 +238,7 @@ * @param rawHeight - The vertical number of pixels for the display, defaults to 32 * @param rawWidth - The horizonal number of pixels for the display, defaults to 128 */ - mux_SSD1306_I2c(I2C &i2c, PinName RST, PortOut &mux, uint8_t MUXval = 1, uint8_t i2cAddress = SSD_I2C_ADDRESS, uint8_t rawHeight = 32, uint8_t rawWidth = 128) + mux_SSD1306_I2c(I2C &i2c, PinName RST, BusOut &mux, uint8_t MUXval = 1, uint8_t i2cAddress = SSD_I2C_ADDRESS, uint8_t rawHeight = 32, uint8_t rawWidth = 128) : Adafruit_SSD1306(RST, rawHeight, rawWidth) , mi2c(i2c) , mi2cAddress(i2cAddress) @@ -288,7 +288,7 @@ I2C &mi2c; uint8_t mi2cAddress; - PortOut &mmux; + BusOut &mmux; uint8_t muxval; };