Skip to content

中文WIKI

zhongdatao edited this page Mar 17, 2020 · 15 revisions

GDL的API函数列表

C++/Aduino示例教程

    #include "DFRobot_GDL.h"

    #define TFT_DC  2
    #define TFT_CS  3
    #define TFT_RST 4

    DFRobot_ST7789_240x240_HW_SPI screen(/*dc=*/TFT_DC,/*cs=*/TFT_CS,/*rst=*/TFT_RST);

    void setup() {
         Serial.begin(115200);
         screen.begin();
    }

    void loop(){
        ///设置字体字号为4 字号范围1-4
        screen.setTextSize(2);
        //设置屏幕颜色
        screen.fillScreen(COLOR_RGB565_BLACK);
        screen.setFont(&FreeMono12pt7b);//设置字体为FreeMono12pt7b
        screen.setCursor(/*x=*/10,/*y=*/120);
        //设置文本颜色
        screen.setTextColor(COLOR_RGB565_LGRAY);
        //设置文本自动换行模式,true=文本自动换行,false=不自动换行
        screen.setTextWrap(true);
        screen.print("HelloWorld!");
        delay(500);
    }
  • 说明:ino文件中,我们针对不同IC和分辨率的屏幕,我们都有不同的构造函数;不同MCU定义了不同的引脚。用户直接调用即可。所有其他参数决定了显示器的接线。

参考

begin

  • C原型:
void DFRobot_GDL::begin()
  • 说明: 初始化屏幕并给指定传输速率。
  • 参数:
  • 返回值:

drawPixel

  • C++/Arduino原型:
void DFRobot_GDL::drawPixel(int16_t x, int16_t y, uint16_t color)
  • 说明: 在位置(x, y)绘制一个像素点。
  • 参数:
    • x:像素点的x坐标位置。
    • y:像素点的y坐标位置。
    • color:像素点的颜色,该颜色为RGB565格式。
  • 返回值:

fillScreen

  • C++/Arduino原型:
void DFRobot_GDL::fillScreen(uint16_t color)
  • 说明: 这是一个刷屏函数;color为RGB565格式的颜色
  • 参数:
    • color:填充屏幕的颜色,该颜色为RGB565格式。
  • 返回值:

drawFastVLine

  • C++/Arduino原型:
void DFRobot_GDL::drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color)
  • 说明: 快速垂直划线函数;在(x, y)为起点,画一个高度为h的直线
  • 参数:
    • x:垂直线的起始点的x坐标位置。
    • y:垂直线的起始点的y坐标位置。
    • h:垂直线的高度。
    • color:垂直线的颜色,该颜色为RGB565格式。
  • 返回值:

drawFastHLine

  • C++/Arduino原型:
void DFRobot_GDL::drawFastHLine(int16_t x, int16_t y, int16_t h, uint16_t color)
  • 说明: 快速垂直划线函数;在(x, y)为起点,画一个长度为h的直线
  • 参数:
    • x:水平线的起始点的x坐标位置。
    • y:水平线的起始点的y坐标位置。
    • h:水平线的高度。
    • color:水平线的颜色,该颜色为RGB565格式。
  • 返回值:

drawRect

  • C++/Arduino原型:
void DFRobot_GDL::drawRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color)
  • 说明:(x, y)位置(左上边缘)绘制一个空心矩形,wh是矩形的长和宽。
  • 参数:
    • x:矩形的起始点的x坐标位置。
    • y:矩形的起始点的y坐标位置。
    • w:矩形的宽度。
    • h:矩形的高度。
    • color:矩形的颜色,该颜色为RGB565格式。
  • 返回值:

fillRect

  • C++/Arduino原型:
void DFRobot_GDL::fillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color)
  • 说明:(x, y)位置(左上边缘)绘制一个实心矩形,wh是矩形的长和宽。
  • 参数:
    • x:矩形的起始点的x坐标位置。
    • y:矩形的起始点的y坐标位置。
    • w:矩形的宽度。
    • h:矩形的高度。
    • color:矩形的颜色,该颜色为RGB565格式。
  • 返回值:

drawCircle

  • C++/Arduino原型:
