-
Notifications
You must be signed in to change notification settings - Fork 0
Get All Rooms
Maxi Zink edited this page Feb 13, 2022
·
2 revisions
With that you can find all Rooms connected in your "Hue Network".
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
}