全網含稅價,會員享有滿額免運優惠!歡迎公司及學校大量採購洽詢,由專人提供報價服務|歡迎加入@LINE

你的購物車是空的
水流量感測器 / 流量計

水流量感測器 / 流量計

貨號:CSO0016


NT$189
數量
商品預購中
加入追蹤清單
一次最大商品購買數量限制為 99999
該數量不適用,請填入有效的數量。
售完
商品描述
了解更多
送貨及付款方式
顧客評價

【產品介紹】

4分管,G1/2外牙,一字型結構,尼龍加玻纖,防水防爆,耐熱耐冷,可用來偵測水流計量流量

三線聯接:紅色為正極,黑色為負極,黃色為脈衝信號,最大壓力1.75mpa、流量1-30L/分如果要加溫度控制傳感器則為綠色,也可另接兩線專門控制溫度。

水流量傳感器主要用於燃氣熱水器、電熱水器、洗衣機、售水機、壁掛爐、電磁熱水器、水控(一體式)機、控水機、熱泵熱水工程、一卡通管理系統、智能水錶IC水錶、校園卡售水系統、自助售水(販賣)機、水處理設備、配水配藥設備、冷卻系統、循環系統、智機械設備、加熱設備、儀器儀表、製藥(制濟)設備等。


【產品規格】


尺寸:58*38*38mm
顏色:Black
最大流體壓力:1.75 MPa
最大流量:30 L/min
線長:10 CM
管接頭管徑:1.9 cm Outer Dia, 1.1cm Inner Dia



【文件下載】 

water_flow.jpg


需要的物品

Arduino控制板、10K電阻、水流量感測器


教學

你需要上傳以下程式碼到你的控制板(如UNO)。上傳之後,當有流體流過水流感測器,您就可以打開Arduino serial monitor,上面將會顯示流量,並且每秒刷新一次。


程式碼


// reading liquid flow rate using Seeeduino and Water Flow Sensor from Seeedstudio.com
// Code adapted by Charles Gantt from PC Fan RPM code written by Crenn @thebestcasescenario.com
// http:/themakersworkbench.com https://thebestcasescenario.com https://seeedstudio.com

volatile int NbTopsFan; //measuring the rising edges of the signal
int Calc; 
int hallsensor = 2; //The pin location of the sensor

void rpm () //This is the function that the interupt calls 

NbTopsFan++; //This function measures the rising and falling edge of the 

hall effect sensors signal

// The setup() method runs once, when the sketch starts
void setup() //

pinMode(hallsensor, INPUT); //initializes digital pin 2 as an input
Serial.begin(9600); //This is the setup function where the serial port is 

initialised,
attachInterrupt(0, rpm, RISING); //and the interrupt is attached

// the loop() method runs over and over again,
// as long as the Arduino has power
void loop () 
{
NbTopsFan = 0; //Set NbTops to 0 ready for calculations
sei(); //Enables interrupts
delay (1000); //Wait 1 second
cli(); //Disable interrupts
Calc = (NbTopsFan * 60 / 7.5); //(Pulse frequency x 60) / 7.5Q, = flow rate 

in L/hour 
Serial.print (Calc, DEC); //Prints the number calculated above
Serial.print (" L/hourrn"); //Prints "L/hour" and returns a new line
}
"

這個商品沒有更多資訊。

送貨方式

  • 郵寄掛號 (會員滿千免運;未滿一千元須加運費65元)
  • 順豐速運 (運費130元)
  • 7-11 取貨付款 (運費60元)
  • 7-11 純取貨 (運費60元)
  • 全家 取貨付款 (運費60元)
  • 全家 純取貨 (運費60元)
  • 面交自取

付款方式

  • 銀行轉帳 (請於3日內匯款完成)
  • 信用卡 (金額需要滿三千元才能使用)
  • 全家 取貨付款
  • 7-11 取貨付款
  • 面交付款
尚未有任何評價

相關產品