Skip to content

Commit

Permalink
fix clutch
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoignonec committed Aug 9, 2024
1 parent 990b71b commit da1f355
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ controller_interface::return_type FdClutchBroadcaster::update(
} else {
// Clutched (workspace engaged) if handle angle is small (i.e., physically clutched)
// E.g., 7th "joint" of Omega 6 / Sigma 7
clutch_state = (read_value > 0.03) ? true : false;
clutch_state = (read_value < 0.03) ? true : false;
}

// Publish clucth
Expand Down

0 comments on commit da1f355

Please sign in to comment.