Skip to content

Add property value spec for motor state #164

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

Merged
merged 1 commit into from
May 30, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,36 @@
}
]
},
{
"propertyName": "State",
"values": [
{ "name": "running",
"description": [
"Power is being sent to the motor."
]
},
{ "name": "ramping",
"description": [
"The motor is ramping up or down and has not yet reached a constant output level."
]
},
{ "name": "holding",
"description": [
"The motor is not turning, but rather attempting to hold a fixed position."
]
},
{ "name": "overloaded",
"description": [
"The motor is turning, but cannot reach its `speed_sp`."
]
},
{ "name": "stalled",
"description": [
"The motor is not turning when it should be."
]
}
]
},
{
"propertyName": "Stop Action",
"values": [
Expand All @@ -335,7 +365,7 @@
"description": [
"Does not remove power from the motor. Instead it actively try to hold the motor",
"at the current position. If an external force tries to turn the motor, the motor",
"will ``push back`` to maintain its position."
"will `push back` to maintain its position."
]
}
]
Expand Down