關注商店
今日商品數 1090
評價分數 (29993)
留言版 (2704)
瀏覽人次 (654158)
購買人次 (16053)
平均出貨天數 (1)
.商品所在地 台中市

訂閱商店EDM
看所有商品列表 »
看最新上架商品 »
貨到付款專區 »
711超商取貨付款 »
全家超商取貨付款 »
萊爾富超商取貨付款 »
IOT電子材料模組
線材
電腦周邊
手機周邊
電玩&玩具
汽車機車用品
戶外休閑用品
居家百貨
隨身精品&煙具
商店介紹
購物說明
購物車
留言版 (2704)
客服
回首頁
維貿電子IOT模組材料
  維貿企業社 統編:45545251 1.超商取貨付款要求金額(未含運費)滿79元才接單出貨,未滿請選用 郵局出貨,如有不便敬請見諒! 2.所有價格 含稅,開發票 需要打統編,請記得在你的訂單上面填寫
PChome > 商店街首頁 > 3C周邊 > 維貿電子IOT模組材料 >
 


〈商品編號:M80474788〉
獲得現金積點:2 (1點=1元) 說明
最高可折抵點數:1 (1點=1元) 說明
 

YF-S201 霍爾水流量感測器 水流量傳感器 4分G1/2接口 水流計

適用Arduino STM 51開發板
建議售價 $199
一次付清特價 64 折 129
線上分期價
3 每期$45 接受29家銀行
6 每期$23 接受29家銀行
12 每期$12 接受28家銀行
15 每期$10 接受6家銀行
24 每期$7 接受14家銀行
信用卡紅利折抵刷卡金 ( 接受18家銀行紅利折抵辦法 )
優惠活動
先享後付 最長45天內付款!

先享後付 最長45天內付款!

下單選用「AFTEE先享後付」
只需輸入手機號碼,15秒就能輕鬆結帳!
收到繳費簡訊,最長45天內付款就可以!

AFTEE先享後付 詳細說明>
付款方式 
萊爾富取貨付款 取貨付款
貨到付款
運  費單店購物車滿 1699 元(含)以上免運費,未滿者自付運費
宅配 99
郵局 59
7-11取貨付款 60
7-11純取貨 60
全家取貨付款 60
全家純取貨 60
萊爾富取貨付款 60
超取運費$45

萊爾富純取貨 60
超取運費$45
***
商品如需寄送至台灣本島以外,請先行與店家聯繫運費金額
商品所在地 台中市
  
加入追蹤加入追蹤 留言版留言版(2704)
分享到
 
YF-S201 霍爾水流量感測器 水流量傳感器 4分G1/2接口 水流計

水流量傳感器原理簡介:
1.組成:塑料閥體 、水流轉子組件和霍爾傳感器
2.裝在進水端,用於檢測進水流量
3.當水通過水流轉子,隨著流量快慢,推動磁性轉子轉動的轉速,
  觸發霍爾傳感器輸出相應脈衝信號,反饋給控制器或開發板
  判斷水流量的大小,進行水量檢測調控

適用範圍:適用於抽水機 熱水器,自動售水機等流量計量設備  
1.工作電壓範圍DC 5∼18 V
2.最大工作電流 15 mA(DC 5V)
  負載能力 ≤10 mA(DC 5V)
3.使用溫度範圍 工作溫度 :-25∼+ 80℃ 
4.使用濕度範圍 35%∼90%RH(無結霜狀態)  
5.允許耐壓 水壓1.75Mpa以下
6.流量計算
  (即頻率 脈衝數) F= 常數7.5 * 單位流量(L/min) * 時間(秒) 
   例:一分鐘流過1升水 輸出的 脈衝個數計算
       7.5 * 1 * 60 =450, 流完一升水輸出450個脈衝
