89159浏览
楼主: 驴友花雕

[项目] 【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...

[复制链接]

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 09:31:43

【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之四:Kbv 图形与字符串显示的综合测试(实验记录视频1分26秒)

实验动态图4 【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1

回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 09:43:10

【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之四:Kbv 图形与字符串显示的综合测试(实验记录视频1分26秒)

实验动态图5 【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1

回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 09:50:59

【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之四:Kbv 图形与字符串显示的综合测试(实验记录视频1分26秒)

实验动态图6  【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1

回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 09:54:37

【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之四:Kbv 图形与字符串显示的综合测试(实验记录视频1分26秒)

https://v.youku.com/v_show/id_XNTE3NTAxMDcwNA==.html



回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 10:22:02

【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之五:生成实时时间的电视台测试卡
  实验开源代码:

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  3.   实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  4.   项目之五:生成实时时间的电视台测试卡
  5.   模块直插,引脚用法如下:
  6.   LCD_CS LCD_CD LCD_WR LCD_RD LCD_RST SD_SS SD_DI SD_DO SD_SCK
  7.   Arduino Uno A3 A2 A1 A0 A4 10 11 12 13
  8.   LCD_D0 LCD_D1 LCD_D2 LCD_D3 LCD_D4 LCD_D5 LCD_D6 LCD_D7
  9.   Arduino Uno 8 9 2 3 4 5 6 7
  10. */
  11. #include <Adafruit_GFX.h>
  12. #if defined(_GFXFONT_H_)           
  13. #include <Fonts/FreeSans9pt7b.h>
  14. #define ADJ_BASELINE 11            //新字体将光标设置为字母底部
  15. #else
  16. #define ADJ_BASELINE 0             //遗留设置光标到字母顶部
  17. #endif
  18. #include <MCUFRIEND_kbv.h>
  19. MCUFRIEND_kbv tft;
  20. #define BLACK   0x0000
  21. #define BLUE    0x001F
  22. #define RED     0xF800
  23. #define GREEN   0x07E0
  24. #define CYAN    0x07FF
  25. #define MAGENTA 0xF81F
  26. #define YELLOW  0xFFE0
  27. #define WHITE   0xFFFF
  28. #define RGB(r, g, b) (((r&0xF8)<<8)|((g&0xFC)<<3)|(b>>3))
  29. #define GREY      RGB(127, 127, 127)
  30. #define DARKGREY  RGB(64, 64, 64)
  31. #define TURQUOISE RGB(0, 128, 128)
  32. #define PINK      RGB(255, 128, 192)
  33. #define OLIVE     RGB(128, 128, 0)
  34. #define PURPLE    RGB(128, 0, 128)
  35. #define AZURE     RGB(0, 128, 255)
  36. #define ORANGE    RGB(255,128,64)
  37. #include <stdio.h>
  38. uint16_t ID;
  39. uint8_t hh, mm, ss; //当前时间的储存容器变量
  40. uint8_t conv2d(const char* p){
  41.     uint8_t v = 0;
  42.     if ('0' <= *p && *p <= '9') v = *p - '0';
  43.     return 10 * v + *++p - '0';
  44. }
  45. void setup(void){
  46.     Serial.begin(9600);
  47.     tft.reset();
  48.     ID = tft.readID();
  49.     Serial.print("TFT ID = 0x");
  50.     Serial.println(ID, HEX);
  51.     //    if (ID == 0xD3D3) ID = 0x9481; // 只写扩展
  52.     if (ID == 0xD3D3) ID = 0x9486; // 只写扩展
  53.     tft.begin(ID);
  54.     tft.setRotation(1);
  55.     tft.fillScreen(BLACK);
  56. #if defined(_GFXFONT_H_)
  57.     tft.setFont(&FreeSans9pt7b);
  58. #endif
  59.     hh = conv2d(__TIME__);
  60.     mm = conv2d(__TIME__ + 3);
  61.     ss = conv2d(__TIME__ + 6);
  62. }
  63. void loop(void){
  64.     int16_t x, y, dx, dy, radius = 108, idx;
  65.     uint16_t w, h, len, mask;
  66.     uint16_t colors[8] = { BLACK, WHITE, YELLOW, CYAN, GREEN, MAGENTA, RED, BLUE };
  67.     uint16_t height, width;
  68.     width = tft.width();
  69.     height = tft.height();
  70.     tft.fillRect(0, 0, 7, 3, WHITE);
  71.     tft.fillRect(313, 0, 7, 3, WHITE);
  72.     tft.fillRect(0, 237, 7, 3, WHITE);
  73.     tft.fillRect(313, 237, 7, 3, WHITE);
  74.     for (y = 0, w = 18, h = 3; y < 240; y += 13 * w + h) {
  75.         for (x = 25; x < 320 - 18; x += 2 * w) {
  76.             tft.fillRect(x, y, w, h, WHITE);
  77.         }
  78.     }
  79.     for (x = 0, w = 7, h = 18; x < 320; x += 17 * h + w) {
  80.         for (y = 21; y < 240 - 18; y += 2 * h) {
  81.             tft.fillRect(x, y, w, h, WHITE);
  82.         }
  83.     }
  84.     tft.fillRect(7, 3, 17 * 18, 13 * 18, GREY);
  85.     for (x = 7, y = 0, w = 1, h = 240; x < 320; x += 18) {
  86.         tft.fillRect(x, y, w, h, WHITE);
  87.     }
  88.     for (x = 0, y = 3, w = 320, h = 1; y < 240; y += 18) {
  89.         tft.fillRect(x, y, w, h, WHITE);
  90.     }
  91.     tft.fillRect(26, 22, 17, 99, TURQUOISE);
  92.     tft.fillRect(26, 120, 17, 99, PINK);
  93.     tft.fillRect(44, 22, 17, 35, AZURE);
  94.     tft.fillRect(44, 184, 17, 35, ORANGE);
  95.     tft.fillRect(260, 22, 17, 35, AZURE);
  96.     tft.fillRect(260, 184, 17, 35, ORANGE);
  97.     tft.fillRect(278, 22, 17, 99, OLIVE);
  98.     tft.fillRect(278, 120, 17, 99, PURPLE);
  99.     for (dx = radius; dx > -radius; dx--) {
  100.         w = sqrt(radius * radius - dx * dx);
  101.         y = 120 - dx;
  102.         dy = (y - 3) / 18;
  103.         mask = 7;
  104.         colors[0] = (dy == 3) ? DARKGREY : BLACK;
  105.         switch (dy) {
  106.             case 0:
  107.             case 1: idx = 1; len = 0; break;
  108.             case 2: idx = 0; len = 0; break;
  109.             case 3: idx = 0; len = 13; mask = 1; break;
  110.             case 4:
  111.             case 5: idx = 2; len = 38; break;
  112.             case 6:
  113.             case 7:
  114.             case 8: idx = 0; len = 0; break;
  115.             case 9: for (idx = 2; idx < 8; idx++) {
  116.                     //dy = 0xFF >> (7 - idx);
  117.                     dy = (idx - 2) * 51;
  118.                     colors[idx] = tft.color565(dy, dy, dy);
  119.                 }
  120.                 idx = 2; len = 38; break;
  121.             case 10: idx = 1; len = 0; break;
  122.             case 11:
  123.             case 12: colors[2] = YELLOW; idx = 2; len = 0; break;
  124.         }
  125.         if (len == 0)
  126.             tft.fillRect(160 - w, y, w * 2, 1, colors[idx]);
  127.         else {
  128.             if (mask == 1) idx = 1 + (w) / len;
  129.             dy = w % len;
  130.             for (x = 160 - w; x < 160 + w; idx++) {
  131.                 tft.fillRect(x, y, dy, 1, colors[idx & mask]);
  132.                 x += dy;
  133.                 if (x + len > 160 + w) dy = w % len;
  134.                 else dy = len;
  135.             }
  136.         }
  137.     }
  138.     for (x = 72, y = 129, dx = 5, dy = 0; dx > 0; x += 2 * dx) {
  139.         tft.fillRect(x, y, dx, 36, WHITE);
  140.         dy += dx * 2;
  141.         if (dy >= 36) {
  142.             dy = 0;
  143.             dx--;
  144.         }
  145.     }
  146.     tft.fillRect(160 - 8, 5 * 18 + 3, 17, 3 * 18, BLACK);
  147.     for (x = 3 * 18 + 7, y = 6 * 18 + 3, w = 1, h = 18; x < 160 + 108; x += 18) {
  148.         tft.fillRect(x, y, w, h, WHITE);
  149.     }
  150.     tft.fillRect(160 - 108, 120, 108 * 2, 1, WHITE);
  151.     tft.fillRect(160, 5 * 18 + 3, 1, 3 * 18, WHITE);
  152.     tft.fillRect(108, 2 * 18 + 3, 6 * 18, 18, WHITE);
  153.     //    tft.fillRect(108, 10 * 18 + 3, 6 * 18, 18, BLACK);
  154.     tft.fillRect(160 - 8, 11 * 18 + 3, 17, radius - 18*9/2, RED);
  155.     tft.setCursor(160 - 36, 24 + ADJ_BASELINE);
  156.     tft.setTextColor(BLACK);
  157.     tft.setTextSize(1);
  158.     tft.print("320x240");
  159.     tft.setCursor(109, 43 + ADJ_BASELINE);
  160.     tft.setTextColor(BLACK);
  161.     tft.setTextSize(1);
  162.     tft.print("ID=0x");
  163.     tft.print(tft.readID(), HEX);
  164.     tft.setTextColor(WHITE, BLACK);
  165.     //    tft.setFont(NULL);
  166.     //    tft.setTextSize(2);
  167.    
  168.     while (1) {
  169.         if (++ss > 59) {
  170.             ss = 0;
  171.             mm++;
  172.             if (mm > 59) {
  173.                 mm = 0;
  174.                 hh++;
  175.                 if (hh > 23) hh = 0;
  176.             }
  177.         }
  178.         char buf[20];
  179.         sprintf(buf, "%02d:%02d:%02d", hh, mm, ss);
  180.         tft.fillRect(108, 10 * 18 + 3, 6 * 18, 18, BLACK);
  181.         tft.setCursor(128, 187 + ADJ_BASELINE);
  182.         tft.print(buf);
  183.         delay(1000);
  184.     }
  185. }
