{{ 'fb_in_app_browser_popup.desc' | translate }} {{ 'fb_in_app_browser_popup.copy_link' | translate }}

{{ 'in_app_browser_popup.desc' | translate }}

商品諮詢報價|歡迎加入@LINE

你的購物車是空的
{{ (item.variation.media ? item.variation.media.alt_translations : item.product.cover_media.alt_translations) | translateModel }} {{ (item.variation.media
                    ? item.variation.media.alt_translations
                    : item.product.cover_media.alt_translations) | translateModel
                }}
{{ 'product.bundled_products.label' | translate }}
{{ 'product.bundle_group_products.label' | translate }}
{{ 'product.buyandget.label' | translate }}
{{ 'product.gift.label' | translate }}
{{ 'product.addon_products.label' | translate }}
{{item.product.title_translations|translateModel}}
{{ field.name_translations | translateModel }}
  • {{ childProduct.title_translations | translateModel }}

    {{ getChildVariationShorthand(childProduct.child_variation) }}

  • {{ getSelectedItemDetail(selectedChildProduct, item).childProductName }} x {{ selectedChildProduct.quantity || 1 }}

    {{ getSelectedItemDetail(selectedChildProduct, item).childVariationName }}

{{item.variation.name}}
{{item.quantity}}x NT$0 {{ item.unit_point }} 點
{{addonItem.product.cover_media.alt_translations | translateModel}}
{{ 'product.addon_products.label' | translate }}
{{addonItem.product.title_translations|translateModel}}
{{addonItem.quantity}}x {{ mainConfig.merchantData.base_currency.alternate_symbol + "0" }}
GP2Y0A710K0F 紅外線距離感測器(含線) 夏普 測距 Arduino

GP2Y0A710K0F 紅外線距離感測器(含線) 夏普 測距 Arduino

貨號:SSI0048


NT$410
{{shoplineProductReview.avg_score}} {{'product.product_review.stars' | translate}} | {{shoplineProductReview.total}} {{'product.product_review.reviews' | translate}}
{{amazonProductReview.avg_rating}} {{'product.product_review.stars' | translate}} | {{amazonProductReview.total_comment_count}} {{'product.product_review.reviews' | translate}}
數量 組合數量
加入追蹤清單
一次最大商品購買數量限制為 99999
該數量不適用,請填入有效的數量。
售完

商品存貨不足,未能加入購物車

您所填寫的商品數量超過庫存

{{'products.quick_cart.out_of_number_hint'| translate}}

{{'product.preorder_limit.hint'| translate}}

每筆訂單限購 {{ product.max_order_quantity }} 件

現庫存只剩下 {{ quantityOfStock }} 件

若想購買,請聯絡我們。
加入追蹤清單
商品描述
了解更多
送貨及付款方式
顧客評價

【產品簡介】


夏普製造的紅外線接近感測器,使用5PIN JST接頭,贈連接線。適用如3C、娛樂等產品開發應用。 


【產品規格】


  • 電壓:5V
  • 距離:100cm~550cm
  • 訊號:類比
  • 尺寸:58×17.6×22.5 mm


Arduino 範例碼
--------------------------------------------------------------------------

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
Sharp GP2Y0A710K0F infrared proximity sensor (#28999)
Collects an average of five readings from the sensor and displays the
resulting value about every half second.
See the Sharp_GP2Y0A710KOF_Simple demonstration for additional usage notes,
including connection diagram.
This example code is for the Arduino Uno and direct compatible boards, using the
Arduino 1.0 or later IDE software. It has not been tested, nor designed for, other
Arduino boards, including the Arduino Due.
 
*/
 
const int irSense = A0; // Connect sensor to analog pin A0
int distance = 0;
 
void setup() {
Serial.begin(9600); // Use Serial Monitor window
}
 
void loop() {
Serial.println(irRead(), DEC); // Call irRead function to read sensor
// Print value in Serial Monitor
delay(250); // Wait another 1/4 second for the next read
// (Note: Because of delays built into the
// irRead function the display of values will
// be slower than in the SharpGP2Y0A21_Simple
// sketch
}
 
// Take multiple readings, and average them out to reduce false readings
int irRead() {
int averaging = 0; // Holds value to average readings
 
// Get a sampling of 5 readings from sensor
for (int i=0; i<5; i++) {
distance = analogRead(irSense);
averaging = averaging + distance;
delay(55); // Wait 55 ms between each read
// According to datasheet time between each read
// is -38ms +/- 10ms. Waiting 55 ms assures each
// read is from a different sample
}
distance = averaging / 5; // Average out readings
return(distance); // Return value
}

-------------------------------------------------------------------------- 

【文件下載】


這個商品沒有更多資訊。

送貨方式

  • 郵寄掛號 (未滿一千元須加運費60元;會員滿千免運)
  • 順豐速運 (運費100元)
  • 7-11 取貨付款 (運費60元)
  • 7-11 純取貨 (運費60元)
  • 全家 取貨付款 (運費60元)
  • 全家 純取貨 (運費60元)
  • 面交自取

付款方式

  • 銀行轉帳/ATM (請於3日內匯款完成)
  • 信用卡 (金額需要滿三千元才能使用)
  • 全家 取貨付款
  • 7-11 取貨付款
  • 面交付款
{{'product.product_review.no_review' | translate}}