Skip to content
#

robots

Here are 509 public repositories matching this topic...

webots
ShuffleWire
ShuffleWire commented Oct 8, 2021

Steps to Reproduce

  1. Create empty directory with the wizard
  2. Add a robot and a join
  3. In view, add "Show join axes"
  4. Nothing seems to happens, because the line is too small

Expected behaviour
A line should appear.

Expected solution
Change the default lineScale value to 10, which make it visible, at least for a default project.
Two solutions, change the default templa

rbudde
rbudde commented Oct 5, 2021

the main properties of the lab are stored in openroberta.properties . These properties can be overwritten at startup time of the server by command line parameters -D <prop-key>=<prop-value> .

The same mechanism should be available for property files for robot plugins, e.g. ev3.properties . The command line parameter could be

  • -R <robot> <prop-key>=<prop-value> or
  • `-R .<prop-
dcieslak19973
dcieslak19973 commented Mar 1, 2021

Describe the bug
Current call uses:

const auto angle = iangle - odom->getState(StateMode::FRAME_TRANSFORMATION).theta;

Which can lead to 270 degree turns instead of 90 degree turns.

Changing to:

const auto angle = OdomMath::constrainAngle180(iangle - odom->getState(StateMode::FRAME_TRANSFORMATION).theta);

Should ensure the robot turns the shortest angle

**Steps To R

Improve this page

Add a description, image, and links to the robots topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the robots topic, visit your repo's landing page and select "manage topics."

Learn more