复制代码


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 10:24:55

本帖最后由 驴友花雕 于 2021-7-20 05:12 编辑

实验场景图

【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1




回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 11:36:30

  【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之六:逐行显示不同字号的英文字符串
实验开源代码:

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  3.   实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  4.   项目之六:逐行显示不同字号的英文字符串
  5.   模块直插,引脚用法如下:
  6.   LCD_CS LCD_CD LCD_WR LCD_RD LCD_RST SD_SS SD_DI SD_DO SD_SCK
  7.   Arduino Uno A3 A2 A1 A0 A4 10 11 12 13
  8.   LCD_D0 LCD_D1 LCD_D2 LCD_D3 LCD_D4 LCD_D5 LCD_D6 LCD_D7
  9.   Arduino Uno 8 9 2 3 4 5 6 7
  10. */
  11. #include <LCDWIKI_GUI.h> //导入核心图形库
  12. #include <LCDWIKI_KBV.h> //导入特定硬件库
  13. //如果 IC 模型已知或模块不可读,则可以使用此构造函数
  14. LCDWIKI_KBV mylcd(ILI9341, A3, A2, A1, A0, A4); //模型、CS、CD、WR、RD、重置
  15. //如果 IC 模型未知且模块可读,则可以使用此构造函数
  16. //LCDWIKI_KBV my_lcd(240,320,A3,A2,A1,A0,A4);//屏幕宽度、高度、cs、cd、wr、rd、重置
  17. //定义一些颜色值
  18. #define BLACK   0x0000
  19. #define BLUE    0x001F
  20. #define RED     0xF800
  21. #define GREEN   0x07E0
  22. #define CYAN    0x07FF
  23. #define MAGENTA 0xF81F
  24. #define YELLOW  0xFFE0
  25. #define WHITE   0xFFFF
  26. void setup()
  27. {
  28.   Serial.begin(9600);
  29.   mylcd.Init_LCD();
  30.   Serial.println(mylcd.Read_ID(), HEX);
  31.   mylcd.Fill_Screen(BLACK);
  32. }
  33. void loop()
  34. {
  35.   mylcd.Set_Text_Mode(0);
  36.   //显示 1 次字符串
  37.   mylcd.Fill_Screen(0x0000);
  38.   mylcd.Set_Text_colour(RED);
  39.   mylcd.Set_Text_Back_colour(BLACK);
  40.   mylcd.Set_Text_Size(1);
  41.   mylcd.Print_String("Hello World!", 0, 0);
  42.   mylcd.Print_Number_Float(01234.56789, 2, 0, 8, '.', 0, ' ');
  43.   mylcd.Print_Number_Int(0xDEADBEF, 0, 16, 0, ' ', 16);
  44.   //mylcd.Print_String("DEADBEF", 0, 16);
  45.   delay(166);
  46.   //显示 2 次字符串
  47.   mylcd.Set_Text_colour(GREEN);
  48.   mylcd.Set_Text_Size(2);
  49.   mylcd.Print_String("Hello World!", 0, 40);
  50.   mylcd.Print_Number_Float(01234.56789, 2, 0, 56, '.', 0, ' ');
  51.   mylcd.Print_Number_Int(0xDEADBEF, 0, 72, 0, ' ', 16);
  52.   //mylcd.Print_String("DEADBEEF", 0, 72);
  53.   delay(166);
  54.   //显示 3 次字符串
  55.   mylcd.Set_Text_colour(BLUE);
  56.   mylcd.Set_Text_Size(3);
  57.   mylcd.Print_String("Hello World!", 0, 104);
  58.   mylcd.Print_Number_Float(01234.56789, 2, 0, 128, '.', 0, ' ');
  59.   mylcd.Print_Number_Int(0xDEADBEF, 0, 152, 0, ' ', 16);
  60.   // mylcd.Print_String("DEADBEEF", 0, 152);
  61.   delay(166);
  62.   //显示 4 次字符串
  63.   mylcd.Set_Text_colour(WHITE);
  64.   mylcd.Set_Text_Size(4);
  65.   mylcd.Print_String("Hello!", 0, 192);
  66.   delay(166);
  67.   //显示 5 次字符串
  68.   mylcd.Set_Text_colour(YELLOW);
  69.   mylcd.Set_Text_Size(5);
  70.   mylcd.Print_String("Hello!", 0, 224);
  71.   delay(166);
  72.   //显示 6 次字符串
  73.   mylcd.Set_Text_colour(RED);
  74.   mylcd.Set_Text_Size(6);
  75.   mylcd.Print_String("Hello!", 0, 266);
  76.   delay(666);
  77. }
