Gravity: Industrial Stainless Steel Submersible Pressure Level Sensor(0~5m) เซ็นเซอร์วัดระดับน้ำ Water Level Sensor 0-5m (แท้จาก DFRobot)

Gravity: Industrial Stainless Steel Submersible Pressure Level Sensor(0~5m) เซ็นเซอร์วัดระดับน้ำ Water Level Sensor 0-5m (แท้จาก DFRobot)
Gravity: Industrial Stainless Steel Submersible Pressure Level Sensor(0~5m) เซ็นเซอร์วัดระดับน้ำ Water Level Sensor 0-5m (แท้จาก DFRobot)Gravity: Industrial Stainless Steel Submersible Pressure Level Sensor(0~5m) เซ็นเซอร์วัดระดับน้ำ Water Level Sensor 0-5m (แท้จาก DFRobot)Gravity: Industrial Stainless Steel Submersible Pressure Level Sensor(0~5m) เซ็นเซอร์วัดระดับน้ำ Water Level Sensor 0-5m (แท้จาก DFRobot)Gravity: Industrial Stainless Steel Submersible Pressure Level Sensor(0~5m) เซ็นเซอร์วัดระดับน้ำ Water Level Sensor 0-5m (แท้จาก DFRobot)Gravity: Industrial Stainless Steel Submersible Pressure Level Sensor(0~5m) เซ็นเซอร์วัดระดับน้ำ Water Level Sensor 0-5m (แท้จาก DFRobot)
รหัสสินค้า AS00393
หมวดหมู่ วัดสภาพแวดล้อมและแก๊ส Environmental / Gas
ราคา 2,685.00 บาท
สถานะสินค้า พร้อมส่ง
จำนวน
1
หยิบลงตะกร้า
หนังสือรับรองบริษัท
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay

INTRODUCTION

This throw-in type liquid level transmitter adopts high-performance pressure sensing chip, with advanced circuit processing and temperature compensation technology. The level transmitter receives different pressures at different depths of liquid, which can be converted into corresponding current signals and output through the sensor. In this way, the depth of liquid can be measured.

The shell of the transmitter is made of stainless steel, anti-corrosion and easy to clean. It can be directly placed in the liquid like water, oil or even mash with large viscosity. This product can provide a steady performance in all sorts of measurement conditions such as river, reservoir, city water supply, groundwater in urban, and basin.

We sold this product together with our Gravity: Analog Current to Voltage Converter. The converter can convert current into voltage signal which can be read by your Arduino controllers or other controllers. The throw-in type liquid level transmitter can be used in waterworks, refinery, sewage disposal work, construction, light industry, mechanical and so on.

Notes:

1. Please connect the power supply exactly as the connection instruction.
2. The product is a precision device, so it is not allowed to disassemble and crash the device or make it fall from the high place, what’s more, don’t touch its diaphragm with any sharp objects in case of causing device damage.
3. Power the transmitter up then you can use it. But it can provide more steady output after preheating for 30 minutes. Please turn off the power and stop using if any abnormality is found during use.
4. The liquid level lead should be vertically downward. Please prevent water from entering the terminal, and the joint is required to be waterproof.
5. Place the liquid level probe in water, try to fix it and keep it away from the inlet.


 

 Connection Diagram

                                               Dimension Diagram                                                      


SPECIFICATION

  • Cable Length: 5m
  • Measuring Range: 0-5m
  • Accuracy: 0.5%
  • Output Signal: 4-20mA
  • Operating Voltage: 12-36V
  • Operating Temperature: -20℃-70℃
  • Overload Capacity: 300%
  • Service Life: 1*10^8 Pressure Circulation (25℃)
  • Material: 316L stainless steel
  • Protection Class: IP68

DOCUMENTS


SHIPPING LIST

  • Throw-in Type Liquid Level Transmitter x1
  • Gravity: Analog Current to Voltage Converter (for 4~20mA Application) x1

Board Overview


Num Label Description
1(red) VCC Positive pole
2(red, thick) AIR PIPE Air guiding tube
3(black) GND Negative pole

Num Label Description
1 GND Power Ground
2 VCC Power Positive(3.3~5.5V)
3 Signal Voltage Signal Output
4 I+ Current Input
5 I- Current Output

Tutorial

