[SOLVED] Google Home is syncing two not tagged Hue devices

Hello,

I am Using a Raspberry Pi 3+ with openhabian. I integrated devices over MQTT and Philips Hue, at the moment.

After the sync from Google Home, there two devices with the name color, this are my Philips Hue lights. But I don’t give them the Tag “Lightning” or “Switchable”, but they get synchronized. One of them can be controlled the other one not.

Here is my .items:

//Deckenlampe
Switch Zimmer_Deckenlampe_Toggel “Deckenlampe” (gLight) [“Switchable”]
//Schreibtischlampe
Switch Zimmer_Schreibtischlampe_Toggel “Schreibtischlampe” (gLight) [“Switchable”]
//Ikealampe
Switch Zimmer_Ikealampe_Toggle “Ikealampe” (gLight)
Dimmer Zimmer_Ikealampe_Dimmer “Helligkeit” (gLight)
Color Zimmer_Ikealampe_Color “Farbe” (gLight)
Dimmer Zimmer_Ikealampe_ColorTemp “Temperatur” (gLight)
//Schranklampe
Switch Zimmer_Schranklampe_Toggle “Schranklampe” (gLight)
Dimmer Zimmer_Schranklampe_Dimmer “Helligkeit” (gLight)
Color Zimmer_Schranklampe_Color “Farbe” (gLight)
Dimmer Zimmer_Schranklampe_ColorTemp “Temperatur” (gLight)

Only two Lights got the “Switchable” and there got correctly synchronized. But I don’t want the Philips Lights, because I control them over the Hue App.

Here a picture out of Google Home:

Greetings

Found a solution. It was old items for hue in PaperUi. To delete them use this over ssh:

sudo systemctl stop openhab2.service
sudo rm -r /var/lib/openhab2/tmp/
sudo rm -r /var/lib/openhab2/cache/
sudo systemctl start openhab2.service