We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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);
The text was updated successfully, but these errors were encountered:
You are right, the MD files is out of date.
It needs more work. e.g., on ExposedThing there is no thing.writeProperty() method anymore etc.
ExposedThing
thing.writeProperty()
I wonder whether we should keep this document at all or rather point to something like https://thingweb.io/hands-on/articles/intro-raspberry
@relu91 @egekorkan
Sorry, something went wrong.
I would keep this document and update it. This will be also rendered on the new website
Yes, let's discuss the concrete steps in the next committer meeting. Meanwhile, we can merge #1345
No branches or pull requests
The API documentation of how to read a property is currently faulty.
current description is:
but it is necessary to read the value like:
The text was updated successfully, but these errors were encountered: