Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

Package Summary

Version 1.2.1
License Apache License 2.0
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version jazzy
Last Updated 2026-08-17
Dev Status DEVELOPED
Released RELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

1.2.1 (2026-08-14)

1.2.0 (2026-08-12)

  • Compose tf_namespace_bridge with robot_state_publisher (#190)

    * Compose tf_namespace_bridge with robot_state_publisher RSP is the highest-frequency /tf publisher in the stack and tf_namespace_bridge is its direct subscriber, so loading both into one rclcpp_components container skips a serialize/DDS hop per transform. Also dedupes the tf_namespace_bridge standalone-node launch block, previously copy-pasted across rosbot_bringup (x2) and rosbot_gazebo, into rosbot_description's node_container — including the config file, identical in all three copies.

    • Bump tf_namespace_bridge

    * Revert composing tf_namespace_bridge with robot_state_publisher LoadComposableNodes lazily creates a shared launch_ros ROSAdapter and registers an OnShutdown handler. rosbot_controller/controller.yaml's ros2_control_node has on_exit: shutdown (deliberate fail-fast), so every exit of it -- including a completely normal shutdown -- fires an extra Shutdown that races the planned one, double-calling ros_adapter.shutdown() and raising "Cannot shutdown a ROS adapter that is not running". That exception interrupts the SIGINT->SIGTERM escalation for the remaining processes, so unrelated ones die via raw signal instead of exiting cleanly. 100% reproducible in CI, and the same symptom shows up independently in navigation2#4722 -- a launch_ros framework interaction, not fixable from our launch files. Keeps the config dedup (rosbot_description is now the sole owner of tf_namespace_bridge.yaml, previously duplicated identically across rosbot_bringup/rosbot_gazebo/rosbot_description) since that part never touched node composition and stayed green throughout.

  • Merge pull request #188 from husarion/feature/twist-mux-controller Feature/twist mux controller

  • Move animation_publisher parameters into the model config

  • Add navigation animation and rename car_wave to ready

  • Clean up

  • Select LED animations from config_dir without a restart current_animation now re-reads <name>.png/.yaml from disk on every set, so a PNG dropped into config_dir needs no driver restart. create_config_dir no longer aborts the whole copy on a dangling symlink.

  • Add twist_mux_controller for cmd_vel priority arbitration Gamepad and nav2 both published to /cmd_vel with nothing arbitrating between them. The mux chains onto the drive controller's reference interfaces, so the choice is resolved inside the 100 Hz control loop instead of over topics: manual (100) > autonomous (10) > cmd_vel (1), with 0.2 s fallthrough. Needs the husarion_controllers revision that adds twist_mux_controller's drive_controller parameter (pin bumped) — the two drive controllers name their reference interfaces differently and an older revision leaves the mux unable to claim them, so the robot comes up unresponsive. Jazzy only: humble's diff_drive_controller is not chainable.

  • Merge pull request #187 from husarion/feature/asset-server-bringup Run husarion_asset_server in the driver launch, not a separate daemon

  • Run husarion_asset_server in the driver launch, not a separate daemon Vendors it as a new husarion_asset_server package that fetches + sha256-verifies the prebuilt release binary instead of building via colcon-ros-cargo (avoids a Rust/clang toolchain in dev/CI/rosbot-snap). Runs as a node in rosbot_bringup's own launch under push_ros_namespace, gated by a new asset_server arg (default True) - gets the correct namespace at startup instead of needing a restart-to-re-announce hack.

  • feat(rosbot_utils): parameter-selectable LED animation publisher Replace the two hard-coded LED nodes (led_strip_rainbow / led_strip_car_wave) with a single animation_publisher that plays user-definable PNG animations (row = frame, column = LED) selected by the current_animation node parameter.

    - Animations are auto-discovered from rosbot_utils/animations (shipped) and an optional user dir; each is a <name>.png + <name>.yaml sidecar (frequency, brightness, optional color tint). Filename stem = animation name.

    - Publishes the firmware contract unchanged: sensor_msgs/Image 1x18 rgb8, BEST_EFFORT, at the animation's frequency. Wider PNG rows are cropped to the first 18 columns, narrower rows padded black.

    - current_animation is validated on set (on-set-parameters callback); the reserved 'none' publishes nothing so the firmware idle animation shows.

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange

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

Package Summary

Version 0.15.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/husarion/rosbot_ros.git
VCS Type git
VCS Version humble
Last Updated 2025-12-09
Dev Status DEVELOPED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROSbot Series bringup package

Additional Links

Maintainers

  • Husarion

Authors

  • Jakub Delicat
  • Rafal Gorecki
README
No README found. See repository README.
CHANGELOG

Changelog for package rosbot_bringup

0.15.1 (2025-04-09)

0.15.0 (2025-04-07)

0.13.2 (2024-05-08)

0.13.1 (2024-02-01)

0.13.0 (2024-01-15)

0.12.0 (2024-01-02)

0.11.1 (2023-12-29)

0.11.0 (2023-12-08)

0.10.5 (2023-12-05)

0.10.4 (2023-12-01)

0.10.3 (2023-11-08)

0.10.2 (2023-11-07)

0.10.1 (2023-10-25)

0.10.0 (2023-10-24)

0.9.0 (2023-10-16)

0.8.5 (2023-10-11)

  • Merge pull request #70 from husarion/test-gazebo Test gazebo
  • Merge remote-tracking branch 'origin/test-gazebo' into test-gazebo
  • Merge branch 'humble' into test-gazebo
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.4 (2023-09-21)

  • Merge pull request #69 from husarion/test-ekf Test ekf
  • Merge branch 'humble' into test-ekf
  • Merge branch 'humble' into test-spellcheck
  • Contributors: rafal-gorecki

0.8.3 (2023-09-20)

  • Merge pull request #67 from husarion/test-black Add black, flake8 and pep257 tests
  • Merge remote-tracking branch 'origin/humble' into test-black
  • Merge remote-tracking branch 'origin/humble' into test-bringup
  • Contributors: Jakub Delicat, rafal-gorecki

0.8.2 (2023-09-01)

0.8.1 (2023-08-31)

0.8.0 (2023-08-16)

0.7.0 (2023-07-31)

  • Merge remote-tracking branch 'origin/humble' into ros2-ign-camera-fix
  • Merge pull request #56 from husarion/delihus-patch-1 Update ekf.yaml
  • Contributors: Jakub Delicat

0.6.1 (2023-05-19)

0.6.0 (2023-05-04)

  • Merge pull request #45 from husarion/add-mecanum-wheels Add mecanum wheels in real robot and simulation
  • Merge remote-tracking branch 'origin/humble' into add-mecanum-wheels
  • Contributors: Jakub Delicat

0.5.1 (2023-04-03)

0.5.0 (2023-03-22)

  • Merge pull request #44 from Kotochleb/humble-add-use-gpu Add use_gpu parameter
  • Merge pull request #43 from Kotochleb/humble-add-ignition-support Add ignition support
  • Contributors: Jakub Delicat, Krzysztof Wojciechowski

0.4.0 (2023-03-09)

File truncated at 100 lines see the full file

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rosbot_bringup at Robotics Stack Exchange