Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,34 @@ Robot Control library Version:
1.0.5
```

#### Provide device calibration
You need to calibrate threee devices: gyroscope, accelerometer, magnetometer. You can do this using librobotcontrol utils.
To calibrate devices succesfully you need to folow instructions in CLI.

Accelerometer calibration (do in every 6-8 month):
```
rc_calibrate_accel
```

Gyroscope calibration (do in every 6-8 month, with accelerometer):
```
rc_calibrate_gyro
```

Magnetometer calibration (do every time you bring robot to new place):
```
rc_calibrate_mag
```

After calibration special .cal files will store in /var/lib/robotcontrol.
If you want to to reset calibration results, delete this files.
```
rm /var/lib/robotcontrol/accel.cal # Delete accelerometer calibration result
rm /var/lib/robotcontrol/gyro.cal # Delete gyroscope calibration result
rm /var/lib/robotcontrol/mag.cal # Delete magnetometer calibration result
```


#### Enable Background Services
```
sudo systemctl enable rc_battery_monitor
Expand Down