SensorLabel.java 280 B

1234567891011
  1. package de.tu_darmstadt.tk.SmartHomeNetworkSim.core.devices;
  2. public interface SensorLabel {
  3. /**
  4. * Returns float or Boolean encoded as string of the sensor measuring this device
  5. *
  6. * @return float/boolean sensor value as string
  7. */
  8. String getSensorLabel();
  9. }