The [API documentation](https://github.com/eclipse-thingweb/node-wot/blob/master/API.md) of how to read a property is currently faulty. current description is: ``` let read1 = await thing.readProperty("count"); console.info("count value is", read1); ``` but it is necessary to read the value like: ``` let read1 = await thing.readProperty("count"); let value = await read1.value() console.info("count value is", value); ```