





Grove – Ultrasonic Ranger 超音波測距模組 距離探測傳感器 seeed
NT$190 NT$140 未稅
Grove – Ultrasonic Sensor是一個非接觸式的距離探測模組。他的工作頻率在42KHz,適合用於中距離或近距離的探測。該模組具有超聲波發射器和超聲波接收器,因此您可以將其視為超聲波收發器。熟悉聲納,當發射器產生的40KHz超聲波遇到物體時,聲波將被發射回去,接收器可以接收反射的超聲波。
尚有庫存
- 商品說明
商品說明
Grove – Ultrasonic Ranger 超音波測距模組 產品介紹
是一種利用超聲波測量距離的超聲波感測器。它的尺寸可以從3厘米到350厘米,精度可達2毫米。它 是一個完美的ü ltrasonic 用於距離測量,超聲波探測器。
與傳統的超聲波模組HC-SR04相比,Grove – 超聲波距離感測器集成了單片機,發送信號和接收信號通過時分複用共用一個引腳,因此只佔用一個I / O引腳。另一個區別是HC-SR04僅支持5v電壓,而Grove – 超聲波距離傳感器支持5v和3.3v。我們知道,Raspberry pi I / O僅支持3.3v。因此,Grove – 超聲波距離傳感器可以直接連接到Raspberry Pi的I / O,但HC-SR04需要使用電壓轉換電路。
Grove – 超聲波距離感測器與HC-SR04
更重要的是,我們為Arduino,Python和Codecraft提供完整的文檔,以便您可以輕鬆地使用Grove – 超聲波距離感測器與Arduino和 Raspberry pi。寬電壓範圍,單I / O引腳,即插即用Grove連接器。
產品規格
- 3.3v / 5v兼容,寬電壓等級:3.2v~5.2v
- 工作電流:8毫安
- 只需要3個引腳,節省了I / O資源
- 測量範圍寬:3cm~350cm
- 易於使用:Grove連接器,即插即用
- 精度: 1厘米
硬件概述
應用示例
這裡我們演示如何使用Grove – Ultrasonic Ranger來獲得距離信息,並打印到Grove – Serial LCD上。
如上圖所示,將Serial LCD連接到D4/D5接口,Ultrasonic Ranger連接到D7口。然後你需要從github上下載我們提供的Ultrasonic Ranger庫文件和用到的1Serial LCD庫文件,對於非Arduino自帶的庫文件,你需要將下載的庫文件安裝到Arduino的Library中,具體安裝步驟請參考wiki首頁的”如何安裝庫文件”課題。安裝完成後,通過路徑:File->Examples->UltrasonicRanger->examples->UltraDisOnSeeedSerialLcd打開代碼並上傳。
/************************************************* **************************/ // Function: Measure the distance to obstacles in front and display the // result on seeedstudio serialLcd. Make sure you installed the // serialLCD, SofewareSerial and Ultrasonic library. // Hardware: Grove - Ultrasonic Ranger, Grove - Serial LCD // Arduino IDE: Arduino-1.0 // Author: LG // Date: Jan 17,2013 // Version: v1.0 modified by FrankieChu // by www.seeedstudio.com /************************************************* ****************************/ #include <SoftwareSerial.h> #include <SerialLCD.h> #include "Ultrasonic.h" SerialLCD slcd(4,15); Ultrasonic ultrasonic(7); void setup() { slcd.begin(); } void loop() { long RangeInCentimeters; RangeInCentimeters = ultrasonic.MeasureInCentimeters(); delay(150); slcd.clear(); slcd.setCursor(0,0); slcd.print("The distance:"); slcd.setCursor(0,1) ; slcd.print(RangeInCentimeters,DEC); slcd.setCursor(5,1) ; slcd.print("cm"); }
在參考資料部分有這個demo的視頻教程,供你參考。
出貨清單
- Grove – Ultrasonic Distance Sensor x1
- Grove連接線 x1
Documents
Grove – Ultrasonic Distance Sensor
The Grove – Ultrasonic Distance Sensor is an ultrasonic transducer that utilizes ultrasonic waves to measures distance. It can measure from 3cm to 350cm with the accuracy up to 2mm. It is a perfect ultrasonic module for distance measurement, proximity sensors, and ultrasonic detector.
This module has an ultrasonic transmitter and an ultrasonic receiver so you can consider it as an ultrasonic transceiver. Familiar with sonar, when the 40KHz ultrasonic wave generated by the transmitter encounters the object, the sound wave will be emitted back, and the receiver can receive the reflected ultrasonic wave. It is only necessary to calculate the time from the transmission to the reception, and then multiply the speed of the sound in the air(340 m/s) to calculate the distance from the sensor to the object.
Compared with traditional ultrasonic modules HC-SR04, the Grove – Ultrasonic Distance Sensor integrates a single-chip microcomputer, and the transmitting signal and the receiving signal share one pin by time division multiplexing, so only one I/O pin is occupied. Another difference is that HC-SR04 only supports 5v voltage, while Grove – Ultrasonic Distance Sensor supports 5v and 3.3v. As we know, the Raspberry pi I/O only supports 3.3v. Therefore, Grove – Ultrasonic Distance Sensor can be directly connected to the I/O of the Raspberry Pi, but HC-SR04 needs to use a voltage conversion circuit.
What’s more, we provide full documents and libraries for Arduino, Python, and Codecraft so that you can use the Grove – Ultrasonic Distance Sensor with Arduino and Raspberry pi easily. Wide voltage range, single I/O pin, plug and play Grove connector, we try our best to make this module easier to use and reduce your work. This is exactly the philosophy of Grove: simple is the best. We hope you like it.
Features
- 3.3v / 5v compatible, wide voltage level: 3.2v~5.2v
- Only 3 pins needed, save I/O resources
- Wide measurement range: 3cm ~ 350cm
- Easy to use: grove connector, plug and play
Applications
- Distance measurement
- Ultrasonic detector
- Proximity alarm
- Smart car
相關商品
-
Grove – Gas Sensor(MQ2) 煙霧氣體感測器 seeed
0 滿分 5 分Grove – Gas Sensor MQ2 氣體感測器模組能檢測家庭或工業區域的氣體洩漏,檢測的氣體包括異丁烷,液化石油氣,甲烷,乙醇,氫氣,煙霧等。感測器的回應速度快,便於實際的測量。通過板上的電位器調整輸出精度。
NT$257NT$220 未稅 -
Grove – GPS Module 衛星模組 適用於 Arduino 與 Raspberry Pi
0 滿分 5 分Grove – GPS模組是一款低成本及可程式設計的GPS模組,可用於手持設備GPS資料的採集。模組採用串口通信,可通過串口進行資料的讀取。它設有一個50通道的u-blox 5定位引擎,首次定位時間(TTFF)小於1s。跟蹤和採集的靈敏度均達到-160dBm,適用於個人導航及位置服務的專案。
NT$857NT$680 未稅 -
Grove – Alcohol Sensor 酒精感測器 seeed
0 滿分 5 分酒精感測器(傳感器)為酒精專用檢測半導體傳感器。它具有良好的靈敏度和回應速度快的特性,本模組適用用於開發便攜式酒精檢測系統。
NT$286NT$220 未稅 -
Grove – Air quality sensor v1.3 空氣品質感測器模組
0 滿分 5 分主要可以監測的氣體是一氧化碳,醇,丙酮,稀釋劑,甲醛等輕微毒性氣體。本模組兼容 5V和3.3V電源。
NT$300NT$200 未稅 -
Grove – Gas Sensor(MQ5) 氣體感測器 Seeed
0 滿分 5 分可檢測液化石油氣,天然氣,城鎮煤氣等。基於其快速響應時間,測量可以盡快進行。且其靈敏度也可以通過電位器來進行調節。
NT$276NT$220 未稅 -
Grove – Gas Sensor(MQ3) 酒精濃度 氣體 感測器模組 seeed
0 滿分 5 分它可以檢測酒精,汽油,甲烷,己烷,液化石油氣,CO 其感測速度與回應的非常靈敏快速。也靈敏度可以由電位進行調整。
NT$362NT$240 未稅 -
Grove – Dust Sensor(PPD42NS)細懸浮微粒 pm2.5 粉塵感測器 seeed原廠
0 滿分 5 分NT$476NT$340 未稅 -
Grove – Fingerprint Sensor 光學指紋感測器模組 指紋建檔/識別
0 滿分 5 分指紋感測器模組通過光學檢測,識別輸入的指紋是否和已經建檔錄存的指紋數據統一。本指紋識別感測器採用高性能的DSP晶片進行圖片渲染、計算、識別、搜索。你也可以直接錄存新的指紋,最多可以錄入162個。當傳感器工作時,紅色LED開始閃爍。適合用來做指紋鎖等項目。
NT$1,667NT$1,300 未稅 -
Grove – UV Sensor UV 紫外線感測器 seeed原廠
0 滿分 5 分NT$457NT$300 未稅 -
Grove-Sound Sensor 聲音感測器
0 滿分 5 分聲音感測模組是一個麥克風元件,它可以用於檢測偵測環境中的聲音強度。而偵測到的資料輸出的值可以由電位進行調整。
NT$238NT$180 未稅