I am trying to add 2 HUE 0220 bulbs into a group that is inside another group. And it will alway display 4 dimmers.
sitemap home label=“RK-SmartHouse”{
Frame label=“Presence”
{
Switch item=gPresence icon=“mobile_n” label=“Mobile Presence”
Text label=“People” icon=“peoples_n”
{
Switch item=Network_ron_phone_Online icon=“boy_n” label=“Ron iPhone”
Switch item=Network_nathan_ipad_Online icon=“boy_n” label=“Nathan iPad”
Switch item=Network_tammy_iphone_Online icon=“girl_n” label=“Tammy iPhone”
}
}
Frame label="Rooms"
{
Group item=LivingRoom
Group item=Diningroom
Group item=Kitchen
Group item=Hallway
Group item=MasterBedroom
Group item=NathanBedroom
Group item=Office
Group item=MasterBathroom
Group item=GuestBathroom
Group item=Exterior
}
Frame label="Weather"
{
Text item=Temperature_F icon="temp_n"
Text item=Temp_Feel_F icon="feels_n"
Text item=Condition icon="condition_n"
Text item=Humidity icon="humidity_n"
Text item=Wind_Speed_Mph icon="wind_n"
Text item=Wind_Direction icon="wdirection_n"
Text item=Pressure_Inches icon="pressure_n"
}
}
/////////////// home.items
//itemtype itemname “labeltext [stateformat]” (group1, group2, …) [“tag1”, “tag2”, …] {bindingconfig}
Group Home “Our Home”
Group LivingRoom “Living Room” <livingroom_n> (Home)
Group Kitchen “Kitchen” <kitchen_n> (Home)
Group Diningroom “Dining Room” <table_n> (Home)
Group Hallway “Hallway” <hallway_n> (Home)
Group MasterBedroom “Master Bedroom” <bedroom_n> (Home)
Group NathanBedroom “Nathan Bedroom” <bedroom_n> (Home)
Group Office “Office” <desk_n> (Home)
Group MasterBathroom “Master Bathroom” <bathroom_n> (Home)
Group GuestBathroom “Guest Bathroom” <bathroom_n> (Home)
Group Exterior “Exterior” <tree_n> (Home)
Group Light “Lighting” <lights_n> (Home)
//////////////// light.items
//itemtype_or_itemname “labeltext [stateformat]” <iconname> (group1, group2, …) [“tag1”, “tag2”, …] {bindingconfig}
//Group Lighting Switches
Group:Switch:OR(ON,OFF) gHallway (Hallway)
Group:Switch:OR(ON,OFF) gLight “All Lights”
//Hall Light
Dimmer Dimmer_Hall_Light1 “Hall Light Dimmer” (Hallway, gHallway, gLights) { channel=“hue:0220:001788a1aa73:5:brightness” }
Dimmer Color_Hall_Light1 “Hall Light Color” (Hallway, gHallway, gLights) { channel=“hue:0220:001788a1aa73:5:color_temperature” }
Dimmer Dimmer_Hall_Light2 “Hall Light Dimmer” (gHallway, gLights) { channel=“hue:0220:001788a1aa73:6:brightness” }
Dimmer Color_Hall_Light2 “Hall Light Color” (gHallway, gLights) { channel=“hue:0220:001788a1aa73:6:color_temperature” }