All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mapsmessaging.devices.sensorreadings.IntegerSensorReading Maven / Gradle / Ivy

The newest version!
package io.mapsmessaging.devices.sensorreadings;

public class IntegerSensorReading extends NumericSensorReading {

  public IntegerSensorReading(String name, String unit, int min, int max, ReadingSupplier valueSupplier) {
    super(name, unit, min, max, valueSupplier);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy