{{ 'fb_in_app_browser_popup.desc' | translate }} {{ 'fb_in_app_browser_popup.copy_link' | translate }}
{{ 'in_app_browser_popup.desc' | translate }}
{{word('consent_desc')}} {{word('read_more')}}
{{setting.description}}
價格均含稅,下單享優惠!歡迎大量採購,由專人提供專案報價。
{{ childProduct.title_translations | translateModel }}
{{ getChildVariationShorthand(childProduct.child_variation) }}
{{ getSelectedItemDetail(selectedChildProduct, item).childProductName }} x {{ selectedChildProduct.quantity || 1 }}
{{ getSelectedItemDetail(selectedChildProduct, item).childVariationName }}
產品貨號:368030200716
區號:Kd02-01-C01
品牌:seeed
原廠貨號:103030000
全店,滿千免運優惠(限郵寄和超商純取貨)
商品存貨不足,未能加入購物車
您所填寫的商品數量超過庫存
{{'products.quick_cart.out_of_number_hint'| translate}}
{{'product.preorder_limit.hint'| translate}}
每筆訂單限購 {{ product.max_order_quantity }} 件
現庫存只剩下 {{ quantityOfStock }} 件
Arduino Uno 是迄今為止最受歡迎的 Arduino 板,但是當您的專案需要大量感測器或 LED 並且使傳輸線一團糟時,有時會令人沮喪。 創建 Base Shield 的目的是幫助您擺脫麵包板和傳輸線。 借助板上豐富的 Grove 連接器,您可以方便地將所有 Grove 模組添加到 Arduino Uno! Base Shield V2 的引腳排列與 Arduino Uno R3 相同。
16 個板載 Grove 插座,包括 A0~A3為4個模擬插座,D2~D8為7個數位插座,UART插座,4個I2C插座。 除了豐富的 Grove插座外,您還可以在板上看到一個 RST 按鈕、一個LED 綠色指示電源 、ICSP 引腳、一個撥動開關和四排引腳。
尺寸(mm): 69 x 53 x 23
重量: G.W 40g
兼容版本
Base Shield V2 的引腳與 Arduino Uno R3相同,不過 Arduino Uno 並不是與 Base Shield V2 兼容的主板,以下列出確認可以與Base Shield V2 一起使用的主板:
腳位圖
硬體
軟體
const int button = 2; // connect a button void setup() pinMode(button, INPUT); //set button as an INPUT device pinMode(buzzer, OUTPUT); //set void loop() int btn = digitalRead(button); //read the status of the button digitalWrite(buzzer, btn); |