复制代码


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 12:09:11

  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之六:逐行显示不同字号的英文字符串

  实验场景动图【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 12:34:10

【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之七:诊断接触针
  实验开源代码:

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  3.   实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  4.   项目之七:诊断接触针
  5.   模块直插,引脚用法如下:
  6.   LCD_CS LCD_CD LCD_WR LCD_RD LCD_RST SD_SS SD_DI SD_DO SD_SCK
  7.   Arduino Uno A3 A2 A1 A0 A4 10 11 12 13
  8.   LCD_D0 LCD_D1 LCD_D2 LCD_D3 LCD_D4 LCD_D5 LCD_D6 LCD_D7
  9.   Arduino Uno 8 9 2 3 4 5 6 7
  10. */
  11. void showpins(int A, int D, int value, const char *msg) {
  12.   Serial.print(msg);
  13.   Serial.print(" (A" + String(A - A0) + ", D" + String(D) + ") = ");
  14.   Serial.println(value);
  15. }
  16. void setup() {
  17.   int i, j, value, Apins[2], Dpins[2], Values[2], found = 0;
  18.   Serial.begin(9600);
  19.   Serial.println("Making all control and bus pins INPUT_PULLUP");
  20.   Serial.println("Typical 30k Analog pullup with corresponding pin");
  21.   Serial.println("would read low when digital is written LOW");
  22.   Serial.println("e.g. reads ~25 for 300R X direction");
  23.   Serial.println("e.g. reads ~30 for 500R Y direction");
  24.   Serial.println("");
  25.   for (i = A0; i < A5; i++) pinMode(i, INPUT_PULLUP);
  26.   for (i = 2; i < 10; i++) pinMode(i, INPUT_PULLUP);
  27.   for (i = A0; i < A4; i++) {
  28.     for (j = 5; j < 10; j++) {
  29.       pinMode(j, OUTPUT);
  30.       digitalWrite(j, LOW);
  31.       value = analogRead(i);   // 忽略初读
  32.       value = analogRead(i);
  33.       if (value < 100) {
  34.         showpins(i, j, value, "Testing :");
  35.         if (found < 2) {
  36.           Apins[found] = i;
  37.           Dpins[found] = j;
  38.           Values[found] = value;
  39.           found++;
  40.         }
  41.       }
  42.       pinMode(j, INPUT_PULLUP);
  43.     }
  44.   }
  45.   if (found == 2) {
  46.     Serial.println("Diagnosing as:-");
  47.     for (i = 0; i < 2; i++) {
  48.       showpins(Apins[i], Dpins[i], Values[i], (Values[i] < Values[!i]) ? "XM,XP: " : "YP,YM: ");
  49.     }
  50.   }
  51. }
  52. void loop() {
  53. }
复制代码


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 12:39:10

实验串口返回情况
【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1        







回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 12:50:26

【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之八:纵向流动显示字符串
  实验开源代码:

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  3.   实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  4.   项目之八:纵向流动显示字符串
  5.   模块直插,引脚用法如下:
  6.   LCD_CS LCD_CD LCD_WR LCD_RD LCD_RST SD_SS SD_DI SD_DO SD_SCK
  7.   Arduino Uno A3 A2 A1 A0 A4 10 11 12 13
  8.   LCD_D0 LCD_D1 LCD_D2 LCD_D3 LCD_D4 LCD_D5 LCD_D6 LCD_D7
  9.   Arduino Uno 8 9 2 3 4 5 6 7
  10. */
  11. #include <Adafruit_GFX.h> // 导入特定硬件的库
  12. #include <MCUFRIEND_kbv.h>
  13. MCUFRIEND_kbv tft;
  14. #define BLACK   0x0000
  15. #define BLUE    0x001F
  16. #define RED     0xF800
  17. #define GREEN   0x07E0
  18. #define CYAN    0x07FF
  19. #define MAGENTA 0xF81F
  20. #define YELLOW  0xFFE0
  21. #define WHITE   0xFFFF
  22. // 在行号中工作。 以 16 为单位的字体高度
  23. int16_t ht = 16, top = 3, line, lines = 15, scroll;
  24. void setup() {
  25.   tft.reset();
  26.   uint16_t id = tft.readID();
  27.   tft.begin(id);
  28.   tft.setRotation(0);     //肖像
  29.   tft.fillScreen(BLACK);
  30.   tft.setTextColor(WHITE, BLACK);
  31.   tft.setTextSize(2);     // 系统字体为 8 像素。 ht = 8*2=16
  32.   tft.setCursor(100, 0);
  33.   tft.print("ID = 0x");
  34.   tft.println(id, HEX);
  35.   if (id == 0x9320 || id == 0x9325 || id == 0xB509) {
  36.     top = 0;                      // 这些控制器滚动全屏
  37.     lines = tft.height() / ht;    // 我们处于纵向模式
  38.   }
  39.   if (id == 0x7783) {
  40.     tft.println("can NOT scroll");
  41.     while (1);                    // 休止
  42.   }
  43.   tft.setCursor(0, 0);
  44.   for (line = 1; line < 21; line++) tft.println(String(line) + ": ");
  45. }
  46. void loop()
  47. {
  48.   tft.setCursor(0, (scroll + top) * ht);
  49.   if (++scroll >= lines) scroll = 0;
  50.   tft.vertScroll(top * ht, lines * ht, (scroll) * ht);
  51.   tft.println(String(line) + ": [" + String(scroll) + "]  ");
  52.   delay(100);
  53.   line++;
  54. }
复制代码


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 12:59:59

实验场景图

【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 13:53:18

  【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之九:动态背景四面循环显示字符串

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  3.   实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  4.   项目之九:动态背景四面循环显示字符串
  5.   模块直插,引脚用法如下:
  6.   LCD_CS LCD_CD LCD_WR LCD_RD LCD_RST SD_SS SD_DI SD_DO SD_SCK
  7.   Arduino Uno A3 A2 A1 A0 A4 10 11 12 13
  8.   LCD_D0 LCD_D1 LCD_D2 LCD_D3 LCD_D4 LCD_D5 LCD_D6 LCD_D7
  9.   Arduino Uno 8 9 2 3 4 5 6 7
  10. */
  11. #include <Adafruit_GFX.h> // 导入基本图形库
  12. #include <MCUFRIEND_kbv.h>
  13. MCUFRIEND_kbv tft;
  14. void setup(){
  15.     Serial.begin(9600);
  16.     tft.reset();
  17.     uint16_t identifier = tft.readID();
  18.     Serial.print("ID = 0x");
  19.     Serial.println(identifier, HEX);
  20.     if (identifier == 0xEFEF) identifier = 0x9486;
  21.     tft.begin(identifier);
  22.     // tft fill Screen (BLACK);
  23. }
  24. char *msg[] = { "PORTRAIT", "LANDSCAPE", "PORTRAIT_REV", "LANDSCAPE_REV" };
  25. uint8_t aspect;
  26. void loop(){
  27.     uint16_t x = 50, y = 100;
  28.     tft.setRotation(aspect);
  29.     tft.fillScreen(0x0000);
  30.     tft.setCursor(0, 0);
  31.     tft.setTextSize(2);
  32.     tft.println(msg[aspect]);
  33.     tft.setCursor(x, y);
  34.     tft.println("[x=" + String(x) + ",y=" + String(y) + "]");
  35.     delay(800);
  36.     tft.println("INVERT ON");
  37.     tft.invertDisplay(true);
  38.     delay(250);
  39.     tft.invertDisplay(false);
  40.     tft.println("INVERT OFF");
  41.     delay(250);
  42.     if (++aspect >= 4) aspect = 0;
  43. }
