|
| | Screen_EPD (Driver_EPD_Virtual *driver) |
| | Constructor with default pins. More...
|
| |
| void | begin () |
| | Initialisation. More...
|
| |
| void | clear (uint16_t colour=myColours.white) |
| | Clear the screen. More...
|
| |
| void | flush () |
| | Update the display, normal update. More...
|
| |
| void | flushFast () |
| | Update the display, fast update. More...
|
| |
| void | regenerate (uint8_t mode=UPDATE_NORMAL) |
| | Regenerate the panel. More...
|
| |
| void | setPowerProfile (uint8_t mode=POWER_MODE_AUTO, uint8_t scope=POWER_SCOPE_GPIO_ONLY) |
| | Set the power profile. More...
|
| |
| void | suspend (uint8_t suspendScope=POWER_SCOPE_GPIO_ONLY) |
| | Suspend. More...
|
| |
| void | resume () |
| | Resume after suspend() More...
|
| |
| void | setPanelPowerPin (uint8_t panelPowerPin=NOT_CONNECTED) |
| | Set panelPower pin. More...
|
| |
| void | setTemperatureC (int8_t temperatureC=25) |
| | Set temperature in Celsius. More...
|
| |
| void | setTemperatureF (int16_t temperatureF=77) |
| | Set temperature in Fahrenheit. More...
|
| |
| uint8_t | checkTemperatureMode (uint8_t updateMode) |
| | Check the mode against the temperature. More...
|
| |
| virtual STRING_TYPE | WhoAmI () |
| | Who Am I. More...
|
| |
| virtual STRING_CONST_TYPE | reference () |
| | Library reference. More...
|
| |
| uint8_t | screenColours () |
| | Get number of colours. More...
|
| |
| virtual STRING_TYPE | screenNumber () |
| | Screen number. More...
|
| |
| void | debugVariant (uint8_t contextFilm) |
| | Recommend variant for film. More...
|
| |
|
| hV_Screen_Buffer () |
| | Constructor.
|
| |
| virtual void | setOrientation (uint8_t orientation) |
| | Set orientation. More...
|
| |
| uint8_t | getOrientation () |
| | Get orientation. More...
|
| |
| virtual uint16_t | screenSizeX () |
| | Screen size, x-axis of logical screen. More...
|
| |
| virtual uint16_t | screenSizeY () |
| | Screen size, y-axis of logical screen. More...
|
| |
| virtual uint16_t | screenDiagonal () |
| | Screen size, diagonal. More...
|
| |
| virtual uint8_t | screenColourBits () |
| | Screen colour depth. More...
|
| |
| virtual void | circle (uint16_t x0, uint16_t y0, uint16_t radius, uint16_t colour) |
| | Draw circle. More...
|
| |
| virtual void | line (uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t colour) |
| | Draw line, rectangle coordinates. More...
|
| |
| virtual void | dLine (uint16_t x0, uint16_t y0, uint16_t dx, uint16_t dy, uint16_t colour) |
| | Draw line, vector coordinates. More...
|
| |
| virtual void | setPenSolid (bool flag=true) |
| | Set pen opaque. More...
|
| |
| virtual void | triangle (uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t x3, uint16_t y3, uint16_t colour) |
| | Draw triangle, rectangle coordinates. More...
|
| |
| virtual void | rectangle (uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2, uint16_t colour) |
| | Draw rectangle, rectangle coordinates. More...
|
| |
| virtual void | dRectangle (uint16_t x0, uint16_t y0, uint16_t dx, uint16_t dy, uint16_t colour) |
| | Draw rectangle, vector coordinates. More...
|
| |
| virtual void | point (uint16_t x1, uint16_t y1, uint16_t colour) |
| | Draw pixel. More...
|
| |
| virtual void | selectFont (uint8_t font) |
| | Select font number. More...
|
| |
| virtual uint8_t | getFont () |
| | Get font number. More...
|
| |
| virtual uint8_t | addFont (font_s fontName) |
| | Add a font. More...
|
| |
| virtual void | setFontSolid (bool flag=true) |
| | Set transparent or opaque text. More...
|
| |
| virtual void | setFontSpaceX (uint8_t number=1) |
| | Set additional spaces between two characters, horizontal axis. More...
|
| |
| virtual void | setFontSpaceY (uint8_t number=1) |
| | Set additional spaces between two characters, vertical axis. More...
|
| |
| virtual uint16_t | characterSizeX (uint8_t character=0x00) |
| | Character size, x-axis. More...
|
| |
| virtual uint16_t | characterSizeY () |
| | Character size, y-axis. More...
|
| |
| virtual uint16_t | stringSizeX (STRING_CONST_TYPE text) |
| | String size, x-axis. More...
|
| |
| virtual uint8_t | stringLengthToFitX (STRING_CONST_TYPE text, uint16_t pixels) |
| | Number of characters to fit a size, x-axis. More...
|
| |
| virtual uint8_t | fontMax () |
| | Number of fonts. More...
|
| |
| virtual void | gText (uint16_t x0, uint16_t y0, STRING_CONST_TYPE text, uint16_t textColour=myColours.black, uint16_t backColour=myColours.white) |
| | Draw ASCII Text (pixel coordinates) More...
|
| |
| virtual void | gTextLarge (uint16_t x0, uint16_t y0, STRING_CONST_TYPE text, uint16_t textColour=myColours.black, uint16_t backColour=myColours.white) |
| | Draw ASCII Text (pixel coordinates) More...
|
| |
| bool | isTouch () |
| | Is touch available? More...
|
| |
| bool | isTouchEvent () |
| | Are touch events available? More...
|
| |
| bool | getTouch (touch_t &touch) |
| | Poll touch. More...
|
| |
|
void | clearTouch () |
| | Clear touch.
|
| |
| bool | getTouchInterrupt () |
| | Check touch interrupt. More...
|
| |
|
void | calibrateTouch () |
| | Calibrate the touch.
|
| |
Class for Pervasive Displays iTC screens.
Screen controllers
- LCD: Proprietary, SPI
- Touch: Proprietary, I2C
- Fonts: No external Flash
- Note
- All commands work on the frame-buffer, to be displayed on screen with flush()