i500 Irrigation Flow Meter MODBUS Inputs
Note: These features can only be accessed by Client Admin users. Your Wildeye devices may be managed by a third party as a service.
Overview
Wildeye devices with RS485 or RS232 can interface with the I500 Flow Meter through the use of MODBUS Inputs. You can read about the article about product codes and required accessories to support I500 meters here.
MODBUS Inputs
All MODBUS registers in the I500 can be logged by your Wildeye. These are set up in the Input Settings page.
Due to the way MODBUS works, it is necessary to use Calculated Inputs to extract some information from some registers, for example to extract bits for status of faults.
Some examples of MODBUS settings and Calculated Inputs are described below. Wildeye devices can be delivered with standard Input settings already configured if requested when ordered.
Battery Level
Current Flow
F & Z Factors
Logic Status
Calculated Inputs
Some examples of using calculated Inputs to extract necessary information from MODBUS registers using bit shifting.
AD Converter Check
Return System.Convert.ToUInt16(Inputs.Logic status of Self Test function.Value) >> 0 And 1
Coil Current Check
Return System.Convert.ToUInt16(Inputs.Logic status of Self Test function.Value) >> 6 And 1
Coil Resistance High
Return System.Convert.ToUInt16(Inputs.Logic status of System Faults.Value) >> 3 And 1
Signal Noise Fault
Return System.Convert.ToUInt16(Inputs.Logic status of System Faults.Value) >> 7 And 1