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 UniGraphic by
Inits/ILI9486.h@9:1749ae993cfe, 2015-02-17 (annotated)
- Committer:
- dreschpe
- Date:
- Tue Feb 17 22:35:07 2015 +0000
- Revision:
- 9:1749ae993cfe
- Parent:
- 4:12ba0ecc2c1f
- Child:
- 18:ffa58f1a680a
Add param LCDSIZE_x, LCDSIZE_Y to constructor. They are optional.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Geremia | 4:12ba0ecc2c1f | 1 | #ifndef MBED_ILI9486_H |
Geremia | 4:12ba0ecc2c1f | 2 | #define MBED_ILI9486_H |
Geremia | 4:12ba0ecc2c1f | 3 | |
Geremia | 4:12ba0ecc2c1f | 4 | |
Geremia | 4:12ba0ecc2c1f | 5 | |
Geremia | 4:12ba0ecc2c1f | 6 | #include "mbed.h" |
Geremia | 4:12ba0ecc2c1f | 7 | #include "TFT.h" |
Geremia | 4:12ba0ecc2c1f | 8 | |
Geremia | 4:12ba0ecc2c1f | 9 | /** Class for ILI9486 tft display controller |
Geremia | 4:12ba0ecc2c1f | 10 | * to be copypasted and adapted for other controllers |
Geremia | 4:12ba0ecc2c1f | 11 | */ |
Geremia | 4:12ba0ecc2c1f | 12 | class ILI9486 : public TFT |
Geremia | 4:12ba0ecc2c1f | 13 | { |
Geremia | 4:12ba0ecc2c1f | 14 | |
Geremia | 4:12ba0ecc2c1f | 15 | public: |
Geremia | 4:12ba0ecc2c1f | 16 | |
Geremia | 4:12ba0ecc2c1f | 17 | /** Create a PAR display interface |
Geremia | 4:12ba0ecc2c1f | 18 | * @param displayproto only supports PAR_8 |
Geremia | 4:12ba0ecc2c1f | 19 | * @param port GPIO port name to use |
Geremia | 4:12ba0ecc2c1f | 20 | * @param CS pin connected to CS of display |
Geremia | 4:12ba0ecc2c1f | 21 | * @param reset pin connected to RESET of display |
Geremia | 4:12ba0ecc2c1f | 22 | * @param DC pin connected to data/command of display |
Geremia | 4:12ba0ecc2c1f | 23 | * @param WR pin connected to SDI of display |
Geremia | 4:12ba0ecc2c1f | 24 | * @param RD pin connected to RS of display |
Geremia | 4:12ba0ecc2c1f | 25 | * @param name The name used by the parent class to access the interface |
dreschpe | 9:1749ae993cfe | 26 | * @param LCDSIZE_X x size in pixel - optional |
dreschpe | 9:1749ae993cfe | 27 | * @param LCDSIZE_Y y size in pixel - optional |
Geremia | 4:12ba0ecc2c1f | 28 | */ |
dreschpe | 9:1749ae993cfe | 29 | ILI9486(proto_t displayproto, PortName port, PinName CS, PinName reset, PinName DC, PinName WR, PinName RD, const char* name, unsigned int LCDSIZE_X = 320, unsigned int LCDSIZE_Y = 480); |
Geremia | 4:12ba0ecc2c1f | 30 | |
Geremia | 4:12ba0ecc2c1f | 31 | /** Create an SPI display interface |
Geremia | 4:12ba0ecc2c1f | 32 | * @param displayproto only supports SPI_8 |
Geremia | 4:12ba0ecc2c1f | 33 | * @param Hz SPI speed in Hz |
Geremia | 4:12ba0ecc2c1f | 34 | * @param mosi SPI pin |
Geremia | 4:12ba0ecc2c1f | 35 | * @param miso SPI pin |
Geremia | 4:12ba0ecc2c1f | 36 | * @param sclk SPI pin |
Geremia | 4:12ba0ecc2c1f | 37 | * @param CS pin connected to CS of display |
Geremia | 4:12ba0ecc2c1f | 38 | * @param reset pin connected to RESET of display |
Geremia | 4:12ba0ecc2c1f | 39 | * @param DC pin connected to data/command of display |
Geremia | 4:12ba0ecc2c1f | 40 | * @param name The name used by the parent class to access the interface |
dreschpe | 9:1749ae993cfe | 41 | * @param LCDSIZE_X x size in pixel - optional |
dreschpe | 9:1749ae993cfe | 42 | * @param LCDSIZE_Y y size in pixel - optional |
Geremia | 4:12ba0ecc2c1f | 43 | */ |
dreschpe | 9:1749ae993cfe | 44 | ILI9486(proto_t displayproto, int Hz, PinName mosi, PinName miso, PinName sclk, PinName CS, PinName reset, PinName DC, const char* name, unsigned int LCDSIZE_X = 320, unsigned int LCDSIZE_Y= 480); |
Geremia | 4:12ba0ecc2c1f | 45 | |
Geremia | 4:12ba0ecc2c1f | 46 | |
Geremia | 4:12ba0ecc2c1f | 47 | |
Geremia | 4:12ba0ecc2c1f | 48 | protected: |
Geremia | 4:12ba0ecc2c1f | 49 | |
Geremia | 4:12ba0ecc2c1f | 50 | |
Geremia | 4:12ba0ecc2c1f | 51 | /** Init command sequence |
Geremia | 4:12ba0ecc2c1f | 52 | */ |
Geremia | 4:12ba0ecc2c1f | 53 | void init(); |
Geremia | 4:12ba0ecc2c1f | 54 | |
Geremia | 4:12ba0ecc2c1f | 55 | |
Geremia | 4:12ba0ecc2c1f | 56 | |
Geremia | 4:12ba0ecc2c1f | 57 | }; |
Geremia | 4:12ba0ecc2c1f | 58 | #endif |