0
  • 聊天消息
  • 系统消息
  • 评论与回复
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
会员中心
创作中心

完善资料让更多小伙伴认识你,还能领取20积分哦,立即完善>

3天内不再提示

在Arduino上使用1.8英寸TFT显示屏的入门指南

454398 来源:网络整理 作者:网络整理 2019-12-12 11:09 次阅读
加入交流群
微信小助手二维码

扫码添加小助手

加入工程师交流群

步骤1:引脚布局

在Arduino上使用1.8英寸TFT显示屏的入门指南

此处的第一张照片显示了显示板的背面。引脚有两个侧面-红色圆圈表示我们将要使用的侧面。它有8个引脚,您可以在第二张照片中看到每个引脚对应的含义。带有16针的另一侧用于SD卡,将在以后的Instructable中进行介绍。

引脚的简要概述(改编自Adafruits的详尽摘要):

RST -这是TFT复位引脚。接地以复位TFT!最好由库控制此引脚,以便清晰地重置显示器,但您也可以将其连接到Arduino Reset引脚,该引脚在大多数情况下都可以使用。

CS -这是TFT SPI芯片选择引脚

D/C -这是TFT SPI数据或命令选择器引脚

DIN -这是SPI主输出从输入引脚(MOSI),用于将数据从微控制器发送到SD卡和/或TFT

SCLK -此是SPI时钟输入引脚

Vcc -这是电源引脚,连接到5VDC-具有反极性保护,但请尝试正确连接!

BL -这是背光控制的输入。连接到5VDC以打开背光。

GND -这是电源和信号接地引脚

现在我们知道我们要处理的是什么是时候开始布线了!

步骤2:建立连接

这是我要做的步骤希望当我开始使用此板时能够更容易找到。收到屏幕并意识到我不知道如何将其连接起来后,我转向他们的产品的Adafruit指南。

起初,看似引脚的布局不同,但否则两个显示器可以互换,并且能够运行Adafruit Graphics库(有关下一步代码的更多信息)。但是,当我按照Adafruit指南连接董事会时,我的显示 种 起作用了。它确实显示了文本和绘图,但是图像中有很多噪点,并且图像在屏幕上呈条纹状。屏幕顶部还发出明亮的光,中断了图像质量。我以为是因为我在5V电压下运行屏幕,因此需要较低的功率。我尝试了3.3V,但显示效果却变差了。经过约10分钟的遗憾后,我决定购买edaBay,并希望自己能与Adafruit主板一起使用,我决定在Google上搜索我的问题,并发现了这篇有关类似问题的有用文章:(1.8in SPI 128x160 TFT Module Arduino)

简而言之,在5个连接之间需要1k欧姆电阻。您可以在Fritzing图中看到电阻器的位置。第二张图片是显示器和Arduino引脚之间的连接表。我在下面列出了它们,并指出了连接是否需要电阻。

RST -Arduino Pin 7-1k电阻

CS -Arduino Pin 9-1k电阻器

DC -Arduino Pin 8-1k电阻器

DIN -Arduino Pin 11 -1k电阻

CLK -Arduino引脚13-1k电阻

Vcc -5V

BL -5V

GND -GND

步骤3:上传代码并运行

您将需要安装两个库才能操作显示器:

ST7735库

Adafruit GFX库

下载每个库并解压缩文件夹。将它们重命名为“ Adafruit_ST7735”和“ Adafruit_GFX”,并将每个文件夹放置在Arduino Libraries文件夹内。我已将库的屏幕快照附加在正确的文件夹中。安装完成后,就可以操作屏幕了! Adafruit ST7735库内部有一个名为graphicstest.ino的文件,您可以将其上传到Arduino,它将通过许多将对象绘制到屏幕上的函数来运行。但是,此文件将需要进行一些更改以使引脚适应您的布局。

或者,您可以将下面的代码复制/粘贴到Arduino IDE中并上传。这是Adafruit的graphictest.ino的修改版本,主要区别在于引脚的分配。我还玩了一下代码,看看有什么功能。如果您遇到任何代码问题,请告诉我。

