Pervasive Displays Library Suite - Reference Manual 9.0.3
Library for Pervasive Displays e-paper screens, extension boards and development kits
|
Screen saved as image header file on SD-card. More...
#include <hV_File_Image.h>
Public Member Functions | |
File_Image (Screen_EPD *screen) | |
Constructor object. | |
uint8_t | saveScreen (STRING_CONST_TYPE name) |
Screen saved as image header file to SD-card. | |
uint8_t | saveWindow (STRING_CONST_TYPE name, uint16_t x0, uint16_t y0, uint16_t dx, uint16_t dy) |
Save partial screen as header file to SD-card. | |
uint8_t | readScreen (image_s image) |
Read an image from a header file. | |
Public Member Functions inherited from File_System | |
File_System () | |
Constructor. | |
uint8_t | beginFileSystem (uint8_t pinCS=NOT_CONNECTED, uint8_t port=0, int8_t pinDetect=-1, int level=LOW) |
File system initialisation. | |
uint8_t | endFileSystem () |
Close file system. | |
uint8_t | setFolder (STRING_CONST_TYPE name) |
Set the folder for files. | |
uint8_t | suspendFileSystem () |
Suspend file system. | |
uint8_t | resumeFileSystem () |
Resume file system after suspend. | |
uint8_t | saveScreen (STRING_CONST_TYPE name, uint8_t multiplier=1) |
Screen saved as file to SD-card. | |
uint8_t | saveWindow (STRING_CONST_TYPE name, uint16_t x0, uint16_t y0, uint16_t dx, uint16_t dy, uint8_t multiplier=1) |
Save partial window as file to SD-card. | |
uint8_t | readScreen (STRING_CONST_TYPE name, uint8_t multiplier=1) |
Load and display BMP file. | |
void | printFileSystemError () |
Print the file system error. | |
Screen saved as image header file on SD-card.
Shared header for Linux and MCU
File_Image::File_Image | ( | Screen_EPD * | screen | ) |
Constructor object.
screen | &screen to link File_Image to |
uint8_t File_Image::readScreen | ( | image_s | image | ) |
Read an image from a header file.
Frame-buffer updated, flush required
image | image_s image |
uint8_t File_Image::saveScreen | ( | STRING_CONST_TYPE | name | ) |
Screen saved as image header file to SD-card.
name | file name, only letters and numbers |
uint8_t File_Image::saveWindow | ( | STRING_CONST_TYPE | name, |
uint16_t | x0, | ||
uint16_t | y0, | ||
uint16_t | dx, | ||
uint16_t | dy ) |
Save partial screen as header file to SD-card.
name | file name, only letters and numbers |
x0 | top left coordinate, x-axis |
y0 | top left coordinate, y-axis |
dx | width to be copied, x-axis |
dy | height to be copied, y-axis |