Skip to content

readProperty documentation fault #1344

@BinkertR

Description

@BinkertR

The API documentation 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);

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions