“Tft.fillScreen()”的版本间的差异
第13行: | 第13行: | ||
<p style="color: #E87E05;font-size:135%">'''示例'''</p> | <p style="color: #E87E05;font-size:135%">'''示例'''</p> | ||
<source lang="cpp"> | <source lang="cpp"> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
#include <Adafruit_GFX.h> // Core graphics library | #include <Adafruit_GFX.h> // Core graphics library | ||
#include <Adafruit_ST7735.h> // Hardware-specific library | #include <Adafruit_ST7735.h> // Hardware-specific library | ||
#include <SPI.h> | #include <SPI.h> | ||
− | # | + | #define TFT_CS D5 |
− | + | #define TFT_RST -1 // you can also connect this to the Arduino reset | |
− | + | #define TFT_DC D4 | |
− | # | ||
− | Adafruit_ST7735 tft = Adafruit_ST7735( | + | Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_RST); |
void setup(void) { | void setup(void) { | ||
第35行: | 第28行: | ||
} | } | ||
− | void loop() { | + | void loop(){ |
+ | } | ||
</source> | </source> | ||
2018年5月16日 (三) 08:23的最新版本
tft.fillScreen(uint16_t color)
作用
用颜色填充整个屏幕
参数
color:填充的颜色
示例
#include <Adafruit_GFX.h> // Core graphics library
#include <Adafruit_ST7735.h> // Hardware-specific library
#include <SPI.h>
#define TFT_CS D5
#define TFT_RST -1 // you can also connect this to the Arduino reset
#define TFT_DC D4
Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_RST);
void setup(void) {
tft.initR(INITR_BLACKTAB); // initialize a ST7735S chip, black tab
tft.fillScreen(ST7735_YELLOW);
}
void loop(){
}