Browse Source

Fix broken links and typos

pull/16/head
hello-chintan 1 year ago
parent
commit
83b1b8d9b5
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      stretch_body/tutorial_parameter_management.md
  2. +2
    -2
      stretch_body/tutorial_safe_coding.md

+ 2
- 2
stretch_body/tutorial_parameter_management.md View File

@ -134,10 +134,10 @@ stretch_body.robot_params.nominal_params param.arm.motion.default.vel_m 0.1
## Programmatically Modifying and Storing Parameters
A user can compute the value of a parameter programmatically and modify the robot settings accordingly. For example, in the Stretch Factory tool [REx_base_calibrate_wheel_seperation.py](https://github.com/hello-robot/stretch_factory/blob/master/python/tools/REx_base_calibrate_wheel_separation.py) we see that the parameter `wheel_seperation_m` is recomputed as the variable `d_avg`. This new value could be used during the robot execution by simply:
A user can compute the value of a parameter programmatically and modify the robot settings accordingly. For example, in the Stretch Factory tool [REx_base_calibrate_wheel_separation.py](https://github.com/hello-robot/stretch_factory/blob/master/python/tools/REx_base_calibrate_wheel_separation.py) we see that the parameter `wheel_separation_m` is recomputed as the variable `d_avg`. This new value could be used during the robot execution by simply:
```python
robot.base.params['wheel_seperation_m']=d_vag
robot.base.params['wheel_separation_m']=d_vag
```
or it could be saved as a user override:

+ 2
- 2
stretch_body/tutorial_safe_coding.md View File

@ -43,7 +43,7 @@ The [Pimu firmware](https://github.com/hello-robot/stretch_firmware/tree/master/
## Robot Monitor
The [Robot Monitor](https://github.com/hello-robot/stretch_body/blob/master/python/stretch_body/robot_monitor.py) is a thread that monitors the Robot Status data for significant events. For example, it can monitor the error flags from the Dynamixel servos and notify when a thermal overload occurs. The Robot Monitor logs warnings to a log file by default.
The [Robot Monitor](https://github.com/hello-robot/stretch_body/blob/master/body/stretch_body/robot_monitor.py) is a thread that monitors the Robot Status data for significant events. For example, it can monitor the error flags from the Dynamixel servos and notify when a thermal overload occurs. The Robot Monitor logs warnings to a log file by default.
The default parameters associated with RobotMonitor are:
@ -99,7 +99,7 @@ Starting Robot Monitor. Ctrl-C to exit
## Robot Sentry
The [Robot Sentry](https://github.com/hello-robot/stretch_body/blob/master/python/stretch_body/robot_sentry.py) is a thread that can override and also generate commands to the robot hardware. Its purpose is to keep the robot operating within a safe regime. For example, the Robot Sentry monitors the position of the Lift and Arm and limits the maximum base velocity and acceleration to reduce the chance of toppling. The Robot Sentry reports events to the log file as well.
The [Robot Sentry](https://github.com/hello-robot/stretch_body/blob/331fa7f737628719264f66670c4cfb5a2ab94173/body/stretch_body/wrist_yaw.py#L35) is a thread that can override and also generate commands to the robot hardware. Its purpose is to keep the robot operating within a safe regime. For example, the Robot Sentry monitors the position of the Lift and Arm and limits the maximum base velocity and acceleration to reduce the chance of toppling. The Robot Sentry reports events to the log file as well.
| YAML | Function |
| ------------------------ | ------------------------------------------------------------ |

Loading…
Cancel
Save