/***************************************************

This is a library for the Adafruit 1.8“ SPI display. This library has

been modified from the original version to work with a non-Adafruit

1.8in display.

This library works with the Adafruit 1.8” TFT Breakout w/SD card

----》 http://www.adafruit.com/products/358

The 1.8“ TFT shield

----》 http://www.adafruit.com/products/358

The 1.44” TFT breakout

----》 http://www.adafruit.com/products/358

as well as Adafruit raw 1.8“ TFT display

----》 http://www.adafruit.com/products/358

Check out the links above for our tutorials and wiring diagrams

These displays use SPI to communicate, 4 or 5 pins are required to

interface (RST is optional)

Adafruit invests time and resources providing this open source code,

please support Adafruit and open-source hardware by purchasing

products from Adafruit!

Written by Limor Fried/Ladyada for Adafruit Industries.

MIT license, all text above must be included in any redistribution

****************************************************/

#include // Core graphics library

#include // Hardware-specific library

#include

// For the breakout, you can use any 2 or 3 pins

// These pins will also work for the 1.8” TFT shield

#define TFT_CS 9

#define TFT_RST 7 // you can also connect this to the Arduino reset

// in which case, set this #define pin to 0!

#define TFT_DC 8

// Option 1 (recommended): must use the hardware SPI pins

// (for UNO thats sclk = 13 and sid = 11) and pin 10 must be

// an output. This is much faster - also required if you want

// to use the microSD card (see the image drawing example)

Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_RST);

// Option 2: use any pins but a little slower!

#define TFT_SCLK 13 // set these to be whatever pins you like!

#define TFT_MOSI 11 // set these to be whatever pins you like!

//Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_MOSI, TFT_SCLK, TFT_RST);

float p = 3.1415926;

void setup(void) {

Serial.begin(9600);

Serial.print(“Hello! ST7735 TFT Test”);

// Use this initializer if you‘re using a 1.8“ TFT

tft.initR(INITR_BLACKTAB); // initialize a ST7735S chip, black tab

// Use this initializer (uncomment) if you’re using a 1.44” TFT

//tft.initR(INITR_144GREENTAB); // initialize a ST7735S chip, black tab

Serial.println(“Initialized”);

uint16_t time = millis();

tft.fillScreen(ST7735_BLACK);

time = millis() - time;

Serial.println(time, DEC);

delay(500);

// large block of text

tft.fillScreen(ST7735_BLACK);

testdrawtext(5, 45, “theblckwlf presents”, ST7735_WHITE);

delay(2000);

testdrawtext(15, 65, “the microscreen”, ST7735_WHITE);

testdrawtext(10, 75, “1.8in TFT display”, ST7735_WHITE);

delay(4000);

tft.fillScreen(ST7735_BLUE);

tft.setTextSize(2);

tft.fillScreen(ST7735_WHITE);

tft.setTextSize(1);

testdrawtext(5, 65, “start ”, ST7735_BLACK);

testdrawtext(5, 75, “diagnostic test.。.”, ST7735_BLACK);

delay(1000);

tft.fillScreen(ST7735_WHITE);

testdrawScreenData();

delay(3000);

tft.setTextSize(2);

drawTestGrid(10,10);

tft.setCursor(5, 40);

tft.println(“10x10 Grid”);

delay(2000);

tft.setCursor(15, 40);

drawTestGrid(5,5);

tft.println(“5x5 Grid”);

delay(2000);

tft.fillScreen(ST7735_WHITE);

tft.setTextSize(1);

tft.drawPixel(tft.width()/2, tft.height()/2, ST7735_BLACK);

tft.setCursor(15, (tft.height()/2)-15);

tft.print(“Center ”);

tft.print(tft.width()/2);

tft.print(“, ”);

tft.println(tft.height()/2);

tft.drawCircle(tft.width()/2, tft.height()/2, 5, ST7735_BLACK);

delay(2000);

// tft print function!

tftPrintTest();

delay(4000);

// a single pixel

tft.drawPixel(tft.width()/2, tft.height()/2, ST7735_GREEN);

delay(500);

// line draw test

testlines(ST7735_YELLOW);

delay(500);

// optimized lines

testfastlines(ST7735_RED, ST7735_BLUE);

delay(500);

testdrawrects(ST7735_GREEN);

delay(500);

testfillrects(ST7735_YELLOW, ST7735_MAGENTA);

delay(500);

tft.fillScreen(ST7735_BLACK);

testfillcircles(5, ST7735_BLUE);

testdrawcircles(5, ST7735_WHITE);

delay(500);

for (int i=0; i《5; i++){

testroundrects();

}

delay(500);

testtriangles();

delay(500);

mediabuttons();

delay(500);

Serial.println(“done”);

delay(1000);

}

void loop() {

tft.invertDisplay(true);

delay(500);

tft.invertDisplay(false);

delay(500);

}

