io.mapsmessaging.devices.sensorreadings.FloatSensorReading Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deviceLibrary Show documentation
Show all versions of deviceLibrary Show documentation
Provides a plugable Device integration and access
The newest version!
package io.mapsmessaging.devices.sensorreadings;
public class FloatSensorReading extends NumericSensorReading {
public FloatSensorReading(String name, String unit, float min, float max, ReadingSupplier valueSupplier) {
super(name, unit, min, max, valueSupplier);
}
}