Frame {
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="Time of Day" mappings=[OFF="Day", ON="Night"]
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="Weather Forecast"{
Text label="Coming soon..." icon="sun_clouds"
}
}
Can you discuss a little bit more about how youāre pulling the channel data for these items/things? Iām presuming the Astro binding for the sun/moon information, but what are you using for weather? Also, can you show an image of this particular sub frame? Iām 'trying to visualize what it is supposed to look like, because my attempted implementation of this is coming back empty:
Hereās the āMainā interface:
.
.
And the āWeather and Astroā group: