Hi,
 
only changing the „float temperature“ is not detected by the wakaama core.
If you change a resource, you must call „lwm2m_resource_value_changed“
with the associated uri.
 
e.g.
 
        lwm2m_uri_t uri;
        if (lwm2m_stringToUri("/3/0/9", 6, &uri))
       {
                lwm2m_resource_value_changed(lwm2mH, uri);
        }
  
to inform the core about a battery level change (uri „/3/0/9“).
 
Mit freundlichen Grüßen / Best regards
 
Achim Kraus
 
Bosch Software Innovations GmbH
Communications (INST/ESY4)
Stuttgarter Straße 130
71332 Waiblingen
GERMANY
www.bosch-si.de
www.blog.bosch-si.com
 
achim.kraus@xxxxxxxxxxxx
 
Registered office: Berlin, Register court: Amtsgericht Charlottenburg, HRB 148411 B
Executives: Dr.-Ing. Rainer Kallenbach; Michael Hahn
 
 
I’m currently experimenting a Leshan server and Wakaama client. I have been trying to get Observe method working for Wakaama client however I couldn’t manage
 it so far. First, I tried to observe the device object and I haven’t seen any notification from Wakaama client to Leshan server. After that, I created two IPSO Objects and update the values using a timer because right now I don’t have any real sensor connected
 to the client so I’m kinda faking the resources.