welcome iCShop!     服務時間:週一 ~ 週五 9:00~12:00 / 13:00~17:00
減價5
AM2320 高精度數字溫濕度感測器
AM2320 高精度數字溫濕度感測器
AM2320 高精度數字溫濕度感測器
AM2320 高精度數字溫濕度感測器

AM2320 高精度數字溫濕度感測器

NT$ 8580


產品貨號

368030200189

品牌

原廠貨號


數量

  庫存量:17

運送方式

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

商品簡介

AM2320數字溫溼度感應器是一款含有己校準數字訊號匯出的溫溼度復合型感應器。釆用專屬的溫溼度採集技​​術,確保產品具有極高的可靠性與卓越的長期穩定性。感應器包括一個電容式感溼元件和一個高精度集成測溫元件,並與一個高效能微處理器相連線。該產品具有品質卓越、超快回應、抗干擾能力強、性價比極高等優點。
AM2320 通訊方式採用單匯流排、標準I2C兩種通訊方式。標準單匯流排介面,使系統集成變得簡易快捷。超小的體積、極低的功耗,訊號傳送距離可達20米以上,使其成為各類應用甚至最為苛刻的應用場合的最佳選取。 I2C通訊方式釆用標準的通訊時序,用戶可直接掛在I2C通訊匯流排上,無需其餘布線,使用簡單。兩種通訊方式都釆用直接匯出經溫度補償後的溼度、溫度及校驗CRC等數字資訊,用戶無需對數字匯出進行二次計算,也無需要對溼度進行溫度補償,便可得到準確的溫溼度資訊。兩種通訊方式可自由切換,用戶可自由選取,使用方便,應該網域廣泛。產品為4引線,連線方便,特殊封裝形式可根據用戶需求而提供。

產品特色

  • 超小體積
  • 超性價比
  • 超低電壓工作
  • 卓越的長期穩定性
  • 標准I2C及單匯流排匯出
商品規格
  • 測量範圍:溫度:-40~+80℃ 溼度:0 ~99.9 %RH
  • 精度(25℃環境下) :
    • 溫度:±0.5 ℃ 溼度:±3%RH (10 ... 90 %RH)
    • 解析度:溫度:0.1℃ 溼度:0.1 %RH
    • 衰減值:溫度:<0.1℃/年 溼度:<1%RH/年
  • 感應器類別:
    • 溫度:電阻式感應器 溼度:電容式感應器
    • 回應時間:溫度:5s 溼度: 5s 1/e(63%)
    • 工作溫度範圍:-40 ~+80 °C
    • 電源:DC:3.1~5.5V
    • 匯出訊號:單匯流排/IIC訊號
    • 外殼材料:PC塑料
    • 重量:0.5g


如何查詢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
}
出貨清單
  • AM2320 高精度數字溫濕度感測器 x 1