Ich nutze schon seit längerem Forecast.io über das "weather binding" mit einer 5-Tages Vorhersage und bin eigentlich sehr zufrieden.
Hier sind die verschiedenen Items incl. 5Tage.
Code: Alles auswählen
// atmosphere
Number Humidity "Humidity [%d %%]" {weather="locationId=home, type=atmosphere, property=humidity"}
Number Visibility "Visibility [%.0f km]" {weather="locationId=home, type=atmosphere, property=visibility"}
Number Pressure "Pressure [%.0f hPa]" {weather="locationId=home, type=atmosphere, property=pressure"}
String Pressure_Trend "Pressuretrend [MAP(weather_de.map):%s]" {weather="locationId=home, type=atmosphere, property=pressureTrend"}
//Number Ozone "Ozone [%d ppm]" {weather="locationId=home, type=atmosphere, property=ozone"}
//Number UV_Index "UV Index" {weather="locationId=home, type=atmosphere, property=uvIndex, scale=0"}
// clouds
//Number Clouds "Clouds [%.0f %%]" {weather="locationId=home, type=clouds, property=percent"}
// condition
String Condition "Condition [%s]" {weather="locationId=home, type=condition, property=text"}
//String Condition_ID "Condition id [%s]" {weather="locationId=home, type=condition, property=id"}
//DateTime ObservationTime "Observation time [%1$td.%1$tm.%1$tY %1$tH:%1$tM]" {weather="locationId=home, type=condition, property=observationTime"}
//DateTime LastUpdate "Last update [MAP(weather_de.map):%1$td.%1$tm.%1$tY %1$tH:%1$tM]" {weather="locationId=home, type=condition, property=lastUpdate"}
//String CommonId "Common id [%s]" {weather="locationId=home, type=condition, property=commonId"}
// precipitation
Number Rain "Rain [%.2f mm/h]" {weather="locationId=home, type=precipitation, property=rain"}
Number Snow "Snow [%.2f mm/h]" {weather="locationId=home, type=precipitation, property=snow"}
Number Precip_Probability "Precip probability [%d %%]" {weather="locationId=home, type=precipitation, property=probability"}
// temperature
Number Temperature "Temperature [%.2f °C]" {weather="locationId=home, type=temperature, property=current"}
//Number Temp_Feel "Temperature feel [%.2f °C]" {weather="locationId=home, type=temperature, property=feel"}
//Number Temp_Dewpoint "Dewpoint [%.2f °C]" {weather="locationId=home, type=temperature, property=dewpoint"}
// min and max values only available in forecasts
//Number Temp_Min "Temperature min [%.1f °C]" {weather="locationId=home, type=temperature, property=min"}
//Number Temp_Max "Temperature max [%.1f °C]" {weather="locationId=home, type=temperature, property=max"}
//String Temp_MinMax "Min/Max [%s °C]" {weather="locationId=home, type=temperature, property=minMax"}
// wind
Number Wind_Speed "Windspeed [%.0f km/h]" {weather="locationId=home, type=wind, property=speed"}
String Wind_Direction "Wind direction [MAP(weather_de.map):%s]" {weather="locationId=home, type=wind, property=direction"}
//Number Wind_Degree "Wind degree [%.0f °]" {weather="locationId=home, type=wind, property=degree"}
//Number Wind_Gust "Wind gust [%.2f km/h]" {weather="locationId=home, type=wind, property=gust"}
//Number Wind_Chill "Wind chill [%.2f °C]" {weather="locationId=home, type=wind, property=chill"}
// weather station (only Hamweather)
//String Station_Name "Station Name [%s]" {weather="locationId=home, type=station, property=name"}
//String Station_Id "Station Id [%s]" {weather="locationId=home, type=station, property=id"}
//Number Station_Latitude "Station Latitude [%.6f]" {weather="locationId=home, type=station, property=latitude, scale=6"}
//Number Station_Longitude "Station Longitude [%.6f]" {weather="locationId=home, type=station, property=longitude, scale=6"}
// Vorhersagedaten
// 1-Tag -> morgen
Number Temperature1 "Temperature [%.1f °C]" {weather="locationId=home, forecast=1, type=temperature, property=current"}
Number Rain1 "Rain [%.2f mm/h]" {weather="locationId=home, forecast=1, type=precipitation, property=rain"}
Number Precip_Probability1 "Precip probability [%d %%]" {weather="locationId=home, forecast=1, type=precipitation, property=probability"}
// 2-Tage -> übermorgen
//Number Temperature2 "Temperature [%.1f °C]" {weather="locationId=home, forecast=2, type=temperature, property=current"}
//Number Rain2 "Rain [%.2f mm/h]" {weather="locationId=home, forecast=2, type=precipitation, property=rain"}
//Number Precip_Probability2 "Precip probability [%d %%]" {weather="locationId=home, forecast=2, type=precipitation, property=probability"}
// 3-Tage
//Number Temperature3 "Temperature [%.1f °C]" {weather="locationId=home, forecast=3, type=temperature, property=current"}
//umber Rain3 "Rain [%.2f mm/h]" {weather="locationId=home, forecast=3, type=precipitation, property=rain"}
//Number Precip_Probability3 "Precip probability [%d %%]" {weather="locationId=home, forecast=3, type=precipitation, property=probability"}
// 4-Tage
//Number Temperature4 "Temperature [%.1f °C]" {weather="locationId=home, forecast=4, type=temperature, property=current"}
//umber Rain4 "Rain [%.2f mm/h]" {weather="locationId=home, forecast=4, type=precipitation, property=rain"}
//Number Precip_Probability4 "Precip probability [%d %%]" {weather="locationId=home, forecast=4, type=precipitation, property=probability"}
// 5-Tage
//Number Temperature5 "Temperature [%.1f °C]" {weather="locationId=home, forecast=5, type=temperature, property=current"}
//Number Rain5 "Rain [%.2f mm/h]" {weather="locationId=home, forecast=5, type=precipitation, property=rain"}
//Number Precip_Probability5 "Precip probability [%d %%]" {weather="locationId=home, forecast=5, type=precipitation, property=probability"}
Vieleicht hilft dir das weiter.