Skip to content

Commit

Permalink
update clutching rule for Omega 6
Browse files Browse the repository at this point in the history
  • Loading branch information
Thibault Poignonec committed Aug 8, 2024
1 parent aeba5f7 commit ec7015e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ controller_interface::return_type FdClutchBroadcaster::update(
clutch_state = (read_value > 0.5) ? true : false;
} else {
// Clutched (workspace engaged) if handle angle is small (i.e., physically clutched)
clutch_state = (read_value < 0.1) ? true : false;
// E.g., 7th "joint" of Omega 6 / Sigma 7
clutch_state = (read_value > 0.03) ? true : false;
}

// Publish clucth
Expand Down

0 comments on commit ec7015e

Please sign in to comment.