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

io.github.hapjava.characteristics.impl.thermostat.CoolingThresholdTemperatureCharacteristic Maven / Gradle / Ivy

There is a newer version: 2.0.7
Show newest version
package io.github.hapjava.characteristics.impl.thermostat;

import io.github.hapjava.characteristics.ExceptionalConsumer;
import io.github.hapjava.characteristics.HomekitCharacteristicChangeCallback;
import io.github.hapjava.characteristics.impl.base.FloatCharacteristic;
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import java.util.function.Consumer;
import java.util.function.Supplier;

/**
 * This characteristic describes the cooling threshold on which accessories turns on the cooling.
 */
public class CoolingThresholdTemperatureCharacteristic extends FloatCharacteristic {
  public static final double DEFAULT_MIN_VALUE = 10;
  public static final double DEFAULT_MAX_VALUE = 35;
  public static final double DEFAULT_STEP = 0.1;

  public CoolingThresholdTemperatureCharacteristic(
      double minValue,
      double maxValue,
      double step,
      Supplier> getter,
      ExceptionalConsumer setter,
      Consumer subscriber,
      Runnable unsubscriber) {
    super(
        "0000000D-0000-1000-8000-0026BB765291",
        "cooling threshold",
        minValue,
        maxValue,
        step,
        "C",
        Optional.of(getter),
        Optional.of(setter),
        Optional.of(subscriber),
        Optional.of(unsubscriber));
  }

  public CoolingThresholdTemperatureCharacteristic(
      Supplier> getter,
      ExceptionalConsumer setter,
      Consumer subscriber,
      Runnable unsubscriber) {
    this(
        DEFAULT_MIN_VALUE,
        DEFAULT_MAX_VALUE,
        DEFAULT_STEP,
        getter,
        setter,
        subscriber,
        unsubscriber);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy