[SOLVED] KN@ some properties do not show

Hi,

I’m migrating from KNX1 to KNX2. Most things work, but I have some problems with reading information from the KNX bus. They simply don’t show up in the ui.

In my test setup items Temperature_Livingroom_1, Base_Target_Value_Livingroom_1, Controller_Livingroom_1, Target_Temperature_Livingroom_1, WS_Temperature, WS_Rain never get a value.

In my KNX1 setup, it works fine.

Perhaps I just made a stupid mistake, but I don’t see it.

Here my test set-up:

test.things:

Bridge knx:ip:GIRA_2167_Router "GIRA KNX/IP Router" @ "Verteiler" [
    type="ROUTER",
    ipAdress="192.168.178.220",
    portNumber=3671,
	localIp="192.168.178.24",
	readingPause=50,
	responseTimeout=10,
	readRetriesLimit=3,
	autoReconnectPeriod=30,
    localSourceAddr="1.1.0" ]
    {

/* 
 * Heizungsaktoren 
 */
    Thing device test "test" @ "Verteiler" [ address="1.1.1", fetch=false, pingInterval=300, readInterval=300 ] 
    {
        Type contact : Channel_35_1           "Channel_35_1"           [ ga="<3/4/11" ]
        Type number  : Channel_4_22_Ist       "Channel_4_22_Ist"       [ ga="9:001:<3/4/21" ]
        Type number  : Channel_4_26_Basis     "Channel_4_26_Basis"     [ ga="9:001:<3/4/31" ]
        Type number  : Channel_4_36_Status    "Channel_4_36_Status"    [ ga="5:001:<3/4/51" ]
        Type contact : Channel_4_37_Meldung   "Channel_4_37_Meldung"   [ ga="1.001:<3/4/61" ]
        Type number  : Channel_4_50_Soll      "Channel_4_50_Soll"      [ ga="9:001:<3/4/41" ]
        Type dimmer  : Channel_176_3          "Channel_176_3"          [ switch="1.001:7/1/1+<14/2/71", position="14/1/71+<14/4/71", increaseDecrease="7/5/1" ]
    }
/*
 * Wetterstation
 */ 
    Thing device JUNG_2225_WSA_101 "JUNG_2225_WSA_101" @ "Terrasse" [ address="1.1.101", fetch=false, pingInterval=600, readInterval=30 ] 
    {
        Type number   : Channel_101_12_Temperatur               "Channel_101_12_Temperatur"             [ ga="9:001:<11/7/21" ]
        Type contact  : Channel_101_38_Niederschlag             "Channel_101_38_Niederschlag"           [ ga="1.001:<11/7/32" ]
        Type string   : Channel_101_3_Windorientierung          "Channel_101_3_Windorientierung"        [ ga="16.001:<11/7/13" ]
        Type datetime : Channel_101_15_GPSUhrzeit               "Channel_101_15_GPSUhrzeit"             [ ga="10.001:<11/7/61" ]
        Type datetime : Channel_101_16_GPSDatum                 "Channel_101_16_GPSDatum"               [ ga="11.001:<11/7/62" ]
   }

}

items.test:

Dimmer	Light_A11                       "Büro [%.2f %%]"                        	     { channel="knx:device:GIRA_2167_Router:test:Channel_176_3" }

Contact	ServoDrive_Livingroom_1         "Stellantrieb Wohnzimmer rand [MAP(de.map):%s]"	 { channel="knx:device:GIRA_2167_Router:test:Channel_35_1" }

Number	Temperature_Livingroom_1        "Temperatur Wohnzimmer Sitzecke [%.1f °C]"       { channel="knx:device:GIRA_2167_Router:test:Channel_4_22_Ist" }
Number	Base_Target_Value_Livingroom_1  "Basis Sollwert Wohnzimmer Sitzecke [%.1f °C]"   { channel="knx:device:GIRA_2167_Router:test:Channel_4_26_Basis" }
Contact	Controller_Livingroom_1         "Regler Wohnzimmer Sitzecke [MAP(de.map):%s]"    { channel="knx:device:GIRA_2167_Router:test:Channel_4_37_Meldung" }
Number	Target_Temperature_Livingroom_1 "Soll-Temperatur Wohnzimmer Sitzecke [%.1f °C]"  { channel="knx:device:GIRA_2167_Router:test:Channel_4_50_Soll" }

/* Wetterstation*/
Number   WS_Temperature 			    "Outside Temperatur [%.1f °C]"                   { channel="knx:device:GIRA_2167_Router:JUNG_2225_WSA_101:Channel_101_12_Temperatur" } 
Contact  WS_Rain		              	"Rain [MAP(regen.map):%s]"                       { channel="knx:device:GIRA_2167_Router:JUNG_2225_WSA_101:Channel_101_38_Niederschlag" }
String   WS_Wind_Text		           	"Wind [%s]"                                      { channel="knx:device:GIRA_2167_Router:JUNG_2225_WSA_101:Channel_101_3_Windorientierung" }
DateTime WS_GPS_Time			       	"GPS Time [%1$ta %1$tR]"                         { channel="knx:device:GIRA_2167_Router:JUNG_2225_WSA_101:Channel_101_15_GPSUhrzeit" }
DateTime WS_GPS_Date			       	"GPS Date [%1$te %1$tb %1$tY]"                   { channel="knx:device:GIRA_2167_Router:JUNG_2225_WSA_101:Channel_101_16_GPSDatum" }

test.sitemap:

sitemap Test label="Test"
{
	Frame label="Test" {
		Slider item=Light_A11
		Text item=ServoDrive_Livingroom_1
		Text item=Temperature_Livingroom_1
		Text item=Base_Target_Value_Livingroom_1
		Text item=Controller_Livingroom_1
		Text item=Target_Temperature_Livingroom_1
		Text item=WS_Temperature
		Text item=WS_Rain
		Text item=WS_Wind_Text
		Text item=WS_GPS_Time
		Text item=WS_GPS_Date
    }
}

Any help appreciated.

Martin

DPT is 9.001, not 9:001 :wink:
This also applies to the other misspelled DPT 5:001 …

Thanks a million, Udo. How blind can one be. I have stared at these definitions and double-checked I don’t know how many times. Thanks again.