在线观看www成人影院-在线观看www日本免费网站-在线观看www视频-在线观看操-欧美18在线-欧美1级

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內(nèi)不再提示

在Arduino上使用1.8英寸TFT顯示屏的入門指南

454398 ? 來源:網(wǎng)絡整理 ? 作者:網(wǎng)絡整理 ? 2019-12-12 11:09 ? 次閱讀

步驟1:引腳布局

在Arduino上使用1.8英寸TFT顯示屏的入門指南

此處的第一張照片顯示了顯示板的背面。引腳有兩個側(cè)面-紅色圓圈表示我們將要使用的側(cè)面。它有8個引腳,您可以在第二張照片中看到每個引腳對應的含義。帶有16針的另一側(cè)用于SD卡,將在以后的Instructable中進行介紹。

引腳的簡要概述(改編自Adafruits的詳盡摘要):

RST -這是TFT復位引腳。接地以復位TFT!最好由庫控制此引腳,以便清晰地重置顯示器,但您也可以將其連接到Arduino Reset引腳,該引腳在大多數(shù)情況下都可以使用。

CS -這是TFT SPI芯片選擇引腳

D/C -這是TFT SPI數(shù)據(jù)或命令選擇器引腳

DIN -這是SPI主輸出從輸入引腳(MOSI),用于將數(shù)據(jù)從微控制器發(fā)送到SD卡和/或TFT

SCLK -此是SPI時鐘輸入引腳

Vcc -這是電源引腳,連接到5VDC-具有反極性保護,但請嘗試正確連接!

BL -這是背光控制的輸入。連接到5VDC以打開背光。

GND -這是電源和信號接地引腳

現(xiàn)在我們知道我們要處理的是什么是時候開始布線了!

步驟2:建立連接

這是我要做的步驟希望當我開始使用此板時能夠更容易找到。收到屏幕并意識到我不知道如何將其連接起來后,我轉(zhuǎn)向他們的產(chǎn)品的Adafruit指南。