void DFRobot_GDL::drawCircle(int16_t x0, int16_t y0, int16_t r, uint16_t color)
  • 说明: 在位置(x0, y0)绘制一个半径为r的空心圆。圆的直径为2*r+1color可以使用指定的颜色进行绘制。
  • 参数:
    • x0,y0:圆心的位置。
    • r:定义圆的大小:Radus = r
    • color:定义绘制颜色。
  • 返回值:

drawCircleHelper

  • C++/Arduino原型:
void GDFRobot_GDL::drawCircleHelper(int16_t x0, int16_t y0, int16_t r, uint8_t cornername,uint16_t color)
  • 说明: drawCircleHelper(x0, y0)绘制一个半径为r空心的四分之一圆,用于做圆形和圆角。cornername是屏蔽位来实现圆的四分之一,可以进行多种组合。
  • 参数:
    • x0,y0:圆心的位置。
    • r:定义圆的大小:Radus = r
    • cornername:屏蔽位#1或位#2以指示我们正在执行的圆的四分之一。
    • color:圆的颜色,该颜色为RGB565格式。
  • 返回值:

fillCircle

  • C++/Arduino原型:
void DFRobot_GDL::fillCircle(int16_t x0, int16_t y0, int16_t r, uint16_t color)
  • 说明: 在位置(x0, y0)绘制一个半径为r的实心圆。圆的直径为2*r+1color可以使用指定的颜色进行绘制。
  • 参数:
    • x0,y0:圆心的位置。
    • r:定义圆的大小:Radus = r
    • color:圆的颜色,该颜色为RGB565格式。
  • 返回值:

fillCircleHelper

  • C++/Arduino原型:
void DFRobot_GDL::fillCircleHelper(int16_t x0, int16_t y0, int16_t r, uint8_t cornername,int16_t delta, uint16_t color)
  • 说明: fillCircleHelper(x0, y0)绘制一个半径为r实心的四分之一圆,用于做圆形和圆角。cornername是屏蔽位来实现圆的四分之一,可以进行多种组合。
  • 参数:
    • x0,y0:圆心的位置。
    • r:定义圆的大小:Radus = r
    • cornername:屏蔽位#1或位#2以指示我们正在执行的圆的四分之一。
    • color:圆的颜色,该颜色为RGB565格式。
  • 返回值:

drawTriangle

  • C++/Arduino原型:
void DFRobot_GDL::drawTriangle(int16_t x0, int16_t y0, int16_t x1, int16_t y1,int16_t x2, int16_t y2, uint16_t color)
  • 说明: 绘制一个空心三角形。参数为16位,x0/y0,x1/y1,x2/y2为三角形的3个点。
  • 参数:
    • x0:X0位置点。
    • y0:y0位置点。
    • x1:X1位置点。
    • y1:y1位置点。
    • x2:X2位置点。
    • y2:y2位置点。
    • color:三角形的颜色,该颜色为RGB565格式。
  • 返回值:

fillTriangle

  • C++/Arduino原型:
void DFRobot_GDL::fillTriangle(int16_t x0, int16_t y0, int16_t x1, int16_t y1,int16_t x2, int16_t y2, uint16_t color)
  • 说明: 绘制一个实心三角形。参数为16位,x0/y0,x1/y1,x2/y2为三角形的3个点。
  • 参数:
    • x0:X0位置点。
    • y0:y0位置点。
    • x1:X1位置点。
    • y1:y1位置点。
    • x2:X2位置点。
    • y2:y2位置点。
    • color:角形的颜色,该颜色为RGB565格式。
  • 返回值:

drawRoundRect

  • C++/Arduino原型:
void DFRobot_GDL::drawRoundRect(int16_t x0, int16_t y0, int16_t w, int16_t h,int16_t radius, uint16_t color)
  • 说明:x/y位置(左上边缘)开始绘制一个空心的圆角矩形。盒子/框架有宽w和高h。框的某些部分可以在显示边界之外。边缘具有半径r,要求w>=2*(r+1)h>=2*(r+1)。如果wh小于h>=2*(r+1),则函数自定义r。
  • 参数:
    • x:左上边缘的X位置。
    • y:左上边缘的Y位置。
    • w:矩形的宽度。
    • h:矩形的高度。
    • r:四个边缘的半径。
    • color:圆角矩形的颜色,该颜色为RGB565格式。
  • 返回值:

fillRoundRect

  • C++/Arduino原型:
void DFRobot_GDL::fillRoundRect(int16_t x0, int16_t y0, int16_t w, int16_t h,int16_t radius, uint16_t color)
  • 说明:x/y位置(左上边缘)开始绘制一个实心心的圆角矩形。盒子/框架有宽w和高h。框的某些部分可以在显示边界之外。边缘具有半径r,要求w>=2*(r+1)h>=2*(r+1)。如果wh小于h>=2*(r+1),则函数自定义r。
  • 参数:
    • x:左上边缘的X位置。
    • y:左上边缘的Y位置。
    • w:矩形的宽度。
    • h:矩形的高度。
    • r:四个边缘的半径。
    • color:圆角矩形的颜色,该颜色为RGB565格式。
  • 返回值:

drawBitmap

  • C++/Arduino原型:
void DFRobot_GDL::drawBitmap(int16_t x, int16_t y, const uint8_t bitmap[],int16_t w, int16_t h, uint16_t color)

void DFRobot_GDL::drawBitmap(int16_t x, int16_t y, const uint8_t bitmap[],int16_t w, int16_t h, uint16_t color, uint16_t bg)

void DFRobot_GDL::drawBitmap(int16_t x, int16_t y, uint8_t *bitmap,int16_t w, int16_t h, uint16_t color)

void DFRobot_GDL::drawBitmap(int16_t x, int16_t y, uint8_t *bitmap,int16_t w, int16_t h, uint16_t color, uint16_t bg)
  • 说明: drawBitmap重载了多个函数。在指定的x,y位置(位图的左上角)绘制一个单色位图。位图的某些部分可能不在显示边界之内。位图由数组指定bitmap或者是指向位图开始的指针。w,h为位图的高度和宽度;color画16位5-6-5的单色图片颜色,bg画16位5-6-5的背景颜色。
  • 参数:
    • x:X位置。
    • y:Y位置。
    • bitmap:位图数组或者是指向位图开始的指针。
    • w:位图的宽度。
    • h:位图的高度。
    • color:画16位5-6-5的单色图片颜色。
    • bg:画16位5-6-5的背景颜色。
  • 返回值:

drawXBitmap

  • C++/Arduino原型:
void DFRobot_GDL::drawXBitmap(int16_t x, int16_t y, const uint8_t bitmap[],int16_t w, int16_t h, uint16_t color)
  • 说明: drawXBitmap绘制progmemm驻留的XBitMap文件(*.xbm),从GIMP导出。从GIMP导出到*.xbm、重命名*.xbm到*.c并在编辑器中打开。C数组可以直接与此函数一起使用。该函数没有ram驻留版本;如果生成位图在RAM中,使用drawBitmap()定义的格式并调用它。在指定的x,y位置(位图的左上角)绘制一个单色位图。位图的某些部分可能不在显示边界之内。位图由数组指定bitmap或。w,h为位图的高度和宽度;color画16位5-6-5的单色图片颜色。
  • 参数:
    • x:X位置。
    • y:Y位置。
    • bitmap:位图数组。
    • w:位图的宽度。
    • h:位图的高度。
    • color:绘制16位5-6-5的单色图片颜色。
  • 返回值:

drawGrayscaleBitmap

  • C++/Arduino原型:
void DFRobot_GDL::drawGrayscaleBitmap(int16_t x, int16_t y, const uint8_t bitmap[],int16_t w, int16_t h)

void DFRobot_GDL::drawGrayscaleBitmap(int16_t x, int16_t y, uint8_t *bitmap,int16_t w, int16_t h)

void DFRobot_GDL::drawGrayscaleBitmap(int16_t x, int16_t y,const uint8_t bitmap[], const uint8_t mask[],int16_t w, int16_t h)

void DFRobot_GDL::drawGrayscaleBitmap(int16_t x, int16_t y,uint8_t *bitmap, uint8_t *mask, int16_t w, int16_t h)
  • 说明: drawGrayscaleBitmap重载了多个函数,它旨在指定的位置(x,y)绘制一个progmemeresident 8位图像(灰度)。 特别适用于8位显示设备,如IS31FL3731;不进行减色/展开。在指定的x,y位置(位图的左上角)绘制一个8位位图。位图的某些部分可能不在显示边界之内。位图由数组指定bitmap或者是指向位图开始的指针;mask是带掩码位图的字节数组。w,h为位图的高度和宽度。
  • 参数:
    • x:X位置。
    • y:Y位置。
    • bitmap:灰阶位图数组或者是指向灰阶位图开始的指针。
    • mask:带掩码位图的字节数组。
    • w:位图的宽度。
    • h:位图的高度。
  • 返回值:

