-
Notifications
You must be signed in to change notification settings - Fork 23
Return command status when setting a config parameter #177
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
Changes from 4 commits
9d784f3
6052d1b
70f8dc2
5754183
1c23002
b32913a
f52930c
a6ce5d9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,14 @@ | |
| VALUE_UNKNOWN = "unknown" | ||
|
|
||
|
|
||
| class CommandStatus(str, Enum): | ||
| """Status of a command sent to zwave-js-server.""" | ||
|
|
||
| ACCEPTED = "accepted" | ||
| QUEUED = "queued" | ||
| FAILED = "failed" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't seem to use the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can remove it. I was thinking it would be nice in the future if, for queued messages, we could support an optional callback in the future that returned the result once the message was processed which is why I had added this. But I will remove it for now and we can discuss that separately |
||
|
|
||
|
|
||
| class EntryControlEventType(IntEnum): | ||
| """Entry control event types.""" | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.