void testlines(uint16_t color) {

tft.fillScreen(ST7735_BLACK);

for (int16_t x=0; x 《 tft.width(); x+=6) {

tft.drawLine(0, 0, x, tft.height()-1, color);

}

for (int16_t y=0; y 《 tft.height(); y+=6) {

tft.drawLine(0, 0, tft.width()-1, y, color);

}

tft.fillScreen(ST7735_BLACK);

for (int16_t x=0; x 《 tft.width(); x+=6) {

tft.drawLine(tft.width()-1, 0, x, tft.height()-1, color);

}

for (int16_t y=0; y 《 tft.height(); y+=6) {

tft.drawLine(tft.width()-1, 0, 0, y, color);

}

tft.fillScreen(ST7735_BLACK);

for (int16_t x=0; x 《 tft.width(); x+=6) {

tft.drawLine(0, tft.height()-1, x, 0, color);

}

for (int16_t y=0; y 《 tft.height(); y+=6) {

tft.drawLine(0, tft.height()-1, tft.width()-1, y, color);

}

tft.fillScreen(ST7735_BLACK);

for (int16_t x=0; x 《 tft.width(); x+=6) {

tft.drawLine(tft.width()-1, tft.height()-1, x, 0, color);

}

for (int16_t y=0; y 《 tft.height(); y+=6) {

tft.drawLine(tft.width()-1, tft.height()-1, 0, y, color);

}

}

void drawTestGrid(int hor, int vert){

tft.fillScreen(ST7735_WHITE);

//Draw vertical lines

for (int16_t x=0; x 《 tft.width(); x+=vert){

tft.drawFastVLine(x, 0, tft.height(), ST7735_RED);

}

for (int16_t y=0; y 《 tft.height(); y+=hor){

tft.drawFastHLine(0, y, tft.width(), ST7735_BLACK);

}

}

void testdrawtext(int wid, int hei, char *text, uint16_t color) {

tft.setCursor(wid, hei);

tft.setTextColor(color);

tft.setTextWrap(true);

tft.print(text);

}

void testfastlines(uint16_t color1, uint16_t color2) {

tft.fillScreen(ST7735_BLACK);

for (int16_t y=0; y 《 tft.height(); y+=5) {

tft.drawFastHLine(0, y, tft.width(), color1);

}

for (int16_t x=0; x 《 tft.width(); x+=5) {

tft.drawFastVLine(x, 0, tft.height(), color2);

}

}

void testdrawrects(uint16_t color) {

tft.fillScreen(ST7735_BLACK);

for (int16_t x=0; x 《 tft.width(); x+=6) {

tft.drawRect(tft.width()/2 -x/2, tft.height()/2 -x/2 , x, x, color);

}

}

void testfillrects(uint16_t color1, uint16_t color2) {

tft.fillScreen(ST7735_BLACK);

for (int16_t x=tft.width()-1; x 》 6; x-=6) {

tft.fillRect(tft.width()/2 -x/2, tft.height()/2 -x/2 , x, x, color1);

tft.drawRect(tft.width()/2 -x/2, tft.height()/2 -x/2 , x, x, color2);

}

}

void testfillcircles(uint8_t radius, uint16_t color) {

for (int16_t x=radius; x 《 tft.width(); x+=radius*2) {

for (int16_t y=radius; y 《 tft.height(); y+=radius*2) {

tft.fillCircle(x, y, radius, color);

}

}

}

void testdrawcircles(uint8_t radius, uint16_t color) {

for (int16_t x=0; x 《 tft.width()+radius; x+=radius*2) {

for (int16_t y=0; y 《 tft.height()+radius; y+=radius*2) {

tft.drawCircle(x, y, radius, color);

}

}

}

void testtriangles() {

tft.fillScreen(ST7735_BLACK);

int color = 0xF800;

int t;

int w = tft.width()/2;

int x = tft.height()-1;

int y = 0;

int z = tft.width();

for(t = 0 ; t 《= 15; t+=1) {

tft.drawTriangle(w, y, y, x, z, x, color);

x-=4;

y+=4;

z-=4;

color+=100;

}

}

void testroundrects() {

tft.fillScreen(ST7735_BLACK);

int color = 100;

int i;

int t;

for(t = 0 ; t 《= 4; t+=1) {

int x = 0;

int y = 0;

int w = tft.width()-2;

int h = tft.height()-2;

for(i = 0 ; i 《= 16; i+=1) {

tft.drawRoundRect(x, y, w, h, 5, color);

x+=2;

y+=3;

w-=4;

h-=6;

color+=1100;

}

color+=100;

}

}