This tutorial introduces the usage of level transmitter with current-to-voltage module, which converts the current signal output by the sensor into a analog voltage signal. The Arduino UNO reads this analog voltage signal and converts it to corresponding depth.

Measurement Principle

When the liquid level transmitter is put into a certain depth of some liquid, the pressure at the end of the sensor is


The atmospheric pressure P0 on the liquid surface is introduced into the back chamber of the sensor through the air guiding tube to offset the atmospheric pressure P0 at the end of the sensor, so that the measured pressure of the sensor is P'=P-P0=ρgh. Therefore, if the liquid density ρ and the acceleration of gravity g are known, the liquid level depth h can be calculated by measuring the pressure P'.

The pressure measured by the liquid level sensor is then amplified and compensated by the circuit and output with a standard 4-20 mA current signal. The relationship of output current of the liquid level transmitter, output voltage of the current to voltage module and depth are shown below:


Attention

  • The depth ranges, voltages and currents shown in the figure are for pure water. If other liquid is to be measured, the density of the liquid needs to be considered. The specific conversion relationship is shown in the sample code.

Connection Diagram


Requirements

  • Hardware
    • Arduino UNO (or similar)
    • Analog Current to Voltage module x1
    • Throw-in Type Liquid Level Transmitter x1
    • PH2.0-3P connector x1

Sample Code



/***********************************************************
DFRobot Gravity: Analog Current to Voltage Converter(For 4~20mA Application)
SKU:SEN0262

GNU Lesser General Public License.
See <http://www.gnu.org/licenses/> for details.
All above must be included in any redistribution
****************************************************/

#define ANALOG_PIN A1
#define RANGE 5000 // Depth measuring range 5000mm (for water)
#define CURRENT_INIT 4.00 // Current @ 0mm (uint: mA)
#define DENSITY_WATER 1 // Pure water density normalized to 1
#define DENSITY_GASOLINE 0.74 // Gasoline density
#define PRINT_INTERVAL 1000

int16_t dataVoltage;
float dataCurrent, depth; //unit:mA
unsigned long timepoint_measure;

void setup()
{
Serial.begin(9600);
pinMode(ANALOG_PIN, INPUT);
timepoint_measure = millis();
}

void loop()
{
if (millis() - timepoint_measure > PRINT_INTERVAL) {
timepoint_measure = millis();

dataVoltage = analogRead(ANALOG_PIN);
dataCurrent = dataVoltage / 120.0; //Sense Resistor:120ohm
depth = (dataCurrent - CURRENT_INIT) * (RANGE/ DENSITY_WATER / 16.0); //Calculate depth from current readings

if (depth < 0) depth = 0.0;

//Serial print results
Serial.print("depth:");
Serial.print(depth);
Serial.println("mm");
}
}
 

วิธีการชำระเงิน

ชำระเงินค่าสินค้าโดยการโอนเงินเข้าบัญชีธนาคาร KBANK, SCB, BBL,TMB

กรุณาเก็บหลักฐานการโอนเงินของท่านไว้เพื่อแจ้งการชำระเงินด้วยค่ะ

 

ท่านสามารถแจ้งการชำระเงินผ่านระบบอัตโนมัติได้โดย Click Link ข้างล่างค่ะ

https://www.arduitronics.com/informpayment

 

บมจ. ธนาคารกสิกรไทย สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารกรุงเทพ จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 สะสมทรัพย์
ธนาคารทหารไทยธนชาต จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 กระแสรายวัน

เพิ่มเพื่อน

@rfm0967y

ติดต่อสอบถาม

เพิ่มเพื่อน

CATEGORY

Sensors / Modules [1703]

CONTACT US

มือถือ 0887823467 แฟกซ์ 02-0153201

Join เป็นสมาชิกร้านค้า

ร้านArduitronics
ร้านArduitronics
/www.arduitronics.com/
Join เป็นสมาชิกร้าน
2138
สมัครสมาชิกร้านนี้ เพื่อรับสิทธิพิเศษ

STATISTICS

หน้าที่เข้าชม15,412,950 ครั้ง
ผู้ชมทั้งหมด5,916,028 ครั้ง
เปิดร้าน21 พ.ค. 2556
ร้านค้าอัพเดท30 ก.ย. 2568

MEMBER

พูดคุย-สอบถาม