德源科技 
德源科技德源科技
公司簡介訂購方式匯款確認檔案下載 聯絡我們保固說明訂單查詢討論區
電子郵件:

密碼:

忘記密碼
加入會員
  首頁 | 原廠 Arduino® | 特殊服務設計 | 轉接座及轉接板/麵包板 | 開發板/燒錄器/模擬器 | 相容 For Arudino® 週邊及配件 | OKdo系列 | Saleae 系列 | Adafruit 系列 | ArduCam 系列 | Camera 攝像頭 | ROCK 系列 | Debix系列開發板 | Raspberry Pi 樹莓派 | Banana Pi 香蕉派 | BeagleBone 狗骨頭 | M5Stack系列 | Micro:bit (BBC)系列 | NVIDIA Jetson Nano系列 | Pololu 系列 | Pycom 系列 | Seeed 系列 | Sparkfun 系列 | WeMos 系列 | 傳感器 | Cubieboard/CubieTruck系列 | Firefly 系列 | Microduino系列 | Orange Pi 香橙派 | PCB板 | PLC 系列 | Robot 機器人 | UDOO 系列 | RedBearLab 系列 | LattePanda系列 | LittleBits 系列 | Libelium 系列 | Luxonis 相機系列 | PCduino | RobotElectronics 系列 | MageDok 顯示屏 | LCD/LCM/TFT/LVDC | Dimension Engineer 系列 | 通訊模組 | 影音器材(含轉換器) | 線材/連結器/轉換器 | 測量儀器 | 馬達/馬逹控制器/電源模組 | 其他 | 焊接/維修工具 | IC零件 | LED燈-裝飾燈 | 工作站迷你電腦 mini PC | 擴大器 | 雕刻機 | 電池 | 電腦周邊 | 檢定考套件 | 停售商品
  首頁 » 商品目錄 » PCduino » 03325773
商品搜尋 進階
 |  購物車內容  |  結帳   
商品分類
  配件
Arduino
Pololu
Seeed
Sparkfun
robot-electronics
dimensionengineering
libelium
adafruit
udoo
redbearlab
Arducam
goembed
Saleae
okdo
服務台
公司簡介
退換貨服務
訂購方式
聯絡我們
匯款確認
[<< 前一頁]  瀏覽相同分類產品 2 / 4  [下一頁 >>]
Linksprite原廠pcDuino TFT LCD 觸摸屏模組 Touch LCD Shield
NT$1,150
運費NT$50
條碼03325773
產品說明0

資料下載http://linksprite.com/wiki/index.php5?title=Touch_LCD_Shield

 

Linksprite原廠Touch LCD Shield

Introduction

This is a multifunctional Arduino/Arduino Mega compatible resistive touch screen. It can be used as display device or sketch pad. With a SD card module integrated also on this shield, this shield reserves great room for other expansions to your project.

TFT1.jpg

TFT2.jpg

Features

  • Big screen for easy and comfortable experience
  • Backlight controllable via programming
  • 65535 rich colors display
  • SPI pin-saving communication method
  • Full screen touch active range

Specification

ItemMinTypicalMaxUnitVoltageCurrentLCD Panel SizeView angleResolutionLCD colorBacklight TypeLCD driver ICInterface TypeTouch ScreenActive areaESD contact dischargeESD air dischargeDimensionWeight

4.5 5 5.5 VDC
/ / 250 mA
2.8 inch
60~120 Deg
320x240 /
65k /
LED /
ILI9341 /
SPI /
4-Wire resistive touch screen /
43.2*57.3 mm
±4 KV
±8 KV
72.5x54.7x18 mm
24±2 g

Cautions

  • Don’t press too hard on the screen which might cause display distortion. 
  • Be careful to deposit the fragile screen.

Pins usage on Arduino


Pins Used for TFT Screen Control:
D4: TF_CS, SD card select input pin

D5: TFT_CS, TFT chip select input pin

D6: TFT_D/C, TFT Data/Command control pin

D7: BACKLIGHT, TFT backlight control pin

Pins Used for SPI Interface:
D10: SPI chip select
D11: SPI MOSI pin

D12: SPI MISO pin

D13: SPI serial clock pin

Pins Used for Touch Function:
A0 - Touch Screen Y- input pin.

A1 - Touch Screen X- input pin.

A2 - Touch Screen Y+ input pin.

A3 - Touch Screen X+ input pin.

TFT Programming

The TFT library provides the following Application Programming Interfaces(API). The library makes use of direct access to PORT registers instead of Arduino APIs. This is to increase the speed of communication between MCU and TFT. At present, the library supports Arduino, Arduino Mega (1280 or 2560) and Seeeduino ADK Main Board compatible boards. In Mega the 8bit data port of TFT is distributed to different pins belonging to different ports. This decreases the speed of graphics drawing when compared to Arduino. The choice of port pins are purely based on Arduino / Mega port pin arrangement.

General Functions

 


 

setXY(unsigned int poX, unsigned int poY)

Sets the cursor position to (poX,poY). This function is internally used by other graphics APIs.

setPixel(unsigned int poX, unsigned int poY,unsigned int color)

Sets the (poX,poY) pixel to color color. This function is internally used by other graphics APIs.

Lines

drawLine(unsigned int x0,unsigned int y0,unsigned int x1,unsigned int y1,unsigned int color)

Draws a line from pixel (x0,y0) to pixel (x1,y1) with color color.

drawVerticalLine(unsigned int poX, unsigned int poY,unsigned int length,unsigned int color)

Draws a Horizontal Line of length length with color color starting from pixel (poX,poY).

drawHorizontalLine(unsigned int poX, unsigned int poY,unsigned int length,unsigned int color)

Draws a Vertical Line of length length with color color starting from pixel (poX,poY).

Rectangle

drawRectangle(unsigned int poX, unsigned int poY, unsigned int length,unsigned int width,unsigned int color)

Draws a rectangle starting from (poX,poY) of length length, width width and color color.

fillRectangle(unsigned int poX, unsigned int poY, unsigned int length, unsigned int width, unsigned int color)

Draws a filled rectangle starting from pixel (poX,poY) of length length, width width and color color.

Circle

drawCircle(int poX, int poY, int r,unsigned int color)

Draws a circle at (poX,poY) of radius radius and color color.

fillCircle(int poX, int poY, int r,unsigned int color)

Draws a filled circle at (poX,poY) of radius radius and color color.

Text

drawChar(unsigned char ascii,unsigned int poX, unsigned int poY,unsigned int size, unsigned int fgcolor)

Draws a character starting from (poX,poY) using inbuilt font of size size and with color fgcolor. This function is used by drawString() function.

drawString(char *string,unsigned int poX, unsigned int poY,unsigned int size,unsigned int fgcolor)

Draws a string of text starting from (poX,poY) using inbuilt font of size size and with color fgcolor.

TouchScreen Programming

TFT Touch Shield uses the Adafruit Touch Screen Library. In short, a 4-wire resistive touch screen provides two voltage divider each for X and Y axis. By applying proper voltages for each axis and scanning the ADC values the position of the touch can be detected. These values are always prone to noise. Hence a digital filter is used.

  • To use the TouchScreen Library first create a TouchScreen object by
TouchScreen ts=TouchScreen(XP,YP,XM,YM,300);

Where XP, YP, XM and YM are ADC port pins connected to XPlus, YPlus, XMinus and YMinus pins of Touch Screen. 300 is the resistance across X plates.

  • Read the Raw ADC value using
Point p=ts.getPoint();
  • The Raw ADC value has to be converted to Pixel Co-ordinates. This is done with map function. This mapping changes for v0.9 and v1.0. The demo applications already takes care of this mapping.
p.x=map(p.x,TS_MINX,TS_MAXX,240,0);p.y=map(p.y,TS_MINY,TS_MAXY,320,0);
  • The following sketch demonstrates use of TouchScreen Library. This can also be used to calibrate the touch screen co-ordinates.
  • Compile and upload the sketch.
  • Open serial port monitor and touch the points displayed on the screen.
  • See if the displayed X and Y values are correct. If not, we have to re-calibrate the touch screen coordinates.

How to calibrate the touch screen ?

    • The parameters TS_MINX, TS_MAXX, TS_MINY and TS_MAXY actually decides the extreme ends of the touch screen and actually forms the calibration parameters.
    • The values assigned to these variables are measured ADC values (i.e Raw X, Raw Y) when we touch the extreme diagonal ends of touch screen.
    • Touch points (0,0) and (239,319) and note down Raw X and Raw Y values. For better accuracy, try out many times and find the right value.
      • TS_MINX corresponds to ADC value when X = 0 ;
      • TS_MINY corresponds to ADC value when Y = 0 ;
      • TS_MAXX corresponds to ADC value when X = 240 -1 i.e 239 ;
      • TS_MAXY corresponds to ADC value when Y = 320 -1 i.e 319 ;
    • Change these parameters in the sketch, recompile and upload to Arduino.
    • Repeat the above steps if you still do not get accurate values.

Touch Screen Demo Sketch

#include <stdint.h>#include <TouchScreen.h>#include <TFT.h> //Measured ADC values for (0,0) and (240-1,320-1)//TS_MINX corresponds to ADC value when X = 0//TS_MINY corresponds to ADC value when Y = 0//TS_MAXX corresponds to ADC value when X = 240 -1//TS_MAXY corresponds to ADC value when Y = 320 -1 staticunsignedintTS_MINX,TS_MAXX,TS_MINY,TS_MAXY; //Touch Screen Co-ordinate mapping registerstaticunsignedintMapX1,MapX2,MapY1,MapY2; // For better pressure precision, we need to know the resistance// between X+ and X- Use any multimeter to read it// The 2.8" TFT Touch shield has 300 ohms across the X plate /* Usage: TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300);
Where, XP = X plus, YP = Y plus, XM = X minus and YM = Y minus */
//init TouchScreen port pins. This would be reinitialized in setup() based on the hardware detected.TouchScreen ts=TouchScreen(17,A2,A1,14,300); voidsetup(void){Tft.init();//init TFTinitTouchScreenParameters();//initializes Touch Screen parameters based on the detected TFT Touch Schield hardware //LinesTft.drawLine(0,0,50,50,RED);//draw a 45degree red line point(0,0) to point(50,50)Tft.drawVerticalLine(25,0,50,GREEN);//draw a vertical green line point(25,0) to point(25,50)Tft.drawHorizontalLine(0,25,50,BLUE);//draw a horizontal blue line point(0,25) to point(50,25) //RectangleTft.drawRectangle(50,0,80,50,WHITE);//draw a white rectangle, length=80(X-AXIS), width=50(Y-AXIS)Tft.fillRectangle(0,50,50,80,CYAN);//fill a cyan rectangle, length=50(X-AXIS), width=80(Y-AXIS) //CircleTft.drawCircle(75,75,25,RED);//draw a red circle, circle centre(75,75) radius=25Tft.fillCircle(150,100,50,GREEN);//fill a green circle, circle centre(150,100) radius=50 //TextTft.drawChar('S',0,150,2,RED);//draw a char, start from point(0,150) font size 2(16*16)Tft.drawString("Seeed Studio",8,166,2,GREEN);//draw a char, start from point(8,166) font size 2(16*16)} voidloop(void){// a point object holds x y and z coordinatesPoint p=ts.getPoint(); 
p.x=map(p.x,TS_MINX,TS_MAXX,MapX1,MapX2);p.y=map(p.y,TS_MINY,TS_MAXY,MapY1,MapY2); // we have some minimum pressure we consider 'valid'// pressure of 0 means no pressing!if(p.z>ts.pressureThreshhold){//p.x;//p.y;//p.z;Tft.fillCircle(p.x,p.y,2,GREEN);}} voidinitTouchScreenParameters(){//This function initializes Touch Screen parameters based on the detected TFT Touch Schield hardware if(Tft.IC_CODE==0x5408)//SPFD5408A TFT driver based Touchscreen hardware detected{#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__)ts=TouchScreen(54,A1,A2,57,300);//init TouchScreen port pins#elsets=TouchScreen(14,A1,A2,17,300);//init TouchScreen port pins#endif//Touchscreen parameters for this hardwareTS_MINX=120;TS_MAXX=910;TS_MINY=120;TS_MAXY=950; 
MapX1=239;MapX2=0;MapY1=0;MapY2=319;}else//ST7781R TFT driver based Touchscreen hardware detected{#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__)ts=TouchScreen(57,A2,A1,54,300);//init TouchScreen port pins#elsets=TouchScreen(17,A2,A1,14,300);//init TouchScreen port pins#endif //Touchscreen parameters for this hardwareTS_MINX=140;TS_MAXX=900;TS_MINY=120;TS_MAXY=940; 
MapX1=239;MapX2=0;MapY1=319;MapY2=0;}}
問與答

目前沒有任何商品問答!
本商品上架日期:2013-04-26.
評價
建議購買的商品清單!可以參考看看喔
$阿波羅 STM32F767IGT6 開發板核心板,STM32F7 原子M7(可單獨 接螢幕LCD屏)
$阿波羅 STM32F767IGT6 開發板核心板,STM32F7 原子M7(可單獨 接螢幕LCD屏)
叉車超速報警器(SF-102)專用:油門控制器(機械油控)
叉車超速報警器(SF-102)專用:油門控制器(機械油控)
▽●(特價,現貨)pcDuino開發實戰(首本針對全球流行的創客殺器,pcDui/正版書籍)
▽●(特價,現貨)pcDuino開發實戰(首本針對全球流行的創客殺器,pcDui/正版書籍)
購物車 更多
1 x ●充電器ZE-25 手機平板充電器 快充充電頭 手機大容量 (micro USB頭)
1 x 型號:B0268,Arducam 16MP IMX298 廣角105度 USB攝像頭(不帶麥) CMOS、UVC
1 x *(DFR1021) UNO R3 入門套件 (送教材) For Arduino®
1 x $請先詢價(預購)UDOO BOLT V3 開發板, 嵌入式 V1202B 雙核 4線程@ 2.3ghz
1 x ●型號:B012001,Arducam原廠 Raspberry Pi Camera V2.2 樹莓派 多攝像機適配器模塊
1 x >(停產)朗強 LKV362A SCART轉HDMI視頻轉換器 高清HDMI信號 提升HDTV 1080P Color Eye技
1 x 2.54mm 測試夾 程序燒錄夾 PCB 燒錄夾具 編程器燒錄夾子:單排 2PIN+2.54間距
1 x 樂達L905600 台式防靜電離子風機 離子風扇 內置清潔器
1 x ●Seeeduino Stalker V3.1 開發板 擴展版 底板 (102010070)
1 x WeMos D1 MINI ( ESP-32S ) 迷你ESP32 WiFi +藍牙物聯網
1 x ▽●(特價,現貨)3.2吋 TFT 觸控 LCD 320x240 For Arduino®
1 x BQ76940EVM [T] EVAL BOARD BQ76940 BQ78350
1 x DFR原廠 雙色LED電量顯示模塊 數碼條 跑燈 (FIT466)
1 x Sparkfun系列 美國原裝 LIDAR-Lite v3、Arduino 雷射測距模組 40M (SEN-14032)
1 x ●(雙面)噴錫洞洞板2x8CM,2x8cm 厚度1.6mm 間距2.54mm 實驗板 PCB板 優質玻纖板
1 x (缺貨) 集成電路測試儀 IC測試儀 74 40系列 可判斷邏輯門好壞
1 x Keyes 全彩 RGB模組 三色共陰 (排針接口,不含線) LED模組 發光LED 適用於Arduino microbit
1 x ●Micro SD卡模塊 SPI接口 迷你TF卡讀寫器
1 x PIC 16F676
1 x $詢價LLD-AIO-004 BeagleBone Green + 工業應用模組(含BeagleBone Green)
1 x ADS1115 4路16位AD模塊 -10V~+10V連續測量 電子競賽 測負電壓
2 x ●香蕉派 Banana Pi M2 Berry (BPI-M2 Berry) 四核開發板 全尺寸兼容樹莓派Pi3(適用Pi3全部
1 x *停產,NVIDIA JETSON NANO 開發套件V1 A02 64bit (風扇、外殼、電源、SD卡另購)
1 x DAM-T1200D(A:LoR無線+RS232版本)無線12路繼電器 Lora控制模塊 io控制開關 遠程智能水泵燈
1 x ※(現貨)Mini PC 型號:QBiX-GLKA5005H-A1,嵌入式電腦 嵌入式系統
1 x ●(現貨) 傳感器專用線材:4 Pin 轉 1 Pin 裸線頭 (2.54間距) 電子線 連接線 端子線 4Pin 杜邦線
1 x PIC 16C57C
1 x 08503K(散件/帶電源)DIY套件 DDS信號發生器 / 數字合成 信號發生器
1 x Small e-paper Shield V2(104030019)
1 x *(DFR1020) UNO R3 RFID學習套件 For Arduino®
1 x ESP32-GATEWAY DEV BOARD
2 x 2.13inch NFC e-Paper Eval Kit(套件),2.13寸 無源NFC電子墨水屏 評估套件
1 x 仝麗 AV+S端子轉HDMI 轉換器 模擬視頻轉數字 1080P輸出 支持大屏
1 x $(請先詢價)Seeed 原廠 MDDS30 - Cytron SmartDriveDuo-30 電機驅動器 (10807002
1 x ●1500V USB隔離器 隔離模塊 USB to USB 耦合保護板模塊
1 x ●仝麗 VSSP8 一進八出(1進8出)S端子分配器‧八路音視頻輸出
1 x IMX258 13MP OIS USB Camera (A) USB攝像頭模塊 1300萬像素 光學防抖
1 x SD卡讀寫模組 SPI接口 單片機 For Arduino®
1 x $原廠 PocketBeagle 開發版 (DEV-14919)
1 x >(停產)型號:B0164,Arducam 18MP AR1820HS Color 彩色相機模塊,新款請參考 型號:B0367
2 x &$長技 新款 家用車載逆變器 (純正弦波12V 600W 單數顯 ) 12V轉220V
1 x $請先詢價(預購)UDOO BOLT V8 開發板, 嵌入式 V1605B 四核 8線
1 x 乙級硬體裝修 (4包)
1 x 1000W大功率舞台功放板
1 x NVIDIA® Jetson AGX Orin™ Developer Kit 開發者套件 32GB,最強大的 AI 邊緣計算機
1 x 3D打印機 DRV8825 步進電機驅動器模組 Reprap
1 x [代理] 時立 高清HDMI-Express視頻採集卡HD80E
1 x #&NVIDIA JETSON NANO DEV-KIT-SUB版本(4GB),英偉達開發板-單主板(B01替代款)
1 x ▼●(特價,現貨)ELE-P20/15 5v 圓形微型 直流吸盤式電磁鐵
1 x 3.3V 1A Switching voltage regulator(DE-SW033)
1 x *NVIDIA Jetson Nano Developer Kit 影像辨識套件 桌上型(全配2,不含主板)
1 x 占美無線WIFI 雲終端 雲端機 雲終機V9999/V9980電腦終端機/網絡終端機/共享器
1 x ●(特價*)DFR原廠 I2C 1602 LCD 液晶模組 (TOY046) For Arduino®
1 x ●電流電壓信號發生器 4-20mA/0-10V 信號源 變送器 / 小型電流電壓信號發生器HV300
1 x 150W 多功能電壓電流恆流負載 USB可調 恆流電子負載電瓶電池容量檢測試儀表老化放電器 20A
1 x ●#塑膠外殼
1 x ●(特價*/現貨) Wi-Fi Micro 開發板,RedBearLab 原廠(台灣獨家代理) CC3200 Wi-Fi Mic
1 x ●reComputer NX 版本 【加購價】:電源線 X1條
1 x 型號:EK009,Arducam MT9J003 10MP USB彩色攝像機評估套件+USB2.0(Rev.E)+線
1 x Core51822 nRF51822 藍牙4.0模塊直插封裝
1 x ●micro USB 3.0 公 轉 USB 3.0 母 轉接頭 / Micro B 轉 A 母
1 x (缺貨)2019最新版 原廠SEGGER J-Link EDU - JTAG/SWD Debugger V9 v10 仿真器PG
1 x JST-PH 2-Pin SMT Right Angle Breakout Board(ada1862)
1 x ●香橙派 Orange pi R1 開發板 (全志 H2+ 芯片/256M),雙網口、開源創客、編程單片機
1 x ▼●(特價,現貨)5.5V 160MA 0.88W 太陽能電池板 110x80
1 x >(缺貨)香橙派 全志 H5 Orange Pi zero plus 2 開發板 / 512MB DDR3 (H3升級H5版本)
1 x Voltage Translation Board for pcDuino V2 電平轉換板/轉接板
1 x 2016版CS4398DAC解碼器!軟控AK4118接收帶採樣率顯示!官方線路!
1 x (缺貨) ARM Cortex-M3 STM32F103ZET6 STM32103 LQFP144
1 x W78E52B
1 x (缺貨)Sabertooth 2x12 雙路12A直流電機驅動器 10A電機驅動的升級型號 DRI003
1 x &#●原廠 NodeMCU v2 - Lua based 測試板 ESP8266 WiFi模塊 (113990105)CP210
1 x ●【獨家首賣】DEBIX Model A I/O Board 工業單板計算機 - IO擴展板(EMB-AS-E01)
1 x >(售完,參考新款)NodeMCU-32S V1.2 (CP2102版本),Lua WiFi物聯網開發板 串口WiFi模塊 ES
1 x 08504K(散件/不帶電源)DIY套件 DDS信號發生器 / 數字合成 信號發生器
1 x $請先詢價UDOO NEO FULL開發板 / Cortex-A9核心板 Cortex-M4內存 RAM 1GB
1 x 12V3A (12V發射+5V接收) 輸出大功率 無線供電 無線充電模塊 帶保護帶指示模組
1 x (售完)2017年 樹莓派Pi3B 日本版Japan Raspberry Pi 3B Model B (pi2B 升級版)
1 x DFROBOT原廠 高亮LED模塊 (DFR438)
1 x 全部轉接座及轉接板
1 x ●仝麗 VSP16 1進16出(1進16出)音視頻AV分配器 (110V)
1 x 20A 放電電流(同口/分口) 鋰電池 保護板 大電流 帶均衡功能 逆變器 太陽能路燈專用
1 x 香蕉派開發板配件:Banana PI BPI-R3 金屬散熱片(帶風扇)60x70mm
1 x 2021 新版 香橙派 Orange Pi Lite 開發板 1GB 版本,全志H3芯片
1 x Circuit Setup Energy Meter Board(DEV-16846)
1 x 25W Step down adjustable switching regulator(DE-SWADJ3)
1 x (停產,參考新款B0350)型號:B0195S5MP,Arducam 5MP OV5647 樹莓派用同步立體聲相機套件
1 x #&●(現貨)USB開發板套件:最新 micro:bit V2.21版 編程入門開發 BBC微控制器
1 x ◎37-22 3mm小雙色共陰 傳感器 For Arduino®
1 x 3路 12V 繼電器模塊 帶光耦隔離 兼容3.3V/5V或12V TTL控制信號
1 x ●(10個一標)撥碼開關 2.54mm腳距 (平撥紅色 撥碼1位) 指撥開關 1Pin
1 x #●電壓轉電流模塊 變送器 信號轉換 恆流 (0-15V 轉 4-20mA)
1 x ※(現貨)Mini PC 型號:GA9507-QB4000US,嵌入式電腦 嵌入式系統
1 x ●香橙派 Orange Pi Zero Plus2 開發板(標準/全志H3芯片版本),512MB、開源創客、WIFI+藍牙編程
1 x BeagleBone Black/BB Black 壓克力多色外殼
1 x ▽●(現貨*)Pycom 開發板 LoPy V1.0 - LoRa + WiFi + BLE(ada3339)
1 x ●Goouuu-esp32模塊開發板,無線WiFi+藍牙2合1 雙核CPU核心板 ESP-32S
1 x 25C1024
1 x ▽●(特價,現貨)Raspberry Pi 樹莓派專用 媒體遙控器套件 RPi做家庭影院的最實用配件
1 x 型號:B0031,Arducam原廠 OV5647樹苺派攝像頭 1/4寸 M12 焦距4mm 56度視野
1 x 送電源 Cubieboard 3 雙核A20開發板 Cubietruck 2GB DDR3 Cortex™-A7
1 x (DFR016) MEGA ProtoShield 散件 MEGA原型開發板 For Arduino® 兼容
1 x 台灣代理 購買有保障 欣寶 SM206E-solar 可見光功率計 太陽能功率計
1 x 型號:EK017,Arducam 18MP AR1820HS USB攝像機評估套件,彩色攝像機+USB2.0(E板)+線
1 x AT89C51-24PC
1 x ●(2個)蘋果 MICRO SIM卡外接延長線:外接 普通SIM卡 轉 microSIM卡(反方向) 大卡 轉 中卡
1 x #&●最新 Raspberry Pi 4 B (是新版Pi4B) 2GB內存 V1.5版 type-C (單板)
1 x Kitronik MI:power Board V2(DEV-17852)
1 x 型號:B003504(IR-CUT攝像頭(帶補光燈),Arducam NOIR 5MP OV5647 ,適用於日光和夜視、樹莓派
1 x FPGA用128X64點陣型LCD(藍光)
1 x >(停產*)B0263,OV9281 單色全局快門 1MPx2 雙鏡頭相機模塊 ,適用樹莓派、Nvidia
2 x ●4inch Resistive Touch LCD / 4寸 彩色IPS顯示屏 電阻觸摸 480x800
1 x 仝麗 S端子影音切換器 S端子4切1 4x1 S端子共享器 4口 4進1出
1 x ●朗強 LKV378 HDMI光纖傳輸(單模單纖SC)
1 x TPA3116 PBTL數字功放板(無藍牙版本),100W*2 立體聲 D類功放 藍牙5 功放板 無衝擊
1 x ●(2個) NANO SIM卡外接延長線:最小卡SIM卡延長線 (反方向) NanoSIM 轉 外接SIM 小轉大
1 x 仝麗 VSP12(2) 二進十二出(2進12出)音視頻AV分配器‧可輸入的AUDIO信號
1 x 【升級v2版】前蘇聯IN-14輝光管 電子管 時鐘 超越QS18-12 增加開關機功能、蜂鳴器模式(O4-4673)
1 x JETSON-IO-BASE-A,Jetson Nano 擴展板 底板(核心板、散熱風扇另購)
1 x ●小卡延長線SIM TF SD二合一改卡卡貼 / 橫向 外接NANO小卡 轉 Nano SIM小卡(小卡轉小卡)
1 x ●E22-400T30S Lora 無線傳輸模組+擴展板 SX1262 1268 測試套件(E22-400TBH-01)單組
1 x AdaFruit Circuit Playground Express 模組 (ada3333)
1 x 4.2寸 無源NFC電子墨水屏 無須電池無線供電&刷圖
1 x *2相步進電機驅動器2.5A128細分FMD2725A,THB7128,STK682-010
1 x LID+NET-1024D(雙網口/帶屏)ArtNet控制器 Art-Net雙向 傳輸網絡 DMX512控台 Wifi控制
1 x ATMEGA16L-8PI
1 x Seeed XIAO (SAMD21)- Arduino 微控制器 Cortex M0+(102010328)
1 x 雲端機 雲終機 電腦雲終端機24位元 WINCE6.0 800M主頻 RAM、FLASH達到128M
1 x *FTDI Basic 下載器 USB to TTL (DFR571)For Arduino®
1 x SPF原廠 Machine Learning @ Home Kit for NVIDIA Jetson Nano(-18157)
1 x DFROBOT原廠 基礎焊接套裝 帶收藏包 KIT077
1 x HANTEK HT8050 (50MHz) 高壓隔離探頭 差分探頭 130V 1300V
1 x PIC 16F54
1 x &【加購品】:導軌底座、底殼,電流模組 過電流保護 等專用模組可加購
1 x Sparkfun原廠 ProtoShield for Arduino Pro Mini(DEV-09709)
1 x 睿智 高速串行AD/DA模塊(不帶線)串行通信,ADC轉換模塊 模數轉換 TLC549C、TLC5615 
1 x ●DL24 180W 數顯電子負載電壓電流表電池容量功率老化放電器usb檢測試儀
1 x ●仝麗 DSP6 一進六出(1進6出)三色差分配器
2 x 香橙派 全志 win plus Orange pi 開發板
1 x ESP-07 ESP8266串口WIFI 遠程無線控制WIF模塊
1 x ▼●(特價,現貨)DIY專用連接線 1.25mm 轉 2.54mm 粉塵 專用線 PMS5003 PMS7003 PMS300
1 x Solar Panel (6V 5W) 156單晶矽電池片 太陽能板
NT$102,214,499
查詢訂單狀態
 
請輸入您的訂單編號
商品通知狀態 更多
通知Linksprite原廠pcDuino TFT LCD 觸摸屏模組 Touch LCD Shield
更新時通知我
推薦給朋友
 
推薦這個商品給朋友

聯絡方式:手機:0933807110 或 0968222607
E-mail:[email protected](主要信箱) & [email protected](次要) & [email protected] & [email protected] & [email protected]