复制代码


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 13:54:34

实验场景图

【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 14:49:28

  【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之十:逐行显示不同字号的英文字符串

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  3.   实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  4.   项目之十:逐行显示不同字号的英文字符串
  5.   模块直插,引脚用法如下:
  6.   LCD_CS LCD_CD LCD_WR LCD_RD LCD_RST SD_SS SD_DI SD_DO SD_SCK
  7.   Arduino Uno A3 A2 A1 A0 A4 10 11 12 13
  8.   LCD_D0 LCD_D1 LCD_D2 LCD_D3 LCD_D4 LCD_D5 LCD_D6 LCD_D7
  9.   Arduino Uno 8 9 2 3 4 5 6 7
  10. */
  11. #include <Adafruit_GFX.h>    // 导入核心图形库
  12. #include <MCUFRIEND_kbv.h>   // 导入特定硬件库
  13. MCUFRIEND_kbv tft;
  14. #include <Fonts/FreeSans9pt7b.h> //导入字体库
  15. #include <Fonts/FreeSans12pt7b.h>
  16. #include <Fonts/FreeSerif12pt7b.h>
  17. #include <FreeDefaultFonts.h>
  18. #define BLACK   0x0000
  19. #define RED     0xF800
  20. #define GREEN   0x07E0
  21. #define WHITE   0xFFFF
  22. #define GREY    0x8410
  23. void setup(void){
  24.     Serial.begin(9600);
  25.     uint16_t ID = tft.readID();
  26.     Serial.println("Example: Font_simple");
  27.     Serial.print("found ID = 0x");
  28.     Serial.println(ID, HEX);
  29.     Serial.println("The display font is ready OK!");
  30.     if (ID == 0xD3D3) ID = 0x9481; //如果只写显示,则强制 ID
  31.     tft.begin(ID);
  32.     tft.setRotation(0);
  33. }
  34. void loop(void){
  35.     tft.fillScreen(BLACK);
  36.     showmsgXY(20, 10, 1, NULL, "System x1");
  37.     showmsgXY(20, 24, 2, NULL, "System x2");
  38.     showmsgXY(20, 60, 1, &FreeSans9pt7b, "FreeSans9pt7b");
  39.     showmsgXY(20, 80, 1, &FreeSans12pt7b, "FreeSans12pt7b");
  40.     showmsgXY(20, 100, 1, &FreeSerif12pt7b, "FreeSerif12pt7b");
  41.     showmsgXY(20, 120, 1, &FreeSmallFont, "FreeSmallFont");
  42.     showmsgXY(5, 180, 1, &FreeSevenSegNumFont, "01234");
  43.     showmsgXY(5, 190, 1, NULL, "System Font is drawn from topline");
  44.     tft.setTextColor(RED, GREY);
  45.     tft.setTextSize(2);
  46.     tft.setCursor(0, 220);
  47.     tft.print("7x5 can overwrite");
  48.     delay(50);
  49.     tft.setCursor(0, 220);
  50.     tft.print("if background set");
  51.     delay(50);
  52.     showmsgXY(5, 260, 1, &FreeSans9pt7b, "Free Fonts from baseline");
  53.      delay(50);
  54.     showmsgXY(5, 285, 1, &FreeSans9pt7b, "Free Fonts transparent");
  55.     delay(50);
  56.     showmsgXY(5, 310, 1, &FreeSans9pt7b, "erase backgnd with fillRect()");
  57.     delay(300);
  58. }
  59. void showmsgXY(int x, int y, int sz, const GFXfont *f, const char *msg)
  60. {
  61.     int16_t x1, y1;
  62.     uint16_t wid, ht;
  63.     tft.drawFastHLine(0, y, tft.width(), WHITE);
  64.     tft.setFont(f);
  65.     tft.setCursor(x, y);
  66.     tft.setTextColor(GREEN);
  67.     tft.setTextSize(sz);
  68.     tft.print(msg);
  69.     delay(500);
  70. }
复制代码


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 15:13:24

【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之十:逐行显示不同字号的英文字符串

  实验场景图【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1

回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 15:36:05

实验串口返回情况

【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1
回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 16:04:51

【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之十一:四方向满屏动态字符串
  实验开源代码:

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  3.   实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  4.   项目之十一:四方向满屏动态字符串
  5.   模块直插,引脚用法如下:
  6.   LCD_CS LCD_CD LCD_WR LCD_RD LCD_RST SD_SS SD_DI SD_DO SD_SCK
  7.   Arduino Uno A3 A2 A1 A0 A4 10 11 12 13
  8.   LCD_D0 LCD_D1 LCD_D2 LCD_D3 LCD_D4 LCD_D5 LCD_D6 LCD_D7
  9.   Arduino Uno 8 9 2 3 4 5 6 7
  10. */
  11. #define LCD_CS A3 // Chip Select goes to Analog 3
  12. #define LCD_CD A2 // Command/Data goes to Analog 2
  13. #define LCD_WR A1 // LCD Write goes to Analog 1
  14. #define LCD_RD A0 // LCD Read goes to Analog 0
  15. #define LCD_RESET A4 // Can alternately just connect to Arduino's reset pin
  16. #include <Adafruit_GFX.h> // Hardware-specific library
  17. #include <MCUFRIEND_kbv.h>
  18. MCUFRIEND_kbv tft;
  19. //#include <Adafruit_TFTLCD.h> // Hardware-specific library
  20. //Adafruit_TFTLCD tft(LCD_CS, LCD_CD, LCD_WR, LCD_RD, LCD_RESET);
  21. //Adafruit_TFTLCD tft;
  22. //为一些常见的 16 位颜色值分配可读的名称
  23. #define        BLACK   0x0000
  24. #define        BLUE    0x001F
  25. #define        RED     0xF800
  26. #define        GREEN   0x07E0
  27. #define CYAN    0x07FF
  28. #define MAGENTA 0xF81F
  29. #define YELLOW  0xFFE0
  30. #define WHITE   0xFFFF
  31. void setup(void);
  32. void loop(void);
  33. uint16_t g_identifier;
  34. void setup(void) {
  35.   tft.reset();
  36.   g_identifier = tft.readID();
  37.   Serial.begin(9600);
  38.   Serial.print("readID = 0x");
  39.   Serial.println(g_identifier, HEX);
  40.   if (g_identifier == 0xFFFF) g_identifier = 0x9341;
  41.   if (g_identifier == 0) {
  42.     Serial.println("Unknown ID");
  43.     while (1);
  44.   }
  45.   tft.begin(g_identifier);
  46.   tft.setRotation(0);
  47. }
  48. uint16_t colors[] = {
  49.   BLACK, BLUE
  50. };
  51. void colordump(uint16_t x, uint16_t y)
  52. {
  53.   uint16_t pixel, pixels[32];
  54.   char i, j, buf[20], dirty;
  55.   uint8_t wid = (tft.width() - 9 * 6) / (5 * 6), ht = (tft.height() / 8) - 1;
  56.   tft.setTextColor(WHITE);
  57.   tft.setTextSize(1);
  58.   for (j = 0; j < ht; j++) {
  59.     sprintf(buf, "%3d,%3d:", x, y + j);
  60.     tft.print(buf);
  61.     dirty = 1;
  62.     for (i = 0; i < wid; i++) {
  63. #if 1 && defined(MCUFRIEND_KBV_H_)
  64.       if (dirty) tft.readGRAM(x, y + j, pixels, wid, 1);
  65.       dirty = 0;
  66.       pixel = pixels[i];
  67. #else
  68.       pixel = tft.readPixel(x + i, y + j);
  69. #endif
  70.       tft.print(" ");
  71.       if (pixel == WHITE) tft.setTextColor(GREEN);
  72.       sprintf(buf, "%04X", pixel);
  73.       tft.print(buf);
  74.       tft.setTextColor(WHITE);
  75.     }
  76.     tft.println();
  77.   }
  78. }
  79. uint16_t bgr(uint16_t color) {
  80.   return ((color & 0xF800) >> 11) | (color & 0x7E0) | (color & 0x1F) << 11;
  81. }
  82. void duffcolor(uint16_t color) {
  83.   uint16_t pixel, x, y;
  84.   char done, buf[20];
  85.   uint16_t BGR = bgr(color);
  86.   for (done = 0, y = 0; y < 320 && !done; y++) {
  87.     for (x = 0; x < 240; x++) {
  88.       //pixel = readxy(x, y);
  89.       pixel = tft.readPixel(x, y);
  90.       if (pixel != BGR) {
  91.         done = 1;
  92.         sprintf(buf, "0x%04X [url=home.php?mod=space&uid=811729]@[/url] %d, %d", pixel, x, y);
  93.         tft.println(buf);
  94.         break;
  95.       }
  96.     }
  97.   }
  98. }
  99. uint8_t aspect;
  100. char *aspectname[] = {
  101.   "PORTRAIT", "LANDSCAPE", "PORTRAIT_REV", "LANDSCAPE_REV"
  102. };
  103. void loop(void) {
  104.   uint16_t iter, color;
  105.   char buf[80];
  106.   aspect = (aspect + 1) & 3;
  107.   tft.setRotation(aspect);
  108.   for (iter = 0; iter < sizeof(colors) / sizeof(uint16_t); iter++) {
  109.     color = colors[iter];
  110.     tft.fillScreen(color);
  111.     tft.setTextColor(WHITE);
  112.     tft.setTextSize(1);
  113.     tft.setCursor(0, 0);
  114.     sprintf(buf, "ID=0x%04X Background=%04X %s",
  115.             tft.readID(), color, aspectname[aspect]);
  116.     tft.println(buf);
  117.     colordump(6 * 6, 0);
  118.     //duffcolor(color);
  119.     delay(400);
  120.   }
  121. }
复制代码


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 16:09:33

  【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之十一:四方向满屏动态字符串

  实验场景图【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1

回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 16:46:06

【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  项目之十二:读取MCUFRIEND UNO shield上的寄存器16位或8位值序列
  实验开源代码:

  1. /*
  2.   【Arduino】168种传感器模块系列实验(资料代码+仿真编程+图形编程)
  3.   实验一百六十五:2.4寸TFT液晶触摸屏 彩屏模块 TFT-LCD 高清真彩显示屏
  4.   项目之十二:读取MCUFRIEND UNO shield上的寄存器16位或8位值序列
  5.   模块直插,引脚用法如下:
  6.   LCD_CS LCD_CD LCD_WR LCD_RD LCD_RST SD_SS SD_DI SD_DO SD_SCK
  7.   Arduino Uno A3 A2 A1 A0 A4 10 11 12 13
  8.   LCD_D0 LCD_D1 LCD_D2 LCD_D3 LCD_D4 LCD_D5 LCD_D6 LCD_D7
  9.   Arduino Uno 8 9 2 3 4 5 6 7
  10. */
  11. //Arduino UNO或Mega 2560作为扩展
  12. #define LCD_RST A4
  13. #define LCD_CS A3
  14. #define LCD_RS A2
  15. #define LCD_WR A1
  16. #define LCD_RD A0
  17. #define LCD_D0 8
  18. #define LCD_D1 9
  19. #define LCD_D2 2
  20. #define LCD_D3 3
  21. #define LCD_D4 4
  22. #define LCD_D5 5
  23. #define LCD_D6 6
  24. #define LCD_D7 7
  25. void setup(){
  26.     Serial.begin(9600);
  27.     while (!Serial) ;
  28.     Serial.println("Read Registers on MCUFRIEND UNO shield");
  29.     Serial.println("controllers either read as single 16-bit");
  30.     Serial.println("e.g. the ID is at readReg(0)");
  31.     Serial.println("or as a sequence of 8-bit values");
  32.     Serial.println("in special locations (first is dummy)");
  33.     Serial.println("");
  34.     lcdInit();
  35.     lcdReset();      //ensures that controller is in default state
  36. //    for (uint16_t i = 0; i < 256; i++) readReg(i, 7, "f.k");
  37.     readReg(0x00, 2, "ID: ILI9320, ILI9325, ILI9335, ...");
  38.     readReg(0x04, 4, "Manufacturer ID");
  39.     readReg(0x09, 5, "Status Register");
  40.     readReg(0x0A, 2, "Get Power Mode");
  41.     readReg(0x0C, 2, "Get Pixel Format");
  42.     readReg(0x61, 2, "RDID1 HX8347-G");
  43.     readReg(0x62, 2, "RDID2 HX8347-G");
  44.     readReg(0x63, 2, "RDID3 HX8347-G");
  45.     readReg(0x64, 2, "RDID1 HX8347-A");
  46.     readReg(0x65, 2, "RDID2 HX8347-A");
  47.     readReg(0x66, 2, "RDID3 HX8347-A");
  48.     readReg(0x67, 2, "RDID Himax HX8347-A");
  49.     readReg(0x70, 2, "Panel Himax HX8347-A");
  50.     readReg(0xA1, 5, "RD_DDB SSD1963");
  51.     readReg(0xB0, 2, "RGB Interface Signal Control");
  52.     readReg(0xB4, 2, "Inversion Control");
  53.     readReg(0xB6, 5, "Display Control");
  54.     readReg(0xB7, 2, "Entry Mode Set");
  55.     readReg(0xBF, 6, "ILI9481, HX8357-B");
  56.     readReg(0xC0, 9, "Panel Control");
  57.     readReg(0xC8, 13, "GAMMA");
  58.     readReg(0xCC, 2, "Panel Control");
  59.     readReg(0xD0, 3, "Power Control");
  60.     readReg(0xD2, 5, "NVM Read");
  61.     readReg(0xD3, 4, "ILI9341, ILI9488");
  62.     readReg(0xD4, 4, "Novatek ID");
  63.     readReg(0xDA, 2, "RDID1");
  64.     readReg(0xDB, 2, "RDID2");
  65.     readReg(0xDC, 2, "RDID3");
  66.     readReg(0xE0, 16, "GAMMA-P");
  67.     readReg(0xE1, 16, "GAMMA-N");
  68.     readReg(0xEF, 6, "ILI9327");
  69.     readReg(0xF2, 12, "Adjust Control 2");
  70.     readReg(0xF6, 4, "Interface Control");
  71. }
  72. void loop() {
  73. }
  74. void printhex(uint8_t val){
  75.     if (val < 0x10) Serial.print("0");
  76.     Serial.print(val, HEX);
  77. }
  78. void readReg(uint16_t reg, uint8_t n, const char *msg){
  79.     uint8_t val8;
  80.     lcdReset();
  81.     lcdSetWriteDir();
  82.     lcdWriteCommand(0xB0);     //Command Access Protect
  83.     lcdWriteData(0x00);        //looks wrong
  84. /*
  85.     lcdWriteCommand(0xF6);
  86.     lcdWriteData(0x01);
  87.     lcdWriteData(0x01);
  88.     lcdWriteData(0x03);
  89. */
  90.     lcdWriteCommand(reg);
  91.     Serial.print("reg(0x");
  92.     printhex(reg >> 8);
  93.     printhex(reg);
  94.     Serial.print(")");
  95.     lcdSetReadDir();
  96.     while (n--) {
  97.         val8 = lcdReadData8();
  98.         Serial.print(" ");
  99.         printhex(val8);
  100.     }
  101.     lcdSetWriteDir();
  102.     Serial.print("\t");
  103.     Serial.println(msg);
  104. }
  105. void lcdInit(){
  106.     pinMode(LCD_CS, OUTPUT);
  107.     digitalWrite(LCD_CS, HIGH);
  108.     pinMode(LCD_RS, OUTPUT);
  109.     digitalWrite(LCD_RS, HIGH);
  110.     pinMode(LCD_WR, OUTPUT);
  111.     digitalWrite(LCD_WR, HIGH);
  112.     pinMode(LCD_RD, OUTPUT);
  113.     digitalWrite(LCD_RD, HIGH);
  114.     pinMode(LCD_RST, OUTPUT);
  115.     digitalWrite(LCD_RST, HIGH);
  116. }
  117. void lcdReset(){
  118.     digitalWrite(LCD_RST, LOW);
  119.     delay(2);
  120.     digitalWrite(LCD_RST, HIGH);
  121.     delay(10);             //允许控制器重新启动
  122. }
  123. void lcdWrite8(uint16_t data){
  124.     digitalWrite(LCD_D0, data & 1);
  125.     digitalWrite(LCD_D1, (data & 2) >> 1);
  126.     digitalWrite(LCD_D2, (data & 4) >> 2);
  127.     digitalWrite(LCD_D3, (data & 8) >> 3);
  128.     digitalWrite(LCD_D4, (data & 16) >> 4);
  129.     digitalWrite(LCD_D5, (data & 32) >> 5);
  130.     digitalWrite(LCD_D6, (data & 64) >> 6);
  131.     digitalWrite(LCD_D7, (data & 128) >> 7);
  132. }
  133. uint16_t lcdRead8(){
  134.     uint16_t result = digitalRead(LCD_D7);
  135.     result <<= 1;
  136.     result |= digitalRead(LCD_D6);
  137.     result <<= 1;
  138.     result |= digitalRead(LCD_D5);
  139.     result <<= 1;
  140.     result |= digitalRead(LCD_D4);
  141.     result <<= 1;
  142.     result |= digitalRead(LCD_D3);
  143.     result <<= 1;
  144.     result |= digitalRead(LCD_D2);
  145.     result <<= 1;
  146.     result |= digitalRead(LCD_D1);
  147.     result <<= 1;
  148.     result |= digitalRead(LCD_D0);
  149.     return result;
  150. }
  151. void lcdSetWriteDir(){
  152.     pinMode(LCD_D0, OUTPUT);
  153.     pinMode(LCD_D1, OUTPUT);
  154.     pinMode(LCD_D2, OUTPUT);
  155.     pinMode(LCD_D3, OUTPUT);
  156.     pinMode(LCD_D4, OUTPUT);
  157.     pinMode(LCD_D5, OUTPUT);
  158.     pinMode(LCD_D6, OUTPUT);
  159.     pinMode(LCD_D7, OUTPUT);
  160. }
  161. void lcdSetReadDir(){
  162.     pinMode(LCD_D0, INPUT);
  163.     pinMode(LCD_D1, INPUT);
  164.     pinMode(LCD_D2, INPUT);
  165.     pinMode(LCD_D3, INPUT);
  166.     pinMode(LCD_D4, INPUT);
  167.     pinMode(LCD_D5, INPUT);
  168.     pinMode(LCD_D6, INPUT);
  169.     pinMode(LCD_D7, INPUT);
  170. }
  171. void lcdWriteData(uint16_t data){
  172.     lcdSetWriteDir();
  173.     digitalWrite(LCD_CS, LOW);
  174.     digitalWrite(LCD_RS, HIGH);
  175.     digitalWrite(LCD_RD, HIGH);
  176.     digitalWrite(LCD_WR, HIGH);
  177.     lcdWrite8(data >> 8);
  178.     digitalWrite(LCD_WR, LOW);
  179.     delayMicroseconds(10);
  180.     digitalWrite(LCD_WR, HIGH);
  181.     lcdWrite8(data);
  182.     digitalWrite(LCD_WR, LOW);
  183.     delayMicroseconds(10);
  184.     digitalWrite(LCD_WR, HIGH);
  185.     digitalWrite(LCD_CS, HIGH);
  186. }
  187. void lcdWriteCommand(uint16_t command){
  188.     lcdSetWriteDir();
  189.     digitalWrite(LCD_CS, LOW);
  190.     digitalWrite(LCD_RS, LOW);
  191.     digitalWrite(LCD_RD, HIGH);
  192.     digitalWrite(LCD_WR, HIGH);
  193.     lcdWrite8(command >> 8);
  194.     digitalWrite(LCD_WR, LOW);
  195.     delayMicroseconds(10);
  196.     digitalWrite(LCD_WR, HIGH);
  197.     lcdWrite8(command);
  198.     digitalWrite(LCD_WR, LOW);
  199.     delayMicroseconds(10);
  200.     digitalWrite(LCD_WR, HIGH);
  201.     digitalWrite(LCD_CS, HIGH);
  202. }
  203. uint8_t lcdReadData8(){
  204.     uint8_t result;
  205.     lcdSetReadDir();
  206.     digitalWrite(LCD_CS, LOW);
  207.     digitalWrite(LCD_RS, HIGH);
  208.     digitalWrite(LCD_RD, HIGH);
  209.     digitalWrite(LCD_WR, HIGH);
  210.     digitalWrite(LCD_RD, LOW);
  211.     delayMicroseconds(10);
  212.     result = lcdRead8();
  213.     digitalWrite(LCD_RD, HIGH);
  214.     delayMicroseconds(10);
  215.     return result;
  216. }
  217. uint16_t lcdReadData16(){
  218.     uint16_t result;
  219.     result = lcdReadData8() << 8;
  220.     result |= lcdReadData8();
  221.     return result;
  222. }
  223. void lcdWriteRegister(uint16_t addr, uint16_t data){
  224.     lcdWriteCommand(addr);
  225.     lcdWriteData(data);
  226. }
复制代码


回复

使用道具 举报

驴友花雕  中级技神
 楼主|

发表于 2021-6-28 16:49:44

实验串口返回情况

【Arduino】168种传感器模块系列实验(165)---2.4寸TFT液晶触...图1
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

为本项目制作心愿单
购买心愿单
心愿单 编辑
[[wsData.name]]

硬件清单

  • [[d.name]]
btnicon
我也要做!
点击进入购买页面
上海智位机器人股份有限公司 沪ICP备09038501号-4

© 2013-2024 Comsenz Inc. Powered by Discuz! X3.4 Licensed

mail