![JAR search and dependency download from the Maven repository](/logo.png)
io.github.hapjava.characteristics.impl.television.RemoteKeyCharacteristic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hap Show documentation
Show all versions of hap Show documentation
Homekit Accessory Protocol for Java
package io.github.hapjava.characteristics.impl.television;
import io.github.hapjava.characteristics.ExceptionalConsumer;
import io.github.hapjava.characteristics.impl.base.EnumCharacteristic;
import java.util.Optional;
/**
* This characteristic sends information about pressed key on tv remote. See {@link RemoteKeyEnum}
* for possible values.
*/
public class RemoteKeyCharacteristic extends EnumCharacteristic {
public RemoteKeyCharacteristic(ExceptionalConsumer setter) {
super(
"000000E1-0000-1000-8000-0026BB765291",
"remote key",
RemoteKeyEnum.values(),
Optional.empty(),
Optional.of(setter),
Optional.empty(),
Optional.empty());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy