예제 #1
0
파일: Group.php 프로젝트: sqmk/phue
 /**
  * Set brightness
  *
  * @param int $level
  *            Brightness level
  *
  * @return self This object
  */
 public function setBrightness($level = SetLightState::BRIGHTNESS_MAX)
 {
     $x = new SetGroupState($this);
     $y = $x->brightness((int) $level);
     $this->client->sendCommand($y);
     $this->attributes->action->bri = (int) $level;
     return $this;
 }