drawRGBBitmap

  • C++/Arduino原型:
void DFRobot_GDL::drawRGBBitmap(int16_t x, int16_t y, const uint16_t bitmap[],int16_t w, int16_t h)

void DFRobot_GDL::drawRGBBitmap(int16_t x, int16_t y, uint16_t *bitmap,int16_t w, int16_t h)

void DFRobot_GDL::drawRGBBitmap(int16_t x, int16_t y,const uint16_t bitmap[], const uint8_t mask[],int16_t w, int16_t h)

void DFRobot_GDL::drawRGBBitmap(int16_t x, int16_t y,uint16_t *bitmap, uint8_t *mask, int16_t w, int16_t h)
  • 说明: drawRGBBitmap重载了多个函数。在指定的x,y位置(位图的左上角)绘制ram驻留的16位图像(RGB 5/6/5);用于16位显示设备;未进行颜色还原。位图的某些部分可能不在显示边界之内。位图由数组指定bitmap或者是指向位图开始的指针;mask是带掩码位图的字节数组。w,h为位图的高度和宽度。
  • 参数:
    • x:X位置。
    • y:Y位置。
    • bitmap:位图数组或者是指向位图开始的指针。
    • mask:是带掩码位图的字节数组。
    • w:位图的宽度。
    • h:位图的高度。
  • 返回值:

drawChar

  • C++/Arduino原型:
void DFRobot_GDL::drawChar(int16_t x, int16_t y, unsigned char c, uint16_t color,uint16_t bg, uint8_t size)

void DFRobot_GDL::drawChar(int16_t x, int16_t y, unsigned char c, uint16_t color,uint16_t bg, uint8_t size_x,uint8_t size_y)
  • 说明: drawChar旨在画一个字符,它也进行了重载。在指定的x,y位置(字符的左上角)绘制字符。size为设置字体放大等级。size_zsize_y旨在自定义设置字体的长和宽的放大等级。
  • 参数:
    • x:X位置。
    • y:Y位置。
    • c:8位字符索引字符(类似于ascii)。
    • color:绘制16位5-6-5的字符颜色
    • bg:绘制16位5-6-5的背景颜色。
    • size:字体放大等级(1-6级),1是“原始”大小。
    • size_z:字体放大等级在x轴(1-6级),1是“原始”大小。
    • size_y:字体放大等级在y轴(1-6级),1是“原始”大小。
  • 返回值:

getTextBounds

  • C++/Arduino原型:
void DFRobot_GDL::getTextBounds(const char *string, int16_t x, int16_t y,int16_t *x1, int16_t *y1, uint16_t *w, uint16_t *h)

void DFRobot_GDL::getTextBounds(const __FlashStringHelper *s, int16_t x, int16_t y,int16_t *x1, int16_t *y1, uint16_t *w, uint16_t *h)

void DFRobot_GDL::getTextBounds(const String &str, int16_t x, int16_t y,int16_t *x1, int16_t *y1, uint16_t *w, uint16_t *h)
  • 说明: getTextBounds帮助程序,用于确定具有当前字体/大小的字符串的大小。传递字符串和光标位置,返回UL角和W,H。它也进行了重载。
  • 参数:
    • string:要测量的ascii字符串。
    • s:要测量的闪存ascii字符串。
    • str:测量ascii字符串(作为arduino字符串()类)。
    • x:当前光标X。
    • y:当前光标y。
    • x1:边界X坐标,由函数设置。
    • y1:边界y坐标,由函数设置。
    • w:边界宽度,由函数设置。
    • h:边界高度,由函数设置
  • 返回值:

getRotation

  • C原型:
uint8_t getRotation(void)
  • 说明: getRotation获取显示的旋转设置。用于确定当前的显示方向,0至3对应于4个基本旋转。
  • 参数:
  • 返回值: 0-3;对应于4个基本旋转。
