RS485 interface tipping rain sensor

    SM7001B using the standard RS485 bus MODBUS-RTU protocol,easy access to PLC,DCS and other instruments or systems for monitoring rainfall state quantities.The internal use of high-precision sensing core and related devices to ensure high reliability and excellent long-term stability,can be customized RS232,RS485,CAN,4-20mA,DC0~5V/10V,ZIGBEE,Lora,WIFI,GPRS and other output methods.

Technical Parameters

Technical parameterParameter value
BrandSONBEST
Rainfall range0.01mm~4mm/min
Rainfall Resolution0.01mm~4mm/min
Rain inlet sizeφ200mm
Rainfall Sharp edge40°~45
Rainfall accuracy±3%
Communication InterfaceRS485
Default baud rate9600 8 n 1
PowerDC9~24V 1A
Running temperature-40~80°C
Working humidity5%RH~90%RH

How to wiring?

SM7001B

Precautions

    1、试验工具:专用雨量量筒 1 个、小型滴管 1 个;
    2、试验前的检查:
    试验前先取下不锈钢外筒检查仪器水平泡是否居中、翻斗是否翻转灵活、无卡滞现象,并检查水路是否畅通,然后用清水对引水漏斗、翻斗进行充分润湿;
    3、注水试验
    用双速滴水法检验仪器测量准确度,其方法为:
    用专用雨量量筒量取 10mm 的清水,通过引水漏斗以 0~4mm 雨强之间任意雨强缓缓倒入上翻斗的引水斗内,待下翻斗最后一斗欲翻未翻时,即停止注水,然后用滴管量取定量清水,一滴一滴加入到翻斗内直到下翻斗翻转即停止滴水,依次反复试验,记录翻斗翻转次数与耗用水量。0.2mm 翻斗翻转 50 次,耗用水量为 9.80~9.90mm,则可认定仪器翻斗倾角基点正当倒水量<9.80mm,说明翻斗倾斜角度过小,应适当降低调节螺钉高度;一般讲,调节螺钉转一圈,能使精度改变 2~3%。
    注:本方法只作为现场应急校准仪器误差用。精确校准仪器误差必须按照国家标准GB/T11832-2002《翻斗雨量计》的要求在雨强试验台上进行校准或将仪器返回厂家校准。

Why choose this product?

SM7001B

SM7001B

SM7001B

SM7001B

SM7001B

How to use?

SM7001B

SM7001B

SM7001B

SM7001B

Precautions

    使用前打开设备顶盖,取出固定用皮筋方可正常使用。

Communication Protocol

    The product uses RS485 MODBUS-RTU standard protocol format, all operation or reply commands are hexadecimal data. The default device address is 1 when the device is shipped, the default baud rate is 9600, 8, n, 1
1. Read Data (Function id 0x03)
    Inquiry frame (hexadecimal), sending example: Query 1# device 1 data, the host computer sends the command:01 03 00 00 00 01 84 0A .
Device IDFunction idStart AddressData LengthCRC16
010300 0000 0184 0A
    For the correct query frame, the device will respond with data:01 03 02 00 79 79 A6 , the response format is parsed as follows:
Device IDFunction idData Lengthdata 1Check Code
0103 0200 79 79 A6
    Data Description: The data in the command is hexadecimal. Take data 1 as an example. 00 79 is converted to a decimal value of 121. If the data magnification is 100, the actual value is 121/100=1.21. Others and so on.
2. Data Address Table
AddressStart AddressDescriptionData typeValue range
4000100 01rainfallread0~65535
4010100 64model coderead/write0~65535
4010200 65total pointsread/write1~20
4010300 66Device IDread/write1~249
4010400 67baud rateread/write0~6
4010500 68moderead/write1~4
4010600 69protocolread/write1~10
4010700 6Aintervalread/write0~36000
3 read and modify device address
(1) Read or query device address
    If you don"t know the current device address and there is only one device on the bus, you can use the command FA 03 00 64 00 02 90 5F Query device address.
Device IDFunction idStart AddressData LengthCRC16
FA0300 6400 0290 5F
    FA is 250 for the general address. When you don"t know the address, you can use 250 to get the real device address, 00 64 is the device model register.
    For the correct query command, the device will respond, for example the response data is: 01 03 02 07 12 3A 79, the format of which is as shown in the following table:
Device IDFunction idStart Address Model CodeCRC16
01 03 02 55 3C 00 01 3A 79
    Response should be in the data, the first byte 01 indicates that the real address of the current device is, 55 3C converted to decimal 20182 indicates that the current device main model is 21820, the last two bytes 00 01 Indicates that the device has a status quantity.
(2)Change device address
    For example, if the current device address is 1, we want to change to 02, the command is:01 06 00 66 00 02 E8 14 .
Device IDFunction idStart Address DestinationCRC16
010600 6600 02E8 14
    After the change is successful, the device will return information: 02 06 00 66 00 02 E8 27 , its format is parsed as shown in the following table:
Device IDFunction idStart AddressDestinationCRC16
01 06 00 66 00 02 E8 27
    Response should be in the data, after the modification is successful, the first byte is the new device address. After the general device address is changed, it will take effect immediately. At this time, the user needs to change the query command of the software at the same time.
4 Read and Modify Baud Rate
(1) Read baud rate
    The device default factory baud rate is 9600. If you need to change it, you can change it according to the following table and the corresponding communication protocol. For example, read the current device"s baud rate ID, the command is:01 03 00 67 00 01 35 D5 , its format is parsed as follows.
Device IDFunction idStart AddressData LengthCRC16
01 0300 67 00 01 35 D5
    Read the baud rate encoding of the current device. Baud rate encoding: 1 is 2400; 2 is 4800; 3 is 9600; 4 is 19200; 5 is 38400; 6 is 115200.
    For the correct query command, the device will respond, for example the response data is: 01 03 02 00 03 F8 45, the format of which is as shown in the following table:
Device IDFunction idData Length Rate IDCRC16
01 03 02 00 03 F8 45
    coded according to baud rate, 03 is 9600, ie the current device has a baud rate of 9600.
(2)Change the baud rate
    For example, changing the baud rate from 9600 to 38400, ie changing the code from 3 to 5, the command is: 01 06 00 67 00 05 F8 1601 03 00 66 00 01 64 15 .
Device IDFunction idStart Address Target Baud RateCRC16
010300 6600 0164 15
    Change the baud rate from 9600 to 38400, changing the code from 3 to 5. The new baud rate will take effect immediately, at which point the device will lose its response and the baud rate of the device should be queried accordingly. Modified.
5 Read Correction Value
(1) Read Correction Value
    When there is an error between the data and the reference standard, we can reduce the display error by adjusting the correction value. The correction difference can be modified to be plus or minus 1000, that is, the value range is 0-1000 or 64535 -65535. For example, when the display value is too small, we can correct it by adding 100. The command is: 01 03 00 6B 00 01 F5 D6 . In the command 100 is hex 0x64 If you need to reduce, you can set a negative value, such as -100, corresponding to the hexadecimal value of FF 9C, which is calculated as 100-65535=65435, and then converted to hexadecimal to 0x FF 9C. The correction value starts from 00 6B. We take the first parameter as an example. The correction value is read and modified in the same way for multiple parameters.
Device IDFunction idStart AddressData LengthCRC16
010300 6B00 01F5 D6
    For the correct query command, the device will respond, for example the response data is: 01 03 02 00 64 B9 AF, the format of which is as shown in the following table:
Device IDFunction idData LengthData valueCRC16
01 0302 00 64 B9 AF
    In the response data, the first byte 01 indicates the real address of the current device, and 00 6B is the first state quantity correction value register. If the device has multiple parameters, other parameters operate in this way. The same, the general temperature, humidity have this parameter, the light generally does not have this item.
(2)Change correction value
    For example, the current state quantity is too small, we want to add 1 to its true value, and the current value plus 100 correction operation command is:01 06 00 6B 00 64 F9 FD .
Device IDFunction idStart AddressDestinationCRC16
010600 6B00 64F9 FD
    After the operation is successful, the device will return information: 01 06 00 6B 00 64 F9 FD, the parameters take effect immediately after successful change.

Precautions

    本表列出了仪器可能发生的一般故障现象、原因及故障排除方法。
中心站表现形式故障现象描述解决方法
降雨时收不到数1、干簧管失效。
2、磁钢与干簧管距离过远。
3、焊线脱落或信号线断。
4、翻斗卡住。
5、仪器堵塞
1、更换干簧管
2、调整干簧管距离
3、修复
4、排除
5、清除堵塞
信号不稳定1、雨量传感器翻斗翻转倾角失调,但这种误差一般不超过±10%。
2、磁钢与干簧管距离过远。
3、焊线脱落或信号线断。
4、翻斗卡住。
5、仪器堵塞
1、更换干簧管
2、调整干簧管距离
3、修复
4、排除
5、清除堵塞
雨量一直计数,实际情况不下雨检查插座是否浸水,这种现象往往在下大雨后易发生处理进水,重新安装
    注意:表中所列故障现象不一定是雨量计自身故障,在检查仪器自身排除故障之后还应该检查仪器传输出线、数据采集装置、遥测终端机等设备是否存在故障,并逐一排除解决。

Precautions

本仪器属精密的电子产品,正确的的维护和保养有助于保护仪器性能、延长仪器的使用寿命,请注意以下几点:
    1、请依据使用说明书的要求正确使用说明书,接钱有误有可能导致仪器损坏。
    2、不要用挥发性液体擦拭仪器,否则可能导致仪器变色变形;软布擦拭,避免仪器外部保护膜划伤,延长仪器使用寿命。
    3、仪器应轻拿轻放,不得摔落或重压,否则将导致仪器变形、内部电路板损坏。
    4、不要在仪器带电的情况下触摸感应部位,以影响量结果或导致仪器内部电路的损坏。
    5、请勿私自拆卸和改装本仪器,以免对仪器造成损坏。
    6、仪器使用时应用螺丝牢固固定,否则有可能损坏仪器。
    7、本仪器为精密型单翻斗式雨量计,使用过程中要定期维护、清洗翻斗和引水漏斗出水口。
    8、定期检查仪器电源电压,确保仪器正常运行。

Product Pictures

SM7001B

Product Pictures

SM7001B

SM7001B

SM7001B SM7001B SM7001B SM7001B SM7001B SM7001B准确度现场应急校准办法(客户自行) S08 S10 SM7001B SM7001B SM7001B SM7001B SM7001B SM7001B SM7001B SM7001B SM7001B SM7001B SM7001B
Setup Software
Development File
Online shop

ALIEXPRESS Go to Purchase

Contact Online

Email: sale@sonbest.com

BRAND: KLHA

TYPE: SM7001B

WeChat: 13918126020

SKYPE: SOOBUU

Phone: +86-021-66862075

QQ1: 71182854 QQ2:613035997