Skip to content
Snippets Groups Projects
Commit dc5c080f authored by Tim Stadtmann's avatar Tim Stadtmann
Browse files

Fix issue #16

Motor.isRunning is now correctly set to currentSpeed~=0
parent 25b1dd83
Branches
No related tags found
No related merge requests found
......@@ -808,7 +808,7 @@ classdef Motor < handle & dynamicprops
end
function running = get.isRunning(motor)
running = motor.currentSpeed>0;
running = (motor.currentSpeed~=0);
end
function synced = get.isSynced(motor)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment