Skip to content

Lamp Brightness

Maxi Zink edited this page Feb 4, 2022 · 1 revision

Usage

private void updateLamp(final HueBridge hueBridge) {
  HueLamp hueLamp = hueBridge.getLampByName("My Lamp").get();
  //The Number Value is a value from 1-100
  hueLamp.updateSync(LampUpdateType.BRIGHTNESS, 100);
}
Clone this wiki locally