void testdrawScreenData(){

tft.setCursor(0,20);

tft.println(“Screen Data:”);

tft.print(“Screen Width: ”);

tft.println(tft.width());

tft.print(“Screen Height: ”);

tft.println(tft.height());

}

void testdrawCountdown(){

tft.setTextWrap(true);

tft.fillScreen(ST7735_RED);

tft.setTextColor(ST7735_WHITE);

tft.setTextSize(6);

tft.setCursor(30, 50);

for (int i=10; i》0; i--){

tft.println(i);

delay(1000);

tft.setCursor(50, 50);

tft.fillScreen(ST7735_RED);

}

}

void circlePass(){

tft.fillScreen(ST7735_BLACK);

testfillcircles(5, ST7735_GREEN);

delay(1000);

testfillcircles(4, ST7735_RED);

delay(1000);

testfillcircles(2, ST7735_BLACK);

testfillcircles(3, ST7735_YELLOW);

delay(500);

}

void tftPrintTest() {

tft.setTextWrap(false);

tft.fillScreen(ST7735_BLACK);

tft.setCursor(0, 30);

tft.setTextColor(ST7735_RED);

tft.setTextSize(1);

tft.println(“Hello World!”);

tft.setTextColor(ST7735_YELLOW);

tft.setTextSize(2);

tft.println(“Hello World!”);

tft.setTextColor(ST7735_GREEN);

tft.setTextSize(3);

tft.println(“Hello World!”);

tft.setTextColor(ST7735_BLUE);

tft.setTextSize(4);

tft.print(1234.567);

delay(1500);

tft.setCursor(0, 0);

tft.fillScreen(ST7735_BLACK);

tft.setTextColor(ST7735_WHITE);

tft.setTextSize(0);

tft.println(“Hello World!”);

tft.setTextSize(1);

tft.setTextColor(ST7735_GREEN);

tft.print(p, 6);

tft.println(“ Want pi?”);

tft.println(“ ”);

tft.print(8675309, HEX); // print 8,675,309 out in HEX!

tft.println(“ Print HEX!”);

tft.println(“ ”);

tft.setTextColor(ST7735_WHITE);

tft.println(“Sketch has been”);

tft.println(“running for: ”);

tft.setTextColor(ST7735_MAGENTA);

tft.print(millis() / 1000);

tft.setTextColor(ST7735_WHITE);

tft.print(“ seconds.”);

}

void mediabuttons() {

// play

tft.fillScreen(ST7735_BLACK);

tft.fillRoundRect(25, 10, 78, 60, 8, ST7735_WHITE);

tft.fillTriangle(42, 20, 42, 60, 90, 40, ST7735_RED);

delay(500);

// pause

tft.fillRoundRect(25, 90, 78, 60, 8, ST7735_WHITE);

tft.fillRoundRect(39, 98, 20, 45, 5, ST7735_GREEN);

tft.fillRoundRect(69, 98, 20, 45, 5, ST7735_GREEN);

delay(500);

// play color

tft.fillTriangle(42, 20, 42, 60, 90, 40, ST7735_BLUE);

delay(50);

// pause color

tft.fillRoundRect(39, 98, 20, 45, 5, ST7735_RED);

tft.fillRoundRect(69, 98, 20, 45, 5, ST7735_RED);

// play color

tft.fillTriangle(42, 20, 42, 60, 90, 40, ST7735_GREEN);

}

就这些了。我用于此步骤的视频显示了如果您运行上面的代码,预期的显示效果。

责任编辑:wv

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
  • 显示屏
    +关注

    关注

    30

    文章

    4672

    浏览量

    78712
  • Arduino
    +关注

    关注

    190

    文章

    6515

    浏览量

    195995
收藏 人收藏
加入交流群
微信小助手二维码

扫码添加小助手

加入工程师交流群

    评论

    相关推荐
    热点推荐

    3.5TFT规格书

    关于3.5TFT彩屏的参考资料
    发表于 10-24 16:01 1次下载

    硕博电子7触摸显示屏,支持CAN通信和Codesy编程#工业显示屏 #汽车CAN总线  #触摸显示屏

    显示屏
    长沙硕博电子科技股份有限公司
    发布于 :2025年09月18日 15:29:59

    TFT显示屏环境温度设计指南

    工业控制、户外设备等复杂环境中,液晶 的稳定运行至关重要。作为核心视觉组件,TFT 显示屏的表现深受环境温度影响。忽视这一点,轻则显示
    的头像 发表于 08-04 11:21 1315次阅读

    浅谈TFT显示屏的供电方式

    开关控制等多种功能单元。不同的供电架构设计,直接决定了模块的功耗、兼容性以及最终的色彩、亮度表现。深入理解TFT显示屏的供电模式,是优化产品设计和确保显示品质的关键一步。
    的头像 发表于 07-16 15:49 1255次阅读

    希恩凯电子推出全新3.95TFT液晶显示屏

    智能家居控制面板的优雅流转中,新能源设备精准数据的跃动间,一块清晰、可靠、响应迅捷的显示屏是用户体验的核心支点。希恩凯电子有限公司,深耕显示技术领域的中国
    的头像 发表于 06-06 11:41 1006次阅读

    智慧路灯杆 LED 显示屏的信息发布

    智慧城市建设的浪潮中,智慧路灯杆作为重要的基础设施,正发挥着越来越多的功能。其中,安装在智慧路灯杆的 LED 显示屏成为信息传播的新窗口,极大地提升了城市管理效率和居民生活体验。那么,这些
    的头像 发表于 04-12 21:59 832次阅读

    推荐一款MIP超低功耗显示屏1.28/LS013B7DH03 工作功耗低至50µW

    LS013B7DH03是日本厦普SHARP推出的一款1.28超低功耗黑白显示屏(MIP),它在每个像素点嵌入了存储体,来存储图形数据,因此静止的图像不需要连续刷新,与传统TFT显示屏
    发表于 04-01 10:23

    显示屏的ESD应用方案——显示屏的发展史 #jin

    显示屏
    jf_15747056
    发布于 :2025年03月10日 18:11:37

    硕博电子SPD-043-Ex系列显示屏介绍

    SPD-043-Ex系列显示屏采用4.3英寸24位彩屏,呈现鲜艳逼真的色彩效果,满足用户对高品质视觉体验的需求。
    的头像 发表于 03-03 15:05 934次阅读

    2.0显示屏,轻薄低功耗12864点阵COG显示屏

    2.0单色LCD液晶显示屏12864图形点阵,轻薄低功耗128*64点阵COG显示屏
    的头像 发表于 02-19 12:02 1075次阅读
    2.0<b class='flag-5'>寸</b><b class='flag-5'>显示屏</b>,轻薄低功耗12864点阵COG<b class='flag-5'>显示屏</b>

    5.6英寸工业TFT高清智能串口 640*480分辨率终端显示器彩色LCD显示屏

    5.6英寸工业TFT高清智能串口 640*480分辨率终端显示器彩色LCD显示屏
    的头像 发表于 02-19 10:07 1233次阅读
    5.6<b class='flag-5'>英寸</b>工业<b class='flag-5'>TFT</b>高清智能串口<b class='flag-5'>屏</b> 640*480分辨率终端<b class='flag-5'>显示</b>器彩色LCD<b class='flag-5'>显示屏</b>

    8.0英寸串口800*480分辨率基本型TFT真彩色触摸液晶

    8.0英寸串口带系统定制UI界面,真正Modbus串口通信协议 8.0英寸串口800*480分辨率基本型TFT真彩色触摸液晶
    的头像 发表于 02-18 15:42 1036次阅读
    8.0<b class='flag-5'>英寸</b>串口<b class='flag-5'>屏</b>800*480分辨率基本型<b class='flag-5'>TFT</b>真彩色触摸液晶<b class='flag-5'>屏</b>

    天马携手康宁推出最新柔性OLED车载显示屏

    CES 2025,天马携手康宁联合推出双方共创的最新车载显示成果——双13英寸多曲率一体黑OLED显示屏和13
    的头像 发表于 01-13 09:41 1581次阅读

    三星显示CES 2025展示全球最大可折叠OLED显示屏

    的可折叠OLED显示屏。 这款显示屏折叠状态下尺寸为13.1英寸,而展开后更是达到了惊人的18.1英寸,为用户带来了前所未有的视觉体验。与
    的头像 发表于 01-07 14:16 1888次阅读

    开源项目!基于ESP32的圆形显示屏互动式圣诞雪球

    粒子 更新显示 图像缓存中完整绘制完一帧后,通过一次操作将其推送到显示屏: sprite.pushSprite(0, 0); 这会立即将缓冲区的内容传输到屏幕
    发表于 12-16 14:24