参数 描述
0 不旋转,横向
1 顺时针旋转90度
2 顺时针旋转180度
3 顺时针旋转270度

getCursorX

  • C原型:
int16_t getCursorX(void)
  • 说明: getCursorX获取文本光标X的位置。
  • 参数:
  • 返回值: 文本光标X的位置。

getCursorY

  • C原型:
int16_t getCursorY(void)
  • 说明: getCursorY获取文本光标Y的位置。
  • 参数:
  • 返回值: 文本光标Y的位置。

setTextSize

  • C++/Arduino原型:
void DFRobot_GDL::setTextSize(uint8_t s)

void DFRobot_GDL::setTextSize(uint8_t sx, uint8_t sy)
  • 说明: setTextSize旨设置文本“放大”大小。size为设置字体放大等级;长和宽由函数设置。sxsy旨在自定义设置字体的长和宽的放大等级。
  • 参数:
    • s:想要的文本大小。1是默认的6x8, 2是12x16, 3是18x24,等等。
    • sx:sx所需的文本宽度放大水平在x轴。1是默认的。
    • sy:sx所需的文本宽度放大水平在y轴。1是默认的。。
  • 返回值:

setFont

  • C++/Arduino原型:
void DFRobot_GDL::setFont(const GFXfont *f = NULL)
  • 说明: setFont旨当打印()时设置字体显示时,可以自定义或默认。size为设置字体放大等级;长和宽由函数设置。sxsy旨在自定义设置字体的长和宽的放大等级。

  • 参数:

    • f:字体结构体指针,指向GFXfont或gdl_Font_t。
  • 返回值:

setRotation

  • C++/Arduino原型:
void DFRobot_GDL::setRotation(uint8_t r)
  • 说明: 设置旋转方向,r为0,1,2,3有效。
  • 参数:
    • r:字体的旋转方向。
参数 描述
0 不旋转,横向
1 顺时针旋转90度
2 顺时针旋转180度
3 顺时针旋转270度
  • 返回值:

setCursor

  • C原型:
void setCursor(int16_t x, int16_t y)
  • 说明: setCursor设置光标位置。

  • 参数:

    • x:X坐标(像素)。
    • y:Y坐标(像素)。
  • 返回值:

setTextColor

  • C原型:
void setTextColor(uint16_t c)

void setTextColor(uint16_t c, uint16_t bg)
  • 说明: setTextColor设置文本字体颜色与透明背景或者设置文本字体颜色自定义背景颜色。用于“透明”背景,背景和前景设置为相同的颜色,而不是使用单独的标志。

  • 参数:

    • c:设置16位5-6-5颜色绘制文本。
    • bg:设置16位5-6-5颜色绘制背景/填充。
  • 返回值:

setTextWrap

  • C原型:
void setTextWrap(uint16_t c)
  • 说明: setTextColor设置文本对于屏幕宽度是否太长自动换行(否则剪切)。

  • 参数:

    • c:true用于自动换行,false用于剪裁。
  • 返回值:

width

  • C原型:
int16_t width(void)
  • 说明: width获取显示宽度,要考虑当前旋转。
  • 参数:
  • 返回值: 宽度(以像素为单位)。

hight

  • C原型:
int16_t hight(void)
  • 说明: hight获取显示长度,要考虑当前旋转。
  • 参数:
  • 返回值: 长度(以像素为单位)。

cp437

  • C原型:
