Skip to content
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

Implement new gripper device: qb SoftHand2 Research #267

Open
PeterBowman opened this issue Sep 4, 2023 · 3 comments
Open

Implement new gripper device: qb SoftHand2 Research #267

PeterBowman opened this issue Sep 4, 2023 · 3 comments
Assignees

Comments

@PeterBowman
Copy link
Member

PeterBowman commented Sep 4, 2023

RS485 protocol characteristics:

  • 8 bit
  • no parity
  • 1 stop bit
  • no flow control
  • 2M baud rate

Power supply: 24VDC with at least 2.5A (60W) and 3.75A overload.

Control modes:

/**
 * @brief Get the control mode parameter
 *
 * @param[out] control_mode
 * - 0 - Classic position control
 * - 1 - Direct PWM value
 * - 2 - Current control
 * - 3 - Position and current control
 * - 4 - Deflection control (only for qbmoves)
 * - 5 - Deflection and current control (only for qbmoves)
 * @return 0 on success, -1 on error 
 */
virtual int getParamControlMode(uint8_t &control_mode);
@PeterBowman PeterBowman self-assigned this Sep 4, 2023
@PeterBowman
Copy link
Member Author

YARP 3.9 has introduced a new IJointCoupling interface. Perhaps not so useful here than on the Dextra hand (ping @jgvictores), but it's interesting anyway.

@jgvictores
Copy link
Member

YARP 3.9 has introduced a new IJointCoupling interface. Perhaps not so useful here than on the Dextra hand (ping @jgvictores), but it's interesting anyway.

If I'm understanding the objective correctly, it's mostly useful for simulation. https://github.com/roboticslab-uc3m/tools/tree/d7f4442d7a9289870ca7dc253fd4c914f435de86/libraries/YarpPlugins/RealToSimControlBoard which is generic could probably benefit from it.

@PeterBowman
Copy link
Member Author

Introducing ControlBoardCouplingHandler (implements IJointCoupling): robotology/yarp#3085.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

When branches are created from issues, their pull requests are automatically linked.

2 participants