7.可測流量範圍:1∼30公升/分鐘
8.水管接口:標準 G1/2螺牙  1/2吋,外徑0.78”,螺紋1/2“
9.機體尺寸約 2.5x 1.4x 1.4寸
10.電線長度:15公分
11.輸出訊號類型:5V TTL
12.傳感器類型:霍爾效應
13.淨重  約47公克

使用注意事項:
    嚴禁劇烈衝擊以及化學物質的侵蝕。
    嚴禁拋擲或碰撞。   
    介質溫度不宜超過120度

接線方式:
  紅  IN  :正極
  黃  OUT :PWM 類比訊號輸出線
  黑  GND :負極

出貨內容:水流量傳感器 x 一個   塑膠袋包裝





範例程式:
/*
Liquid flow rate sensor -DIYhacking.com Arvind Sanjeev

Measure the liquid/water flow rate using this code. 
Connect Vcc and Gnd of sensor to arduino, and the 
signal line to arduino digital pin 2.
 
 */

byte statusLed    = 13;

byte sensorInterrupt = 0;  // 0 = digital pin 2
byte sensorPin       = 2;

// The hall-effect flow sensor outputs approximately 4.5 pulses per second per
// litre/minute of flow.
float calibrationFactor = 4.5;

volatile byte pulseCount;  

float flowRate;
unsigned int flowMilliLitres;
unsigned long totalMilliLitres;

unsigned long oldTime;

void setup()
{
  
  // Initialize a serial connection for reporting values to the host
  Serial.begin(9600);
   
  // Set up the status LED line as an output
  pinMode(statusLed, OUTPUT);
  digitalWrite(statusLed, HIGH);  // We have an active-low LED attached
  
  pinMode(sensorPin, INPUT);
  digitalWrite(sensorPin, HIGH);

  pulseCount        = 0;
  flowRate          = 0.0;
  flowMilliLitres   = 0;
  totalMilliLitres  = 0;
  oldTime           = 0;

  // The Hall-effect sensor is connected to pin 2 which uses interrupt 0.
  // Configured to trigger on a FALLING state change (transition from HIGH
  // state to LOW state)
  attachInterrupt(sensorInterrupt, pulseCounter, FALLING);
}

/**
 * Main program loop
 */
void loop()
{
   
   if((millis() - oldTime) > 1000)    // Only process counters once per second
  { 
    // Disable the interrupt while calculating flow rate and sending the value to
    // the host
    detachInterrupt(sensorInterrupt);
        
    // Because this loop may not complete in exactly 1 second intervals we calculate
    // the number of milliseconds that have passed since the last execution and use
    // that to scale the output. We also apply the calibrationFactor to scale the output
    // based on the number of pulses per second per units of measure (litres/minute in
    // this case) coming from the sensor.
    flowRate = ((1000.0 / (millis() - oldTime)) * pulseCount) / calibrationFactor;
    
    // Note the time this processing pass was executed. Note that because we've
    // disabled interrupts the millis() function won't actually be incrementing right
    // at this point, but it will still return the value it was set to just before
    // interrupts went away.
    oldTime = millis();
    
    // Divide the flow rate in litres/minute by 60 to determine how many litres have
    // passed through the sensor in this 1 second interval, then multiply by 1000 to
    // convert to millilitres.
    flowMilliLitres = (flowRate / 60) * 1000;
    
    // Add the millilitres passed in this second to the cumulative total
    totalMilliLitres += flowMilliLitres;
      
    unsigned int frac;
    
    // Print the flow rate for this second in litres / minute
    Serial.print("Flow rate: ");
    Serial.print(int(flowRate));  // Print the integer part of the variable
    Serial.print("L/min");
    Serial.print("\t");   // Print tab space

    // Print the cumulative total of litres flowed since starting
    Serial.print("Output Liquid Quantity: ");        
    Serial.print(totalMilliLitres);
    Serial.println("mL"); 
    Serial.print("\t");   // Print tab space
Serial.print(totalMilliLitres/1000);
Serial.print("L");
    

    // Reset the pulse counter so we can start incrementing again
    pulseCount = 0;
    
    // Enable the interrupt again now that we've finished sending output
    attachInterrupt(sensorInterrupt, pulseCounter, FALLING);
  }
}

