io.github.zeroone3010.yahueapi.TemperatureSensor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yetanotherhueapi Show documentation
Show all versions of yetanotherhueapi Show documentation
A library for controlling Philips Hue lights.
package io.github.zeroone3010.yahueapi;
import java.math.BigDecimal;
public interface TemperatureSensor extends Sensor {
/**
* Returns the detected temperature in degrees Celcius.
*
* @return A {@code BigDecimal} with two decimal places, indicating the current temperature.
*/
BigDecimal getDegreesCelsius();
}