|
template<typename... Args> |
| Ili9341 (Args &&...args) |
|
void | initialize () |
|
void | reset (bool hardReset=false) |
|
uint16_t | getIcModel () |
|
void | turnOn () |
|
void | turnOff () |
|
void | enableBacklight (bool enable) |
|
void | setBrightness (uint8_t level) |
|
void | setInvert (bool invert) |
|
void | setIdle (bool enable) |
|
void | enableSleep (bool enable) |
|
uint16_t | getWidth () const final |
|
uint16_t | getHeight () const final |
|
std::size_t | getBufferWidth () const final |
|
std::size_t | getBufferHeight () const final |
|
void | setPixel (int16_t x, int16_t y) final |
|
void | clearPixel (int16_t x, int16_t y) final |
|
color::Rgb565 | getPixel (int16_t x, int16_t y) const final |
|
void | clear () final |
|
void | update () final |
|
void | setOrientation (glcd::Orientation orientation) |
|
void | fillRectangle (glcd::Point upperLeft, uint16_t width, uint16_t height) |
|
void | fillRectangle (int16_t x, int16_t y, uint16_t width, uint16_t height) |
|
void | fillCircle (glcd::Point center, uint16_t radius) |
|
void | drawImageRaw (glcd::Point upperLeft, uint16_t width, uint16_t height, modm::accessor::Flash< uint8_t > data) final |
|
void | drawRaw (glcd::Point upperLeft, uint16_t width, uint16_t height, color::Rgb565 *data) |
|
void | setScrollArea (uint16_t topFixedRows, uint16_t bottomFixedRows, uint16_t firstRow) |
|
void | scrollTo (uint16_t row) |
|
void | drawBitmap (glcd::Point upperLeft, uint16_t width, uint16_t height, modm::accessor::Flash< uint8_t > data) |
|
IOStream & | ascii () |
| set the output mode to ASCII style for integer types
|
|
IOStream & | bin () |
| set the output mode to binary style for integer types
|
|
void | clearPixel (glcd::Point p) |
|
void | drawCircle (glcd::Point center, uint16_t radius) |
|
void | drawEllipse (glcd::Point center, int16_t rx, int16_t ry) |
|
void | drawImage (glcd::Point start, modm::accessor::Flash< uint8_t > image) |
|
void | drawLine (glcd::Point start, glcd::Point end) |
|
void | drawLine (int16_t x1, int16_t y1, int16_t x2, int16_t y2) |
|
void | drawRectangle (glcd::Point start, uint16_t width, uint16_t height) |
|
void | drawRectangle (int16_t x, int16_t y, uint16_t width, uint16_t height) |
|
void | drawRoundedRectangle (glcd::Point start, uint16_t width, uint16_t height, uint16_t radius) |
|
IOStream & | endl () |
|
IOStream & | flush () |
|
IOStream & | get (char &c) |
| Reads one character and returns it if available. Otherwise, returns IOStream::eof.
|
|
IOStream & | get (char *s, size_t n) |
|
template<size_t N> |
IOStream & | get (char (&s)[N]) |
|
color::Rgb565 | getBackgroundColor () const |
|
color::Rgb565 | getColor () const |
|
glcd::Point | getCursor () const |
|
uint8_t | getFontHeight () const |
|
uint16_t | getStringWidth (const char *s) const |
|
IOStream & | hex () |
| set the output mode to hexadecimal style for integer types
|
|
IOStream & | operator<< (const bool &v) |
|
IOStream & | operator<< (const char &v) |
|
IOStream & | operator<< (const uint8_t &v) |
|
IOStream & | operator<< (const int16_t &v) |
|
IOStream & | operator<< (const uint16_t &v) |
|
IOStream & | operator<< (const int32_t &v) |
|
IOStream & | operator<< (const uint32_t &v) |
|
IOStream & | operator<< (const int64_t &v) |
|
IOStream & | operator<< (const uint64_t &v) |
|
IOStream & | operator<< (const int &v) |
|
IOStream & | operator<< (const unsigned int &v) |
|
IOStream & | operator<< (const float &v) |
|
IOStream & | operator<< (const double &v) |
|
IOStream & | operator<< (const char *s) |
|
IOStream & | operator<< (const void *p) |
| write the hex value of a pointer
|
|
template<class Ret , class... Args> |
IOStream & | operator<< (Ret (*pointer)(Args...)) |
| Write the hex value of any function pointer.
|
|
IOStream & | operator<< (IOStream &(*format)(IOStream &)) |
|
IOStream & | printf (const char *fmt,...))) |
|
void | setBackgroundColor (const color::Rgb565 color) |
|
void | setColor (const color::Rgb565 color) |
|
void | setCursor (glcd::Point position) |
|
void | setCursor (int16_t x, int16_t y) |
|
void | setCursorX (int16_t x) |
|
void | setCursorY (int16_t y) |
|
void | setFont (const uint8_t *newFont) |
|
void | setFont (const modm::accessor::Flash< uint8_t > *font) |
|
void | setPixel (glcd::Point p) |
|
IOStream & | vprintf (const char *fmt, va_list vlist))) |
|
void | write (char c) |
|
|
void | drawHorizontalLine (glcd::Point start, uint16_t length) final |
|
void | drawVerticalLine (glcd::Point start, uint16_t length) final |
|
void | drawCircle4 (glcd::Point center, int16_t x, int16_t y) |
| helper method for drawCircle() and drawEllipse()
|
|
void | writeBin (uint8_t value) |
|
void | writeDouble (const double &value) |
|
void | writeFloat (float value) |
|
void | writeHex (uint8_t value) |
|
void | writeInteger (int16_t value) |
|
void | writeInteger (uint16_t value) |
|
void | writeInteger (int32_t value) |
|
void | writeInteger (uint32_t value) |
|
void | writeInteger (int64_t value) |
|
void | writeInteger (uint64_t value) |
|
template<typename T > |
void | writeIntegerMode (const T v) |
|
void | writePointer (const void *value) |
|