起初,看似引腳的布局不同,但否則兩個顯示器可以互換,并且能夠運行Adafruit Graphics庫(有關下一步代碼的更多信息)。但是,當我按照Adafruit指南連接董事會時,我的顯示 種 起作用了。它確實顯示了文本和繪圖,但是圖像中有很多噪點,并且圖像在屏幕上呈條紋狀。屏幕頂部還發(fā)出明亮的光,中斷了圖像質(zhì)量。我以為是因為我在5V電壓下運行屏幕,因此需要較低的功率。我嘗試了3.3V,但顯示效果卻變差了。經(jīng)過約10分鐘的遺憾后,我決定購買edaBay,并希望自己能與Adafruit主板一起使用,我決定在Google上搜索我的問題,并發(fā)現(xiàn)了這篇有關類似問題的有用文章:(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文件夾內(nèi)。我已將庫的屏幕快照附加在正確的文件夾中。安裝完成后,就可以操作屏幕了! Adafruit ST7735庫內(nèi)部有一個名為graphicstest.ino的文件,您可以將其上傳到Arduino,它將通過許多將對象繪制到屏幕上的函數(shù)來運行。但是,此文件將需要進行一些更改以使引腳適應您的布局。

或者,您可以將下面的代碼復制/粘貼到Arduino IDE中并上傳。這是Adafruit的graphictest.ino的修改版本,主要區(qū)別在于引腳的分配。我還玩了一下代碼,看看有什么功能。如果您遇到任何代碼問題,請告訴我。

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

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

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權轉(zhuǎn)載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學習之用,如有內(nèi)容侵權或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • 顯示屏
    +關注

    關注

    28

    文章

    4526

    瀏覽量

    74922
  • Arduino
    +關注

    關注

    188

    文章

    6478

    瀏覽量

    188273
收藏 人收藏

    評論

    相關推薦

    2.0顯示屏,輕薄低功耗12864點陣COG顯示屏

    2.0單色LCD液晶顯示屏12864圖形點陣,輕薄低功耗128*64點陣COG顯示屏
    的頭像 發(fā)表于 02-19 12:02 ?69次閱讀
    2.0<b class='flag-5'>寸</b><b class='flag-5'>顯示屏</b>,輕薄低功耗12864點陣COG<b class='flag-5'>顯示屏</b>

    5.6英寸工業(yè)TFT高清智能串口 640*480分辨率終端顯示器彩色LCD顯示屏

    5.6英寸工業(yè)TFT高清智能串口 640*480分辨率終端顯示器彩色LCD顯示屏
    的頭像 發(fā)表于 02-19 10:07 ?70次閱讀
    5.6<b class='flag-5'>英寸</b>工業(yè)<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英寸串口帶系統(tǒng)定制UI界面,真正Modbus串口通信協(xié)議 8.0英寸串口800*480分辨率基本型TFT真彩色觸摸液晶
    的頭像 發(fā)表于 02-18 15:42 ?77次閱讀
    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,天馬攜手康寧聯(lián)合推出雙方共創(chuàng)的最新車載顯示成果——雙13英寸多曲率一體黑OLED顯示屏和13
    的頭像 發(fā)表于 01-13 09:41 ?231次閱讀

    三星顯示CES 2025展示全球最大可折疊OLED顯示屏

    的可折疊OLED顯示屏。 這款顯示屏折疊狀態(tài)下尺寸為13.1英寸,而展開后更是達到了驚人的18.1英寸,為用戶帶來了前所未有的視覺體驗。與
    的頭像 發(fā)表于 01-07 14:16 ?556次閱讀

    液晶顯示屏與led顯示屏的區(qū)別

    現(xiàn)代電子設備中,顯示屏是人機交互的重要界面。隨著科技的發(fā)展,顯示屏技術也不斷進步,其中液晶顯示屏(LCD)和LED
    的頭像 發(fā)表于 10-12 10:39 ?2035次閱讀

    碩博電子7CAN總線觸摸顯示屏無人駕駛車輛的應用#顯示屏 #無人駕駛 #環(huán)衛(wèi)車

    顯示屏
    長沙碩博電子科技股份有限公司
    發(fā)布于 :2024年09月23日 09:18:39

    蘋果iPhone SE 4或迎重大變革:OLED顯示屏與6.06英寸亮相

    9月4日,據(jù)國際媒體最新報道,科技界分析師與研究機構(gòu)普遍預測,蘋果公司計劃在明年推出萬眾矚目的第四代iPhone SE,這款新機將徹底告別傳統(tǒng)的LCD屏幕,轉(zhuǎn)而采用更為先進的OLED顯示屏。同時
    的頭像 發(fā)表于 09-04 17:02 ?1176次閱讀

    iPhone 16 Pro Max機模亮相:6.9英寸,4676mAh大電池

    據(jù)了解,iPhone 16 Pro Max將配備有史以來最大的Pro Max系列顯示屏——6.9英寸。相比之下,iPhone 15 Pro Max則采用了6.7英寸顯示屏
    的頭像 發(fā)表于 05-16 11:19 ?1064次閱讀

    用STM32F0擴展TFT1.8以上)時一般都用什么接口的?

    大家用STM32F0擴展TFT1.8以上)時一般都用什么接口的?
    發(fā)表于 05-16 06:12

    TFT液晶的核心組件之一是什么?傳統(tǒng)的液晶顯示屏相比具有哪些優(yōu)勢?

    隨著科技的不斷發(fā)展,液晶顯示技術電子設備中扮演著至關重要的角色。而在眾多液晶顯示技術中,TFT液晶以其獨特的優(yōu)勢逐漸成為市場主流。本文深
    的頭像 發(fā)表于 04-01 09:16 ?1126次閱讀

    0.96 OLED 顯示屏使用手冊

    電子發(fā)燒友網(wǎng)站提供《0.96 OLED 顯示屏使用手冊.pdf》資料免費下載
    發(fā)表于 03-19 11:02 ?28次下載

    2.4TFT液晶具有以下技術優(yōu)勢和未來展望

    2.4TFT液晶是指一種尺寸為2.4英寸的薄膜晶體管液晶顯示屏。它采用薄膜晶體管技術和透明液晶材料,結(jié)合背光源,能夠
    的頭像 發(fā)表于 03-14 09:20 ?1247次閱讀

    TFT液晶顯示屏是什么原因?怎么處理?

    TFT液晶顯示屏出現(xiàn)閃問題可能由多種原因引起,包括硬件故障、驅(qū)動問題和環(huán)境因素等。下面是深圳市勛瑞光電科技有限公司小編對TFT液晶顯示屏
    的頭像 發(fā)表于 03-11 09:39 ?2004次閱讀

    LED電子顯示屏型號挑選指南

    舉個例子來說,如果你宴會廳背景墻想做一塊LED全彩顯示屏,你就需要測量顯示屏安裝位置到前排觀眾的距離。
    發(fā)表于 02-25 11:40 ?1935次閱讀
    主站蜘蛛池模板: 成年视频xxxxx免费播放软件 | 久久9热| 男人的天堂一区二区视频在线观看 | 二区久久国产乱子伦免费精品 | 国产精品视频你懂的 | 六月婷婷七月丁香 | se在线播放 | 午夜影院免费 | 激情亚洲综合网 | 正在播放91大神调教偷偷 | 国产精品福利午夜h视频 | 国产午夜精品一区二区理论影院 | 1024手机看片日韩 | 狠狠尻| 最近国语视频免费观看在线播放 | 神马午夜限制 | 怡红院网址 | 台湾三级毛片 | 日本亚洲成人 | 精品美女在线 | 亚洲热热久久九九精品 | 性欧美极品另类 | 成人a毛片在线看免费全部播放 | 男女视频在线看 | 丝袜美腿视频一区二区三区 | 国产欧美网站 | 色多多在线观看 | 日韩毛片 | 日本三级香港三级人妇99 | 亚洲香蕉久久一区二区三区四区 | 亚洲黄色在线网站 | 亚洲一区二区欧美 | 777奇米影视笫四色88me久久综合 | 亚洲黄色性视频 | 国产拍拍拍精品视频 | baoyu污污网站入口免费 | 日本不卡一区二区三区在线观看 | 黄.www| 福利色播 | 亚洲第8页| 亚洲午夜大片 |