Skip to content

Get All Rooms

Maxi Zink edited this page Feb 13, 2022 · 2 revisions

Info

With that you can find all Rooms connected in your "Hue Network".

Usage

private void getHueRooms(final HueBridge hueBridge) {
  HueRoomDiscovery hueRoomDiscovery = ServiceAccessor.accessService(HueRoomDiscovery.class);
  
 List<HueRoom> rooms = hueBridge.getRooms();
 List<HueRoom> roomsByService = hueRoomDiscovery.discoverAllRooms(hueBridge); //Does exactly the same
}