-
Notifications
You must be signed in to change notification settings - Fork 1
modify python SDK and update README #1
New issue
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
base: master
Are you sure you want to change the base?
Conversation
…ctor the connection part
README.md
Outdated
| thing = Thing("thing-id", "thing-name", "thing-kind") | ||
| ``` | ||
| You can only use Thing as either an input component(sensor) or an output component. | ||
| If your thing has both properties and actions, it acts as an input component. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think if these kinds of thing can be used as both input/output component
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have checked a Thing instance can be both input and output component.
But I think I can only use a Thing instance as either input or output component in a project page.
So I rewrite this part like the below.
A Thing instance can have both properties and actions. But you can only use it as either an input component or an output component in each project.
improve communication part, refactor code, and update README