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

{{ 'in_app_browser_popup.desc' | translate }}

價格均為含稅價,滿1000元享免運優惠!歡迎公司及學校機關團體大量採購, 由專人提供專案報價。

SGP30 Air Quality Sensor Breakout 氣體感測器 (VOC and eCO2)

SGP30 Air Quality Sensor Breakout 氣體感測器 (VOC and eCO2)

產品貨號:368031001486
區號:Pe04-15
品牌:
原廠貨號:3709


全店,滿千郵寄超商純取免運優惠

NT$855
NT$798
{{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}}
交期為4~10個工作天(不含例假日)
數量 組合數量
一次最大商品購買數量限制為 99999
該數量不適用,請填入有效的數量。
售完

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

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

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

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

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

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

若想購買,請聯絡我們。
商品描述
送貨及付款方式
商品描述
商品簡介

SGP30 多像素氣體感測器是一款 MOX 氣體感測器,讓您輕鬆呼吸。 這是一款非常精細的空氣質量感測器,具有 I2C 接口和完全校準的輸出信號,測量值內的典型精度為 15%。 SGP 在一個晶片上結合了多個金屬氧化物感測元件,以提供更詳細的空氣質量信號。
這是一種氣體感測器,可以檢測各種揮發性有機化合物 (VOC) 和 H2,用於室內空氣質量監測。 當連接到您的微控制器(運行我們的庫代碼)時,它將通過 I2C 返回總揮發性有機化合物 (TVOC) 讀數和等效的二氧化碳讀數 (eCO2)。
SGP30 有一個“標準”熱板 MOX 感測器,以及一個控制板電源的小型微控制器,讀取模擬電壓,跟踪基線校準,計算 TVOC 和 eCO2 值,並提供一個 I2C 接口來讀取 . 與 CCS811 不同,該感測器不需要 I2C 時鐘延長。
這部分將測量百萬分之 400 至 60,000 (ppm) 範圍內的 eCO2(等效計算二氧化碳)濃度和十億分之 60,000 (ppb) 範圍內的 TVOC(總揮發性有機化合物)濃度。

請注意,該感測器與所有 VOC/氣體感測器一樣,具有可變性,為了獲得精確測量,您需要根據已知來源對其進行校準! 也就是說,對於一般環境感測器,它會讓您對趨勢比較有一個很好的理解。 SGP30 確實具有內置校準功能,請注意,eCO2 是根據 H2 濃度計算的,它不是供實驗室使用的“真正”CO2 感測器。
該感測器的另一個不錯的元素是能夠設置濕度補償以獲得更高的精度。 需要外部濕度感測器,然後通過 I2C 將 RH% 寫入感測器,以便更好地計算 TVOC/eCO2 值。
表面貼裝感測器焊接在 STEMMA QT 外形的定制 PCB 上,使其易於連接。 兩側的 STEMMA QT 連接器與 SparkFun Qwiic I2C 連接器兼容。 這允許您在開發板和 SGP30 之間進行無焊連接,或使用兼容電纜將其與各種其他感測器和附件鏈接。
此商品已經將所有引腳斷開到標準接頭並添加 1.8V 電壓調節器和電壓轉換,因此您可以將其用於 3.3V 或 5V 系統,例如 Raspberry Pi、Metro M4 或 Arduino Uno。

【商品規格】

  • 尺寸: 25.5mm x 17.7mm x 4.6mm

出貨清單
  • SGP30 Air Quality Sensor Breakout 氣體感測器 (VOC and eCO2) x 1
如何查詢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
}
出貨清單
  • SGP30 Air Quality Sensor Breakout 氣體感測器 (VOC and eCO2) x 1
送貨及付款方式

送貨方式

  • FedEx 國際貨運
  • 郵局國際貨運
  • 郵寄
  • 7-11 取貨不付款 (C2C)
  • 黑貓-常溫
  • 報價單草稿

付款方式

  • 專員接洽
  • 銀行轉帳
  • 信用卡付款