void cp437(boolean x=true)
  • 说明: setTextColor启用(或禁用)代码页437兼容的字符集。在glcdfont.c中有一个最长时间的错误—1字符(#176,'light shade'块)丢失——这个去掉它后面每个字符的索引。但是很多代码都是用错误代码编写的字符索引。默认情况下,库使用原始文件“错误的”行为和旧的草图仍然有效。通过'true'来使用正确的CP437字符值在您的代码中。

  • 参数:

    • c:true = 启用(新行为),false = 禁用(旧行为)。
  • 返回值:

UI

C++/Aduino示例教程

#include "DFRobot_UI.h"
#include "Arduino.h"
#include "DFRobot_GDL.h"
#include "DFRobot_Touch.h"

/*M0*/
#if defined ARDUINO_SAM_ZERO
#define TFT_DC  7
#define TFT_CS  5
#define TFT_RST 6
#define TOUCH_CS A3
/*ESP32 and ESP8266*/
#elif defined(ESP32) || defined(ESP8266)
#define TFT_DC  D3
#define TFT_CS  D4
#define TFT_RST D5
#define TOUCH_CS D6
/*AVR系列主板*/
#else
#define TFT_DC  2
#define TFT_CS  3
#define TFT_RST 4
#define TOUCH_CS 5
#endif

//触摸构造函数,构造触摸的对象
DFRobot_Touch_XPT2046 touch(/*cs=*/TOUCH_CS);
//屏幕构造函数,构造屏幕的对象
DFRobot_ILI9341_240x320_HW_SPI screen(/*dc=*/TFT_DC,/*cs=*/TFT_CS,/*rst=*/TFT_RST);

/**
 * @brief UI构造函数
 * @param gdl 屏幕对象
 * @param touch 触摸对象
 */
DFRobot_UI ui(&screen, &touch);

uint8_t value1 = 0;
uint8_t value2 = 0;
uint8_t value3 = 0;
//进度条bar1的回调函数
void barCallback1(DFRobot_UI:: sBar_t &obj){
    //自动让进度条值每次+1;
   delay(50);
    obj.setValue(value1);
	if(value1 < 100) value1++;
}
//进度条bar2的回调函数
void barCallback2(DFRobot_UI:: sBar_t &obj){
    //自动让进度条值每次+1;
    delay(50);
    obj.setValue(value2);
	if(value2 < 100) value2++;
	
}
//进度条bar3的回调函数
void barCallback3(DFRobot_UI:: sBar_t &obj){
    //自动让进度条值每次+1;
    delay(50);
    obj.setValue(value3);
	if(value3 < 100) value3++;
}
void setup()
{
  
  Serial.begin(9600);
  //ui初始化
  ui.begin();
  ui.setTheme(DFRobot_UI::MODERN);

  //在屏幕上显示字符串
  ui.drawString(/*x=*/33,/*y=*/screen.height()/5*4,"Page of loading",COLOR_RGB565_WHITE,ui.bgColor,/*fontsize =*/2,/*Invert=*/0);
  //创建一个进度条控件
  DFRobot_UI::sBar_t &bar1 = ui.creatBar();
  /**用户自定义进度条参数*/
  bar1.setStyle(DFRobot_UI::COLUMN);
  bar1.fgColor = COLOR_RGB565_GREEN;
  bar1.setCallback(barCallback1);
  ui.draw(&bar1,/*x=*/33,/*y=*/screen.height()/5*3);
  
  DFRobot_UI::sBar_t &bar2 = ui.creatBar();
  /**用户自定义进度条参数*/
  bar2.setStyle(DFRobot_UI::CIRCULAR);
  bar2.setCallback(barCallback2);
  ui.draw(&bar2,/*x=*/120,/*y=*/screen.height()/5*2);

  DFRobot_UI::sBar_t &bar3 = ui.creatBar();
  /**用户自定义进度条参数*/
  bar3.fgColor = COLOR_RGB565_BLUE;
  bar3.setStyle(DFRobot_UI::BAR);
  bar3.setCallback(barCallback3);
  ui.draw(&bar3,/*x=*/(screen.width()-bar3.width)/2,/*y=*/screen.height()/5*1);
}


void loop()
{
  //刷新所有控件
  ui.refresh();
}
  • 说明:
    • DFRobot_UI ui(&screen, &touch)UI构造函数可以传入屏幕和触摸的对象。
    • DFRobot_UI ui(&screen, NULL)UI构造函数可以只传入屏幕对象,其他对象为空。

begin

  • C++原形:
void DFRobot_UI::begin()
  • 说明: begin初始化函数,初始化UI使用的参数。
  • 参数: 无。
  • 返回值: 无。

setTheme

  • C++原形:
void DFRobot_UI::setTheme(eTheme_t the)
  • 说明: setTheme设置UI主题函数,初始化UI使用到的参数。the是eTheme_t类型数据,包含了了两种主题。
  • 参数:
    • the:CLASSIC是经典主题,MODERN是流行主题。
  • 返回值:

setGestureArea

  • C++原形:
void DFRobot_UI::setGestureArea(uint16_t x,uint16_t y,uint16_t width,uint16_t height)
  • 说明: setGestureArea设置触摸的手势识别区域。
  • 参数:
    • x:识别区域的开始位置的x坐标。
    • x:识别区域的开始位置的y坐标。
    • width:识别区域的宽度。
    • height:识别区域的高度。
  • 返回值:

draw

  • C++原形:
void DFRobot_UI::draw(sObject_t *obj,uint16_t posx = 0,uint16_t posy = 0,uint16_t width = 0,uint16_t height = 0)
  • 说明: 绘制控件。
  • 参数:
    • obj:控件对象
    • posx: 控件的x坐标
    • posy: 控件的y坐标
    • width: 控件的宽度
    • height: 控件的高度
  • 返回值:

drawString

  • C++原形:
void DFRobot_UI::drawString(int16_t x, int16_t y, char  *c, uint16_t color, uint16_t bg, uint8_t size, boolean mode)
  • 说明: 绘制字符串。在(x,y)的位置开始绘制字符串c
  • 参数:
    • x: 所需绘制字符串在屏幕上的x坐标
    • y: 所需绘制字符串在屏幕上的x坐标
    • c: 字符数组的指针
    • color: 字体的颜色
    • bg: 字体背景的颜色
    • size: 字体的大小
    • mode:字体显示模式。0:正常显示;1:颜色反转
  • 返回值:

refresh

  • C++原形:
void DFRobot_UI::refresh()
  • 说明: refresh刷新屏幕。
  • 参数:
  • 返回值:

endInput

  • C++原形:
void DFRobot_UI::endInput()
  • 说明: endInput使文本框停止输入。
  • 参数:
  • 返回值:

getGestureArea

  • C原形:
eGestures_t getGestures()
  • 说明: getGestureArea获取手势。
  • 参数:
  • 返回值: eGestures_t类型的数据,代表着不同的手势。
返回参数 描述
UPGLIDE 向上滑动
DOWNGLIDE 向下滑动
LEFTGLIDE 向左滑动
RIGHTGLIDE 向右滑动
LONGPRESSDE 长按屏幕
SINGLECLICK 单击屏幕
DOUBLECLICK 双击屏幕
NONE 没有手势

creatKeyPad

  • C原形:
sKeyPad_t &creatKeyPad()
  • 说明: creatKeyPad在屏幕上创建一个数字键盘。
  • 参数:
  • 返回值: 数字键盘对象的地址。

creatButton

  • C原形:
sButton_t &creatButton()
  • 说明: creatButton在屏幕上创建一个按钮控件。
  • 参数:
  • 返回值: 按钮对象的地址。

creatText

  • C原形:
sTextBox_t &creatText()
  • 说明: creatText在屏幕上创建一个文本框控件。
  • 参数:
  • 返回值: 文本框对象的地址。

creatSlider

  • C原形:
sSlider_t &creatSlider()
  • 说明: creatSlider在屏幕上创建一个滑条控件。
  • 参数:
  • 返回值: 滑条对象的地址。

creatSwitch

  • C原形:
sSwitch_t &creatSwitch()
  • 说明: creatSwitch在屏幕上创建一个开关控件。
  • 参数:
  • 返回值: 开关对象的地址。

creatTableview

  • C原形:
sTableview_t &creatTableview()
  • 说明: creatTableview在屏幕上创建一个表单视图控件。
  • 参数:
  • 返回值: 表单视图对象的地址。

creatBar

  • C原形:
sBar_t &creatBar()
  • 说明: creatBar在屏幕上创建一个进度条。
  • 参数:
  • 返回值: 进度条对象的地址。

Touch

Touch构造函数

  • DFRobot_Touch_GT911
    • 说明: 触摸芯片GT911的构造函数
    • 用法:
//触摸构造函数,构造触摸的对象
DFRobot_Touch_GT911 touch(/*cs=*/TOUCH_CS);
  • DFRobot_Touch_XPT20466
    • 说明: 触摸芯片XPT2046的构造函数
    • 用法:
//触摸构造函数,构造触摸的对象
DFRobot_Touch_XPT2046 touch(/*cs=*/TOUCH_CS);
Clone this wiki locally