Basic Info.
After-sales Service
One Year
Appliance
Food Analysis, Medical Research, Biochemistry
Certification
RoHS, FCC, CE
Product Name
Dissolved Oxygen Sensor
Transport Package
Standard
Product Description
RS485 Water Quality Sensor Dissolved Oxygen Sensor Fluorescence
RK-3001-O2
Product Introduction1.1 Product overviewThe water quality fluorescent dissolved oxygen sensor is a continuous monitoring instrument probe widely used in dissolved oxygen, saturation, oxygen partial pressure and temperature in solutions such as thermal power, chemical fertilizers, metallurgy, environmental protection, pharmaceuticals, biochemistry, food and tap water.This product adopts fluorescence method, the sensor product has a long life, no maintenance, and excellent performance. The continuous monitoring data can be remotely monitored and recorded through the transmission output and the recorder. It can also be connected to the RS485 interface and can be easily connected to the computer through the MODBUS-RTU protocol. Monitoring and recording.This product is equipped with a waterproof housing to convert the signal of the aqueous solution into a standard 485 signal after digital setting and analysis. The product does not need to be calibrated in one molding process and can be used immediately.1.2 FeaturesThe probe of this product is a fluorescence probe, which uses the principle of fluorescence quenching for measurement. The fluorescence method has been relatively active in recent years.It can overcome the shortcomings of traditional classical measurement methods that cannot be continuously measured online. The fluorescence method does not consume oxygen, is not subject to magnetic field interference, does not consume probes, has high sensitivity, low detection limit, long life, and has a wide range of advantages in sustainable online monitoring. application.1.3 Main parameters1.4 System framework diagram(1)This sensor can be connected and used alone. First, use a 12V DC power supply. The device can be directly connected to a PLC with a 485 interface, and it can be connected to a single-chip computer through a 485 interface chip.The single-chip microcomputer and PLC can be programmed through the modbus protocol specified later to cooperate with the sensor.At the same time, use USB to 485 to connect to the computer, and use the sensor configuration tool provided by our company for configuration and testing.(2)This product can also be used by combining multiple sensors on a single 485 bus. Please follow the "485 bus field wiring rules" (see appendix) when performing 485 bus combination.In theory, one bus can connect more than 16 485 sensors. If you need to connect more 485 sensors, you can use 485 repeaters to expand more 485 devices.The other end is connected to a PLC with a 485 interface, connected to a single-chip microcomputer through a 485 interface chip, or connected to a computer using USB to 485, and configured and tested using the sensor configuration tool provided by our company.Hardware Connection2.1 Inspection before equipment installationPlease check the equipment list before installing the equipment:name | Quantity |
Dissolved oxygen probe | 1 set |
Warranty card/certificate | 1 serving |
12V waterproof power supply | 1 set (optional) |
USB to 485 device | 1 set (optional) |
2.2 Product appearance sizeThe following is the appearance size of the product as shown in the figure:2.3 Interface descriptionThe power interface can be a wide voltage power input of 12-24V. The product pays attention to the positive and negative of the signal line, and do not reverse the positive and negative of the signal line.Wiring mode of 485 interface sensor: | Thread color | Description |
power supply | brown | Power supply positive (12-24VDC) |
| black | Power negative |
Communication | Yellow (gray) color | 485-A |
| blue | 485-B |
Precautions:- Please be careful not to connect the wrong wiring sequence, the wrong wiring will cause the equipment to fail to operate normally or to burn the equipment.
- The sensor should avoid contact with organic solvents, alcohol, paint, oil and high-concentration gases, including silica gel and other adhesives.
- The factory default provides 4.8 meters long wire, customers can extend the wire as needed or wire in order.
There is no yellow line in the line sequence that may be provided in some factory batches. At this time, the gray line is equivalent to replace the yellow line.2.4 Installation instructionsThe probe is a very precise component, and the correct installation method must be used. The wrong installation method will cause the probe to be damaged or irreversibly damaged.The probe adopts pipeline installation, immersion type or flange installation. Please do not put the probe directly into the water, you should choose the probe mounting bracket or the flow cup to fix it.Before installation, be sure to use raw material tape (3/4 thread) to do a waterproof seal to prevent water from entering the probe and causing short circuit of the probe cable.During the water cut, make sure that the probe is immersed in the liquid to be tested or wear a protective cap with a built-in protective liquid. If the temperature is low in winter, if the water is stopped for a long time, an antifreeze device should be added or the room should be returned to add water for storage. Otherwise, the service life will be shortened.485 interface communication protocol3.1 Basic communication parametersparameter | content |
coding | 8-bit binary |
Data bit | 8-bit |
Parity bit | no |
Stop bit | 1 person |
Wrong calibration | CRC lengthy cyclic code |
Baud rate | 2400bps/4800bps/9600 bps can be set, the factory default is 9600bps |
coding | 8-bit binary |
3.2 Data frame format definitionAdopt Modbus-RTU communication protocol, the format is as follows:Initial structure >= 4 bytes of timeAddress code = 1 byteFunction code = 1 byteData area = N bytesError check = 16-bit CRC codeEnd structure >= 4 bytes timeAddress code: the address of the transmitter, which is unique in the communication network (factory default 0x01).Function code: The command function prompt sent by the host, this transmitter only uses the function code 0x03 (read memory data).Data area: The data area is the specific query data area, pay attention to the 16bits data high byte firstCRC code: two-byte check code.Interrogation frame:address code | function code | Register start address | Register length | Check code low bit | High bit of check code |
1 byte | 1 byte | 2 bytes | 2 bytes | 1 byte | 1 byte |
Reply frame:address code | function code | Number of valid bytes | Data area | Second data area | Nth data area |
1 byte | 1 byte | 1 byte | 2 bytes | 2 bytes | 2 bytes |
3.3 Register addressRegister address | content | operating |
0001H | Temperature (unit: 0.1ºC) | Read only |
0002H | Dissolved oxygen (unit: 0.01mg/L) | Read only |
0100H | Device address (0-252) | Read and write |
0101H | Baud rate (2400/4800/9600) | Read and write |
3.4 Communication protocol example and explanation3.4.1 Read the dissolved oxygen value of the device address 0x01Interrogation frame:address code | function code | initial address | Data length | Check code low bit | High bit of check code |
0x01 | 0x03 | 0x00,0x02 | 0x00,0x01 | 0x25 | 0xCA |
Reply frame:address code | function code | Number of valid bytes | Dissolved oxygen value | Check code low bit | High bit of check code |
0x01 | 0x03 | 0x02 | 0x00,0xBD | 0x78 | 0x35 |
Dissolved oxygen:00BD H(hexadecimal)=189=>dissolved oxygen=1.89mg/L3.4.2 Read the temperature value of the device address 0x01Interrogation frame:address code | function code | initial address | Data length | Check code low bit | High bit of check code |
0x01 | 0x03 | 0x00,0x01 | 0x00,0x01 | 0xD5 | 0xCA |
Reply frame:address code | function code | Number of valid bytes | Temperature value | Check code low bit | High bit of check code |
0x01 | 0x03 | 0x02 | 0x00,0xAF | 0xDB | 0xBF |
temperature:00AF H(Hexadecimal)=175=>Temperature=17.5ºC3.4.3 Read device address 0x01 temperature, dissolved oxygen concentration valueInterrogation frame:address code | function code | initial address | Data length | Check code low bit | High bit of check code |
0x01 | 0x03 | 0x00,0x01 | 0x00,0x02 | 0x95 | 0xCB |
Reply frame:address code | function code | Number of valid bytes | Temperature value | Dissolved oxygen value | Check code low bit | High bit of check code |
0x01 | 0x03 | 0x04 | 0x01 0x1b | 0x00 0x28 | 0xDB | 0xBF |
temperature:011B H(Hexadecimal)=283=>Temperature=28.3ºCDissolved oxygen:0028 H(hexadecimal)=40=>dissolved oxygen=0.40mg/LAppendix4.1 Warranty and after-salesThe warranty terms follow our sensor after-sales terms, and the sensor host enjoys warranty service (see the warranty card for the specific warranty period).- The company conducts strict product inspections on all products before leaving the factory, and maintains all manufacturing and quality problems within the warranty period from the date of leaving the factory.
- If during the product warranty period, our company is still responsible for repairs due to irregular operation, non-compliant use environment, human negligence, accidents, improper storage or transportation.However, appropriate costs shall be charged according to the degree of equipment failure.
- For equipment beyond the warranty period, our company will take paid warranty and service.
- When one of the following situations occurs, the product will no longer be covered by our company's warranty and service:
- All acts of disassembling, re-assembling, disassembling or transforming the product;
- Equipment that has been repaired without authorization by non-our company's directly affiliated institutions and authorized personnel;
- Product anti-dismantling machine is a device with fragile membrane rupture;
- Equipment that does not use the manufacturer's original consumables and causes equipment measurement failures;
- Products of our company purchased through abnormal channels.
Address:
No. 9 Dadong Rd, Jinan, Shandong, China
Business Type:
Manufacturer/Factory
Business Range:
Consumer Electronics, Electrical & Electronics, Health & Medicine, Industrial Equipment & Components, Instruments & Meters
Management System Certification:
ISO 9001, ISO 9000, ISO 14001, ISO 14000, ISO 20000, OHSAS/ OHSMS 18001, IATF16949, HSE, ISO 14064, QC 080000, GMP, BSCI, ANSI/ESD
Company Introduction:
Jinan Rainbow Technology is a high-tech enterprise with MEMS sensor and New energy as its core. It was established in Jinan, Shandong, China and has an R&D center in New York, USA.
Our products will play a critical role in the transition to a clean energy and green economy, it can be widely used in many fields such as Hydrogen Fuel cell, medical devices, air purification, gas detector, lithium battery safety monitoring, Hydrogen leak detection, smart home, and security IoT to meet the needs of safety, health, and energy conservation.
Through continuous technological innovation, we powering the Clean Energy transition, and provide our customers with more competitive materials. We have core capabilities in design, manufacturing and testing to provide customers with high precision and highly reliable products and One-Stop Solutions.
Our company has core invention patents and has passed ISO9001 quality system certification. Our products comply with RoHS and REACH environmental protection standards.
With the goal of standing at the forefront of technology, we are committed to promoting the development of Hydrogen energy with the spirit of "protecting homes with core technology and innovating to change lives".