Basically i glued Peter Drescher and Simon Ford libs in a GraphicsDisplay class, then derived TFT or LCD class (which inherits Protocols class), then the most derived ones (Inits), which are per-display and are the only part needed to be adapted to diff hw.
Dependents: afero_poc15_180216 afero_poc15_180223 afero_poc15_180302 afero_poc15_180403R ... more
Fork of UniGraphic by
UniGraphic for La Suno Version.
To go with La Suno, WatchDog Reset functions were added in ILI9341.
Diff: Inits/SSD1306.h
- Revision:
- 33:f87f06292637
- Parent:
- 19:1bdfb971b2c1
--- a/Inits/SSD1306.h Mon May 02 22:44:05 2016 +0000 +++ b/Inits/SSD1306.h Mon Feb 06 12:29:33 2017 +0000 @@ -41,6 +41,20 @@ */ SSD1306(proto_t displayproto, int Hz, PinName mosi, PinName miso, PinName sclk, PinName CS, PinName reset, PinName DC, const char* name , unsigned int LCDSIZE_X = 128, unsigned int LCDSIZE_Y = 64); + /** Create an I2C display interface + * @param displayproto I2C_ + * @param Hz I2C speed in Hz + * @param address I2C address + * @param sda I2C pin + * @param scl I2C pin + * @param name The name used by the parent class to access the interface + * @param LCDSIZE_X x size in pixel - optional + * @param LCDSIZE_Y y size in pixel - optional + */ + SSD1306(proto_t displayproto, int Hz, int address, PinName sda, PinName scl, const char* name , unsigned int LCDSIZE_X = 128, unsigned int LCDSIZE_Y = 64); + + + /** set the contrast of the screen * @note here overrided because of not standard value range * @param o contrast 0-255