welcome iCShop!     服務時間:週一 ~ 週五 9:00~12:00 / 13:00~17:00
Grove - Barometer 高精度 氣壓感測器模組 i2c【限量1個】

停售

Grove - Barometer 高精度 氣壓感測器模組 i2c【限量1個】

停售

Grove - Barometer 高精度 氣壓感測器模組 i2c【限量1個】

停售

Grove - Barometer 高精度 氣壓感測器模組 i2c【限量1個】
Grove - Barometer 高精度 氣壓感測器模組 i2c【限量1個】
Grove - Barometer 高精度 氣壓感測器模組 i2c【限量1個】

Grove - Barometer 高精度 氣壓感測器模組 i2c【限量1個】

NT$ 此商品已停售


產品貨號

368030800877

品牌

原廠貨號

101020068

數量


運送方式

7-11取貨付款 郵寄(單一運費) 宅配 宅配貨到付款 外島郵寄 順豐快遞 順豐快遞貨到付款

商品簡介

該Grove - 氣壓計(高精度)感測器採用HP206C高精度晶片,可檢測氣壓,高度計和溫度。可以廣泛測量300mbar〜1200mbar的壓力,超高分辨率模式的超高精度為0.01mbar(0.1m),晶片僅接受1.8V至3.6V的輸入電壓。然而,加上外部電路,該模組與3.3V和5V兼容。因此,它可以在Arduino / Seeeduino或Seeeduino Stalker上使用,無需修改。它的設計是通過I2C總線直接連接到微控制器。

商品規格
  • 數字二線(I2C)接口
  • 基於命令的閱讀,補償(可選)
  • 可編程事件和中斷控制
  • 全數據補償
  • 寬氣壓範圍
  • 靈活的電源電壓範圍
  • 超低功耗
  • 高度分辨率降至0.01米
  • 包括溫度測量
尺寸

140mm x 85mm x 10.6mm

重量

G.W 8g

電池

不含電池

下載文件

Documents:

如何查詢I2C位址

操作流程

STEP 1. 將欲查詢的模組連接至Arduino UNO(附圖為腳位參考,實際請比對商品標示接線)

STEP 2. 開啟Arduino IDE並新增檔案

STEP 3. 貼入教學下方的範例文件,並上傳到Arduino UNO,即會開始掃描I2C位址

STEP 4. 開啟序列埠監控視窗,即可取得I2C位址

I2C掃描範例程式

/ ---------------------------------------------------------------- /
// Arduino I2C Scanner
// Re-writed by Arbi Abdul Jabbaar
// Using Arduino IDE 1.8.7
// Using GY-87 module for the target
// Tested on 10 September 2019
// This sketch tests the standard 7-bit addresses
// Devices with higher bit address might not be seen properly.
/ ---------------------------------------------------------------- /
#include //include Wire.h library
void setup()
{
Wire.begin(); // Wire communication begin
Serial.begin(9600); // The baudrate of Serial monitor is set in 9600
while (!Serial); // Waiting for Serial Monitor
Serial.println("\nI2C Scanner");
}
void loop()
{
byte error, address; //variable for error and I2C address
int nDevices;
Serial.println("Scanning...");
nDevices = 0;
for (address = 1; address < 127; address++ )
{
// The i2c_scanner uses the return value of
// the Write.endTransmisstion to see if
// a device did acknowledge to the address.
Wire.beginTransmission(address);
error = Wire.endTransmission();
if (error == 0)
{
Serial.print("I2C device found at address 0x");
if (address < 16)
Serial.print("0");
Serial.print(address, HEX);
Serial.println(" !");
nDevices++;
}
else if (error == 4)
{
Serial.print("Unknown error at address 0x");
if (address < 16)
Serial.print("0");
Serial.println(address, HEX);
}
}
if (nDevices == 0)
Serial.println("No I2C devices found\n");
else
Serial.println("done\n");
delay(5000); // wait 5 seconds for the next I2C scan
}
出貨清單
  • Grove - Barometer 高精度 氣壓感測器模組 i2c x 1