Hi, I’m trying to migrate from domoticz and I’m impressed with the possibilities and the community behind openhab, although it is somewhat difficult to configure since I do not know much about programming.
I am trying to configure astrobinding through the examples on this page:
But I can not get the elements of the sitemap in the Basic UI, the name of the file appears but when you press nothing appears.
It is already corrected and added but it still does not work, nothing appears when I click on “astro” in sitemaps.
Rule file is not necessary since it only shows information
astro.sitemap
sitemap astro label="Astro Sitemap"
{
Text item=Current_DateTime label="Weather and Astro [%1$tA, %1$td.%1$tm.%1$tY]" icon="sun_clouds" {
Frame label="Now" {
//Switch item=Night_State label="Phase of Day" mappings=[OFF="Tag", ON="Nacht"]
Text item=Day_Phase icon="sunmoon"
Text item=Sunrise_Time icon="sunrise" visibility=[Night_State == ON]
Text item=Sunset_Time icon="sunset" visibility=[Night_State == OFF]
Text item=Sun_Elevation icon="sunmoon" visibility=[Sun_Elevation > 0]
Text item=Moon_Elevation icon="sunmoon" visibility=[Moon_Elevation > 0]
Text item=Zodiac_Sign icon="zodiac"
Text item=Moon_Phase
Text item=Moon_Next_Full icon="fullmoon"
visibility=[Moon_Phase == WAXING_CRESCENT,
Moon_Phase == FIRST_QUARTER,
Moon_Phase == WAXING_GIBBOUS,
Moon_Phase == FULL]
Text item=Moon_Next_New icon="fullmoon"
visibility=[Moon_Phase == WANING_GIBBOUS,
Moon_Phase == THIRD_QUARTER,
Moon_Phase == WANING_CRESCENT,
Moon_Phase == NEW]
}
Frame label="Forecast" {
Text label="This is part of other tutorials..." icon="sun_clouds"
}
}
}