/*
Insterrupt Service Routine
 */
void pulseCounter()
{
  // Increment the pulse counter
  pulseCount++;
}


    政策宣導

  • 為防治動物傳染病,境外動物或動物產品等應施檢疫物輸入我國,應符合動物檢疫規定,並依規定申請檢疫。擅自輸入屬禁止輸入之應施檢疫物者最高可處七年以下有期徒刑,得併科新臺幣三百萬元以下罰金。應施檢疫物之輸入人或代理人未依規定申請檢疫者,得處新臺幣五萬元以上一百萬元以下罰鍰,並得按次處罰。
  • 境外商品不得隨貨贈送應施檢疫物。
  • 收件人違反動物傳染病防治條例第三十四條第三項規定,未將郵遞寄送輸入之應施檢疫物送交輸出入動物檢疫機關銷燬者,處新臺幣三萬元以上十五萬元以下罰鍰。
寄送時間:預計訂單成立後 7 個工作天內送達(不含週六日及國定假日),如專櫃商店有約定出貨日將於約定出貨寄送。
送貨方式:透過宅配或是郵局配送。
您訂購之商品若經配送兩次無法送達,且聯繫不上逾三天者,您的訂單將被取消並退款。
送貨範圍:限台灣本島地區。
注意!收件地址請勿為郵政信箱(若有台灣本島以外地區送貨需求,收貨人地址請填台灣本島親友的地址)。
? 根據消保法規定,消費者享有商品到貨7天猶豫期之權益,但猶豫期並非試用期,退回商品必須是全新狀態且包裝完整(請保持商品、附件、包裝、廠商紙箱及所有附隨文件或資料之完整性),否則恕不接受退訂。

? 若您所購買商品是下列特殊商品,請留意下述退貨注意事項:
1. 易於腐敗之商品、保存期限較短之商品、客製化商品、報紙、期刊、雜誌,於收受商品後將無法享有7天猶豫期之權益且不得辦理退貨。
2. 影音商品、電腦軟體或個人衛生用品等一經拆封即無法回復原狀的商品,在您還不確定是否要辦理退貨以前,請勿拆封,一經拆封則依消費者保護法之規定,無法享有7天猶豫期之權益且不得辦理退貨。
3. 非以有形媒介提供之數位內容或一經提供即為完成之線上服務,一經您事先同意後始提供者,依消費者保護法之規定,您將無法享有7天猶豫期之權益且不得辦理退貨。

? 若有退訂需求,請於到貨7天內至【我的帳戶】點選退貨申請並於退貨申請網頁填妥相關資料,並將原商品備妥並自行負擔運費將退貨商品寄至【專櫃商店地址(請透過「私訊」與專櫃商店確認退回地址)】,您退回之商品將由專櫃商店進行驗收。

? 若退款過程中需請您提供銷退憑證文件(如折讓單、公司戶發票),請將所收到的發票以掛號方式寄回至商店街市集國際資訊股份有限公司﹝客服部﹞,地址:(106)台北市敦化南路二段105號5樓。

? 退回之商品應保持原商品完整包裝,連同零配件、贈品、使用手冊、註冊回函…等,勿缺件,外盒勿損毀,請以專櫃商店寄送時的原始包裝再原封備妥,若紙箱已遺失,請於商品外盒上再包裝,勿直接讓商品原廠外盒粘貼宅配單或書寫文字,原廠外盒損毀或是商品缺件,將無法受理退貨或視損毀程度折扣退款金額。

? 專櫃商店於收到商品並確認驗收無誤後,將於7個工作天內進行退款流程,退款日當天會發送mail至您的聯絡信箱。

詳情請見 維貿電子IOT模組材料 購物說明
如對本產品有任何問題,請洽 維貿電子IOT模組材料 客服中心