Skip to main content

Interface IKellerTransducer

Defines the interface for Keller pressure transducers and transmitters.

Assembly: Keller.XLine.dll
View Source
Declaration
public interface IKellerTransducer

Methods

ReadTemperature(TemperatureChannel)

Reads the temperature from the specified temperature channel.

View Source
Declaration
Task<Temperature> ReadTemperature(TemperatureChannel channel)
Returns

System.Threading.Tasks.Task<Meadow.Units.Temperature>: A task that represents the asynchronous operation. The value is the temperature reading.

Parameters
TypeNameDescription
Meadow.Foundation.Sensors.Environmental.TemperatureChannelchannelThe temperature channel to read from.

ReadPressure(PressureChannel)

Reads the pressure from the specified pressure channel.

View Source
Declaration
Task<Pressure> ReadPressure(PressureChannel channel)
Returns

System.Threading.Tasks.Task<Meadow.Units.Pressure>: A task that represents the asynchronous operation. The value is the pressure reading.

Parameters
TypeNameDescription
Meadow.Foundation.Sensors.Environmental.PressureChannelchannelThe pressure channel to read from.

ReadModbusAddress()

Reads the Modbus address of the device.

View Source
Declaration
Task<byte> ReadModbusAddress()
Returns

System.Threading.Tasks.Task<System.Byte>: A task that represents the asynchronous operation. The value is the Modbus address as a byte.### ReadSerialNumber() Reads the serial number of the device.

View Source
Declaration
Task<int> ReadSerialNumber()
Returns

System.Threading.Tasks.Task<System.Int32>: A task that represents the asynchronous operation. The value is the device's serial number.