in lethingaccesssdk/thing_access.py [0:0]
def reportProperties(self, propertiesDict):
'''
report Property
param propertiesDict[dict]:report property, eg:
{
'property1':'xxx',
'property2':'yyy',
...
}
'''
if self.device is not None:
self.device.reportProperties(propertiesDict)
else:
logging.error("plese register and online firstly")