welcome iCShop!     服務時間:週一 ~ 週五 9:00~12:00 / 13:00~17:00
G3 PM2.5 感測器【出清/限量1個】

停售

G3 PM2.5 感測器【出清/限量1個】

停售

G3 PM2.5 感測器【出清/限量1個】

停售

G3 PM2.5 感測器【出清/限量1個】

停售

G3 PM2.5 感測器【出清/限量1個】

停售

G3 PM2.5 感測器【出清/限量1個】
G3 PM2.5 感測器【出清/限量1個】
G3 PM2.5 感測器【出清/限量1個】
G3 PM2.5 感測器【出清/限量1個】
G3 PM2.5 感測器【出清/限量1個】

G3 PM2.5 感測器【出清/限量1個】

NT$ 此商品已停售


產品貨號

368200200059

品牌

原廠貨號


數量


運送方式

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

出清原因:使用過之二手品,外層藍色薄膜有磨損痕跡(可撕除),功能皆可正常使用。

商品規格

PMS3003 使用鐳射散射原理,能夠得到空氣中0.3 ~ 10微米懸浮顆粒物濃度,數據穩定可靠;內置風扇,數字化輸出,集成度高;

特點:

■數據準確:鐳射檢測,穩定、一致性好
■響應快速:場景變換響應時間小於10 秒
■便於集成:串口輸出(或IO 口輸出可定制),自帶風扇
■解析度高:分辨顆粒最小直徑達0.3 微米

適用範圍:

PM1.0 PM2.5 PM10檢測儀、淨化器

工作原理:

採用鐳射散射原理:當鐳射照射到通過檢測位置的顆粒物時會產生微弱的光散射,在特定方向上的光散射波形與顆粒直徑有關,通過不同粒徑的波形分類統計及換算公式可以得到不同粒徑的實時顆粒物的數量濃度,按照標定方法得到跟官方單位統一的質量濃度


技術參考:

■測量直徑:0.3-1.0um 1.0-2.5um 2.5-10um
■測量單位:ug/m3
■測量精度:ug/m3
■響應時間:<10s
■工作電流:5V200ma@工作狀態5V2ma@待機狀態
■數據介面:串口(3.3VTTL電平)
■模塊體積:65x42x23mm
■工作溫度範圍:: -20〜50℃
■工作濕度範圍:0〜99%RH
■最大尺寸:65×42×23(毫米)

供電質量要求:

  1. 電壓紋波:小於100mV的。
  2. 電源電壓穩定度:4.95〜5.05V。
  3. 電源:大於1W(5V @200毫安)。
  4. 上和下電電壓浪湧是系統電源電壓的小於50%。

聯繫:

傳感器引腳

Arduino的引腳

功能說明

引腳1

VCC

正電源

引腳2

GND

負電源

引腳3

SET

模式設置(本文更多更高版本)

引腳4

RXD

接收串行端口引腳(3.3V電平)

引腳5

TXD

傳輸串行端口引腳(3.3V電平)

引腳6

RESET

重置

引腳7/8

NC

注意:

  • SET:
    • SET = 1,模塊工作在連續採樣模式,它將每個取樣結束後上傳的採樣數據。(採樣響應時間為1s)
    • SET = 0,則模塊進入低功耗待機模式。
  • RESET:讓它空就可以了。

通訊協議:

串口波特率:9600; 奇偶校驗:無; 停止位:1; 包長度固定為24個字節。


Documents:

PMS3003_LOGOELE
PM2.5 laser dust sensor SKU:SEN0177
PMS3003 PLANTOWER How to read data and use humidity (Air Quality)
SIZE

其他參考資訊

G3-Arduino原始程式碼〈僅供參考〉
#include

long pmcf10=0;
long pmcf25=0;
long pmcf100=0;
long pmat10=0;
long pmat25=0;
long pmat100=0;

char buf[50];

void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial1.begin(9600);
}

void loop() {
// put your main code here, to run repeatedly:
int count = 0;
unsigned char c;
unsigned char high;
while (Serial1.available()) {
c = Serial1.read();
if((count==0 && c!=0x42) || (count==1 && c!=0x4d)){
Serial.println("check failed");
break;
}
if(count > 15){
Serial.println("complete");
break;
}
else if(count == 4 || count == 6 || count == 8 || count == 10 || count == 12 || count == 14) high = c;
else if(count == 5){
pmcf10 = 256*high + c;
Serial.print("CF=1, PM1.0=");
Serial.print(pmcf10);
Serial.println(" ug/m3");
}
else if(count == 7){
pmcf25 = 256*high + c;
Serial.print("CF=1, PM2.5=");
Serial.print(pmcf25);
Serial.println(" ug/m3");
}
else if(count == 9){
pmcf100 = 256*high + c;
Serial.print("CF=1, PM10=");
Serial.print(pmcf100);
Serial.println(" ug/m3");
}
else if(count == 11){
pmat10 = 256*high + c;
Serial.print("atmosphere, PM1.0=");
Serial.print(pmat10);
Serial.println(" ug/m3");
}
else if(count == 13){
pmat25 = 256*high + c;
Serial.print("atmosphere, PM2.5=");
Serial.print(pmat25);
Serial.println(" ug/m3");
}
else if(count == 15){
pmat100 = 256*high + c;
Serial.print("atmosphere, PM10=");
Serial.print(pmat100);
Serial.println(" ug/m3");
}
count++;
}
while(Serial1.available()) Serial1.read();
Serial.println();
delay(5000);
}

出貨清單

  • G3 PM2.5 感測器 x 1