本文整理汇总了C++中Adafruit_ILI9341::setTextSize方法的典型用法代码示例。如果您正苦于以下问题:C++ Adafruit_ILI9341::setTextSize方法的具体用法?C++ Adafruit_ILI9341::setTextSize怎么用?C++ Adafruit_ILI9341::setTextSize使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Adafruit_ILI9341
的用法示例。
在下文中一共展示了Adafruit_ILI9341::setTextSize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: testText
unsigned long testText() {
tft.fillScreen(ILI9341_BLACK);
unsigned long start = micros();
tft.setCursor(0, 0);
tft.setTextColor(ILI9341_WHITE);
tft.setTextSize(1);
tft.println("Hello World!");
tft.setTextColor(ILI9341_YELLOW);
tft.setTextSize(2);
tft.println(1234.56);
tft.setTextColor(ILI9341_RED);
tft.setTextSize(3);
tft.println(0xDEADBEEF, HEX);
tft.println();
tft.setTextColor(ILI9341_GREEN);
tft.setTextSize(5);
tft.println("Groop");
tft.setTextSize(2);
tft.println("I implore thee,");
tft.setTextSize(1);
tft.println("my foonting turlingdromes.");
tft.println("And hooptiously drangle me");
tft.println("with crinkly bindlewurdles,");
tft.println("Or I will rend thee");
tft.println("in the gobberwarts");
tft.println("with my blurglecruncheon,");
tft.println("see if I don't!");
return micros() - start;
}
示例2: print_item
/************************************
* Name : print_item
* Purpuse :
* Inputs : None
* Outputs : None
* Returns : None
************************************/
int print_item(int line, char *iname, float value, char *unit)
{
int stPos;
if (line <= 0) return -1;
stPos = (line-1)*PERIOD;
tft.fillRect(0, stPos, 240, TEXTSIZE, ILI9341_BLACK);
tft.setCursor(2, stPos);
tft.setTextColor(ILI9341_WHITE);
tft.setTextSize(FONTSIZE);
tft.print(iname);
tft.print(value, 2);
tft.print(" ");
tft.print(unit);
}