Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.4.0
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version jazzy
Last Updated 2025-05-30
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.4.0 (2025-05-30)

  • Merge pull request #191 from mintar/remove-ament-target-dependencies [kilted] Update deprecated call to ament_target_dependencies
  • Update to C++ standard 17
  • [kilted] Update deprecated call to ament_target_dependencies
  • Contributors: Martin Günther

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.4.0
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version kilted
Last Updated 2025-05-30
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.4.0 (2025-05-30)

  • Merge pull request #191 from mintar/remove-ament-target-dependencies [kilted] Update deprecated call to ament_target_dependencies
  • Update to C++ standard 17
  • [kilted] Update deprecated call to ament_target_dependencies
  • Contributors: Martin Günther

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.4.0
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version rolling
Last Updated 2025-05-30
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.4.0 (2025-05-30)

  • Merge pull request #191 from mintar/remove-ament-target-dependencies [kilted] Update deprecated call to ament_target_dependencies
  • Update to C++ standard 17
  • [kilted] Update deprecated call to ament_target_dependencies
  • Contributors: Martin Günther

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro ardent showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro bouncy showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro crystal showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro eloquent showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro dashing showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro galactic showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro foxy showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro iron showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro lunar showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro jade showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro indigo showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro hydro showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro kinetic showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro melodic showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange

No version for distro noetic showing humble. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2.3.4
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros-drivers/phidgets_drivers.git
VCS Type git
VCS Version humble
Last Updated 2025-05-19
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Driver for the Phidgets Stepper devices

Additional Links

No additional links.

Maintainers

  • Martin Günther
  • Chris Lalancette

Authors

  • Cedric Pradalier

Phidgets stepper ROS 2 driver

This is the ROS 2 driver for Phidgets stepper.

Usage

To run this driver standalone, do the following:

ros2 launch phidgets_stepper stepper-launch.py

Published Topics

  • ~/config (phidgets_msgs/StepperConfig) - Get the min/max values of the configurable parameters
  • ~/state (phidgets_msgs/StepperState) - Get the run time state (engaged, moving, target)
  • ~/joint (sensor_msgs/JointState) - Publish the motor state as a standard joint message

Subscribed Topics

  • ~/command (phidgets_msgs/StepperCommand) - Send a command to the motor, either in position or run mode, can also be used to disengage the motor

Services

  • ~/zero (std_srvs/Trigger) - Mark the current position to zero

Parameters

  • serial (int) - The serial number of the Phidgets stepper device to connect to. If -1 (the default), connects to any suitable stepper device that can be found.
  • channel (int) - The channel number on the Phidgets device to connect to. Defaults to 0.
  • hub_port (int) - The phidgets VINT hub port to connect to. Only used if the motor phidget is connected to a VINT hub. Defaults to 0.
  • is_hub_port_device (bool) - Whether this device is directly connected to VINT hub port, or whether it is connected via another widget to the hub port. Only used if the digital input phidget is connected to a VINT hub. Defaults to false.
  • base_frame (string) - The base frame_id for the sensor_msgs/JointState messages. Defaults to “phidgets”.
  • joint_name (string) - The name of the joint in the sensor_msgs/JointState messages. Defaults to “stepper”.
  • publish_rate (double) - How often the driver will publish data on the ROS topic. If 0 (the default), it will publish every time there is an update from the device (so at the data_interval_ms). If positive, it will publish the data at that rate regardless of the acquisition interval.
  • server_name (string) - The name of the Phidgets network server to connect to. If specified along with server_ip, the driver will attempt to connect to a Phidgets device over the network.
  • server_ip (string) - The IP address of the Phidgets network server. Used in conjunction with server_name.
  • data_interval_ms (int) - The number of milliseconds between acquisitions of data on the device (allowed values are dependent on the device). Defaults to 250 ms.
  • failsafe_time_ms (int) - The failsafe time in ms, default to 1000.
  • position_offset (double) - Position to start at, default to 0.0
  • rescale_factor (double) - Step multiplier applied to all the measurement. For a stepper with 1.8 degree step and a reduction of 14:1, (1./16) * (1.8/14) * (2*pi/360) makes sure all the output are in radians.
  • acceleration (double) - Authorized acceleration, default to the max value supported by the driver.
  • velocity_limit (double) - The maximum velocity, will be overloaded by messages published on ~/command.
  • current_limit (double) - Authorized current limit, default to the max value supported by the driver.
  • holding_current_limit (double) - Authorized holding current limit, default to the max value supported by the driver.
CHANGELOG

Changelog for package phidgets_stepper

2.3.4 (2025-05-19)

  • Upgrade to CMake 3.8, add file depend (#189)
  • Add stepper motor package for ROS2 (STC1005) (#186)
  • Contributors: Cedric Pradalier, Martin Günther

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged phidgets_stepper at Robotics Stack Exchange