ADD file via upload

main
pfvwqyiue 6 months ago
parent e470f96f36
commit 050a1a5c39

@ -0,0 +1,33 @@
/**
*
*
*/
public interface LightControl {
/**
*
*/
void turnOnLight();
/**
*
*/
void turnOffLight();
/**
*
* @param brightness 0-100
*/
void setBrightness(int brightness);
/**
*
* @param color "white", "red", "blue"
*/
void setColor(String color);
/**
*
* @return
*/
boolean isLightOn();
}
Loading…
Cancel
Save