Guelakais

Results 24 issues of Guelakais

ISSUE TEMPLATE ver. 0.4.0 1. Which TurtleBot3 platform do you use? - [ ] Burger - [X] Waffle - [ ] Waffle Pi 2. Which ROS is working with TurtleBot3?...

ISSUE TEMPLATE ver. 0.4.0 1. Which TurtleBot3 platform do you use? - [X] Burger 2. Which ROS is working with TurtleBot3? - [X] ROS 2 Humble Hawksbill 3. Which SBC(Single...

Writing a republisher as the first task is not as easy as it sounds. It requires a lot of difficult tasks to even get a subscription done. Writing a node...

I followed your [example](https://github.com/ros2-rust/ros2_rust/blob/main/docs/writing-your-first-rclrs-node.md) This gave me the following error output: ``` Updating crates.io index error: no matching package named `std_msgs` found location searched: registry `crates-io` required by package `position_printer_rs...

I found it really tedious to build the ros2 rust packages myself every time. So over the weekend I've written a tool to do this automatically. Is this interesting for...

As I understand it, floats already belong to the standard data types. Should this still be included or are there good reasons why it is not supported?

To be honest, either I don't understand it or it's not clearly described. I've read the readme and looked at the examples and unfortunately it's not clear to me. Do...

You can access more than just one database via the NCBI. In my opinion, the following query cannot be mapped with this library: ``` #!/bin/sh esearch -db nuccore -query "Sclerotinia...

``` Some errors have detailed explanations: E0433, E0560. For more information about an error, try `rustc --explain E0433`. error: could not compile `lanelet_rs` (bin "lanelet_publisher") due to 3 previous errors;...

A lot of error handling in the code is solved via if-queries, although you could also do it via match cases match cases are more idiomatic. There are still parts...