Màn hình TFT Arduino Shield 3.5 inch
Màn hình TFT Arduino Shield 3.5 inch
Màn hình TFT Arduino Shield 3.5 inch
Màn hình TFT Arduino Shield 3.5 inch

Màn hình TFT Arduino Shield 3.5 inch

Theo dõi giảm giá

Giá từ Lazada Lazada

241.000 ₫

243.000 ₫

5.0

1 đánh giá
1.3k lượt bán

Tìm kiếm tương tự

So sánh giá
Tìm thấy 12 nơi bán khác, giá từ 210.000 ₫ - 245.000 ₫
platform
Màn hình lcd tft 2.4 inch tiếp spi

4.3

3 đánh giá
210.000 ₫

Đến nơi bán

Arduino USB Host Shield

5.0

5 đánh giá
210.000 ₫

Đến nơi bán

platform
Màn hình lcd 3.5 inch tft lq035nc111 320x240

5.0

1 đánh giá
229.789 ₫

Đến nơi bán

Xem thêm 7 nơi bán khác

Mô tả sản phẩm

Màn hình TFT Arduino 3.5 inch

Có kích thước màn hình 3.5 inch, với độ phân giải 320 x 480 cho ra những hình ảnh sắc nét sinh động. Màn hình tft 3.5 inch hỗ trợ arduino UNO, Mega2560 bằng cách gắn trực tiếp lên một cách dễ dàng.

THÔNG SỐ KỸ THUẬT:

  • Kích thước màn hình: 3.5 inch
  • Độ phân giải: 320 x 480
  • Điện áp hoạt động: 3.3V – 5V
  • Hỗ trợ Arduino UNO, Mega2560
  • Độ ẩm hoạt động: 60% RH
  • Đèn nền luôn hoạt động
  • Điện áp đèn nền: 3.3V

SƠ ĐỒ MẠCH:

SƠ ĐỒ KẾT NỐI VỚI ARDUINO UNO:

man-hinh-3.5-uno-module-ili-9486

HÌNH ẢNH SẢN PHẨM:

Thư viện:

—————————–CODE THAM KHẢO—————————-

void setup(){randomSeed(analogRead(0));// Setup the LCDmyGLCD.InitLCD();myGLCD.setFont(SmallFont);}void loop(){int buf[478];int x, x2;int y, y2;int r;// Clear the screen and draw the framemyGLCD.clrScr();myGLCD.setColor(255, 0, 0);myGLCD.fillRect(0, 0, 479, 13);myGLCD.setColor(64, 64, 64);myGLCD.fillRect(0, 306, 479, 319);myGLCD.setColor(255, 255, 255);myGLCD.setBackColor(255, 0, 0);myGLCD.print("* Universal Color TFT Display Library *", CENTER, 1);myGLCD.setBackColor(64, 64, 64);myGLCD.setColor(255,255,0);myGLCD.print("", CENTER, 307);myGLCD.setColor(0, 0, 255);myGLCD.drawRect(0, 14, 479, 305);// Draw crosshairsmyGLCD.setColor(0, 0, 255);myGLCD.setBackColor(0, 0, 0);myGLCD.drawLine(239, 15, 239, 304);myGLCD.drawLine(1, 159, 478, 159);for (int i=9; i<470; i+=10)myGLCD.drawLine(i, 157, i, 161);for (int i=19; i<220; i+=10)myGLCD.drawLine(237, i, 241, i);// Draw sin-, cos- and tan-linesmyGLCD.setColor(0,255,255);myGLCD.print("Sin", 5, 15);for (int i=1; i<478; i++){myGLCD.drawPixel(i,159+(sin(((i*1.13)*3.14)/180)*95));}myGLCD.setColor(255,0,0);myGLCD.print("Cos", 5, 27);for (int i=1; i<478; i++){myGLCD.drawPixel(i,159+(cos(((i*1.13)*3.14)/180)*95));}myGLCD.setColor(255,255,0);myGLCD.print("Tan", 5, 39);for (int i=1; i<478; i++){myGLCD.drawPixel(i,159+(tan(((i*1.13)*3.14)/180)));}delay(2000);myGLCD.setColor(0,0,0);myGLCD.fillRect(1,15,478,304);myGLCD.setColor(0, 0, 255);myGLCD.setBackColor(0, 0, 0);myGLCD.drawLine(239, 15, 239, 304);myGLCD.drawLine(1, 159, 478, 159);// Draw a moving sinewavex=1;for (int i=1; i<(478*15); i++){x++;if (x==479)x=1;if (i>479){if ((x==239)||(buf[x-1]==159))myGLCD.setColor(0,0,255);elsemyGLCD.setColor(0,0,0);myGLCD.drawPixel(x,buf[x-1]);}myGLCD.setColor(0,255,255);y=159+(sin(((i*0.7)*3.14)/180)*(90-(i / 100)));myGLCD.drawPixel(x,y);buf[x-1]=y;}delay(2000);myGLCD.setColor(0,0,0);myGLCD.fillRect(1,15,478,304);// Draw some filled rectanglesfor (int i=1; i<6; i++){switch (i){case 1:myGLCD.setColor(255,0,255);break;case 2:myGLCD.setColor(255,0,0);break;case 3:myGLCD.setColor(0,255,0);break;case 4:myGLCD.setColor(0,0,255);break;case 5:myGLCD.setColor(255,255,0);break;}myGLCD.fillRect(150+(i*20), 70+(i*20), 210+(i*20), 130+(i*20));}delay(2000);myGLCD.setColor(0,0,0);myGLCD.fillRect(1,15,478,304);// Draw some filled, rounded rectanglesfor (int i=1; i<6; i++){switch (i){case 1:myGLCD.setColor(255,0,255);break;case 2:myGLCD.setColor(255,0,0);break;case 3:myGLCD.setColor(0,255,0);break;case 4:myGLCD.setColor(0,0,255);break;case 5:myGLCD.setColor(255,255,0);break;}myGLCD.fillRoundRect(270-(i*20), 70+(i*20), 330-(i*20), 130+(i*20));}delay(2000);myGLCD.setColor(0,0,0);myGLCD.fillRect(1,15,478,304);// Draw some filled circlesfor (int i=1; i<6; i++){switch (i){case 1:myGLCD.setColor(255,0,255);break;case 2:myGLCD.setColor(255,0,0);break;case 3:myGLCD.setColor(0,255,0);break;case 4:myGLCD.setColor(0,0,255);break;case 5:myGLCD.setColor(255,255,0);break;}myGLCD.fillCircle(180+(i*20),100+(i*20), 30);}delay(2000);myGLCD.setColor(0,0,0);myGLCD.fillRect(1,15,478,304);// Draw some lines in a patternmyGLCD.setColor (255,0,0);for (int i=15; i<304; i+=5){myGLCD.drawLine(1, i, (i*1.6)-10, 304);}myGLCD.setColor (255,0,0);for (int i=304; i>15; i-=5){myGLCD.drawLine(478, i, (i*1.6)-11, 15);}myGLCD.setColor (0,255,255);for (int i=304; i>15; i-=5){myGLCD.drawLine(1, i, 491-(i*1.6), 15);}myGLCD.setColor (0,255,255);for (int i=15; i<304; i+=5){myGLCD.drawLine(478, i, 490-(i*1.6), 304);}delay(2000);myGLCD.setColor(0,0,0);myGLCD.fillRect(1,15,478,304);// Draw some random circlesfor (int i=0; i<100; i++){myGLCD.setColor(random(255), random(255), random(255));x=32+random(416);y=45+random(226);r=random(30);myGLCD.drawCircle(x, y, r);}delay(2000);myGLCD.setColor(0,0,0);myGLCD.fillRect(1,15,478,304);// Draw some random rectanglesfor (int i=0; i<100; i++){myGLCD.setColor(random(255), random(255), random(255));x=2+random(476);y=16+random(289);x2=2+random(476);y2=16+random(289);myGLCD.drawRect(x, y, x2, y2);}delay(2000);myGLCD.setColor(0,0,0);myGLCD.fillRect(1,15,478,304);// Draw some random rounded rectanglesfor (int i=0; i<100; i++){myGLCD.setColor(random(255), random(255), random(255));x=2+random(476);y=16+random(289);x2=2+random(476);y2=16+random(289);myGLCD.drawRoundRect(x, y, x2, y2);}delay(2000);myGLCD.setColor(0,0,0);myGLCD.fillRect(1,15,478,304);for (int i=0; i<100; i++){myGLCD.setColor(random(255), random(255), random(255));x=2+random(476);y=16+random(289);x2=2+random(476);y2=16+random(289);myGLCD.drawLine(x, y, x2, y2);}delay(2000);myGLCD.setColor(0,0,0);myGLCD.fillRect(1,15,478,304);for (int i=0; i<10000; i++){myGLCD.setColor(random(255), random(255), random(255));myGLCD.drawPixel(2+random(476), 16+random(289));}delay(2000);myGLCD.fillScr(0, 0, 255);myGLCD.setColor(255, 0, 0);myGLCD.fillRoundRect(160, 70, 319, 169);myGLCD.setColor(255, 255, 255);myGLCD.setBackColor(255, 0, 0);myGLCD.print("That's it!", CENTER, 93);myGLCD.print("Restarting in a", CENTER, 119);myGLCD.print("few seconds...", CENTER, 132);myGLCD.setColor(0, 255, 0);myGLCD.setBackColor(0, 0, 255);myGLCD.print("Runtime: (msecs)", CENTER, 290);myGLCD.printNumI(millis(), CENTER, 305);delay (10000);}
Gợi ý hôm nay
Lazada 3 Màu Sắc Giữ Ẩm Kem che khuyết điểm dạng lỏng trang điểm nền kiểm soát dầu Không Thấm Nước bọc hoàn toàn quầng thâm Matte Kem Che Khuyết Điểm Mỹ Phẩm

3 Màu Sắc Giữ Ẩm Kem che khuyết điểm dạng lỏng trang điểm nền kiểm soát dầu Không Thấm Nước bọc hoàn toàn quầng thâm Matte Kem Che Khuyết Điểm Mỹ Phẩm

24.000 ₫
Shopee CHARM TREO HOA BẠC S925 THUẦN KHIẾT HÀNG CHÍNH HÃNG

Charm treo hoa bạc s925 thuần khiết hàng chính hãng

340.000 ₫
Shopee Vòng cổ Vv Ww nơ tím sc vip full box hàng new tháng 7

Vòng cổ Vv Ww nơ tím sc vip full box hàng new tháng 7

490.000 ₫
Shopee Cây cào đất làm vườn 2 đầu 290mm TOTAL THGT979K - làm từ thép carbon, chăm sóc cây, trồng cây, trồng hoa - Tốc độ 247

Cây cào đất làm vườn 2 đầu 290mm total thgt979k - làm từ thép carbon, chăm sóc cây, trồng cây, trồng hoa - tốc độ 247

86.000 ₫
Shopee KhẩuTrang3Dmask

KhẩuTrang3Dmask

100.000 ₫
(1)
Shopee Đồ ngủ hình bò sữa dễ thương

Đồ ngủ hình bò sữa dễ thương

160.000 ₫
Lazada [HCM]Dây phin Mazda 626 1998-2002 dùng mobin FSD7-18-140

Dây phin mazda 626 1998-2002 dùng mobin fsd7-18-140

400.000 ₫
Lazada Giày Cổ Cao Nam Kiểu Dáng Đơn giản Dễ Phối Đồ Trẻ Trung,GiầyThể Thao Nam Hàng Quảng Châu

Giày cổ cao nam kiểu dáng đơn giản dễ phối đồ trẻ trung,giầythể thao nam hàng quảng châu

129.000 ₫
Shopee Kẹp tóc dây ngọc Hàn quốc sang chảnh

Kẹp tóc dây ngọc Hàn quốc sang chảnh

35.000 ₫
Sendo Cốc điều hòa cho hoa lan – (các kích cỡ) Phụ kiện thông minh – tiết kiệm thời gian chăm sóc (Mã SP: cốc điều hòa)

Cốc điều hòa cho hoa lan – Phụ kiện thông minh – tiết kiệm thời gian chăm sóc

9.000 ₫
(1)
Shopee [Freeship] Áo Nỉ Noel Thêu Hình Lớn 🦋 Áo Thun Sweater Christmas Họa Tiết Dáng Rộng 4 Màu 🦋 Giá Tốt

Áo nỉ noel thêu hình lớn 🦋 áo thun sweater christmas họa tiết dáng rộng 4 màu 🦋 giá tốt

331.100 ₫
(1)
Shopee Phi tiêu đầu nam châm an toàn cho mọi lứa tuổi

Phi tiêu đầu nam châm an toàn cho mọi lứa tuổi

51.000 ₫
(1)
Shopee Sục

Sục

825.000 ₫
Shopee Vay

Vay

590.000 ₫
Shopee Áo

Áo

340.000 ₫
Shopee Áo

Áo

330.000 ₫
Shopee Váy xuất

Váy xuất

1.235.000 ₫
Shopee BỘ YẾM SUÔNG TÚI NẮP + ÁO THUN TAY DÀI CỔ CAO SỌC NGANG 170522

Bộ yếm suông túi nắp + áo thun tay dài cổ cao sọc ngang 170522

270.000 ₫
Shopee 🎀🧧 Nơ size nhỏ Trang trí Quả Dưa Tết 2025 - Mâm cũ Quả

🎀🧧 nơ size nhỏ trang trí quả dưa tết 2025 - mâm cũ quả

30.000 ₫
Shopee Mũ Len Dệt Kim Phối Tóc Giả Kiểu Ngắn Thời Trang Mùa Đông Cho Nữ

Mũ len dệt kim phối tóc giả kiểu ngắn thời trang mùa đông cho nữ

476.739 ₫