Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Robot 3d SLAM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Oliver Kania
Robot 3d SLAM
Commits
3c7c6792
Commit
3c7c6792
authored
1 week ago
by
Oliver Kania
Browse files
Options
Downloads
Patches
Plain Diff
Edit README.md
parent
ce93585d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+38
-1
38 additions, 1 deletion
README.md
with
38 additions
and
1 deletion
README.md
+
38
−
1
View file @
3c7c6792
# Robot 3d SLAM
# Robot 3d SLAM
## How-to
## How-to: Sensor mit Arduino (VL53L7CX + Pico via Arduino IDE)
1.
**VL53L7CX mit dem Raspberry Pi Pico über die Arduino IDE vorbereiten**
-
Installiere die
[
Arduino-Pico Core
](
https://github.com/earlephilhower/arduino-pico
)
über den Boardverwalter.
-
Wähle im Menü:
`Werkzeuge → Board → Raspberry Pi RP2040 Boards → Raspberry Pi Pico`
-
Schließe den VL53L7CX korrekt per I2C an den Pico an:
-
SDA → GPIO 4
-
SCL → GPIO 5
-
Stromversorgung: 3.3 V
-
Lade das Skript
`VL53L7CX_HelloWorld_I2C_pico.ino`
auf den Pico.
-
Öffne den Seriellen Monitor (115200 Baud) und überprüfe, ob Messwerte ausgegeben werden.
-
Stelle sicher, dass der Sensor erkannt wird und mit
`Start ranging...`
antwortet.
2.
**Micro-ROS Node starten**
```
bash
ros2 run my_robot_package tof_pico_node
3.
**
RViz2 starten und PointCloud anzeigen
**
- Starte RViz2:
```
bash
rviz2
```
- Setze unter
**
Global Options
>
Fixed Frame
**
den Wert auf
`
map
`
oder
`
vl53_frame
`
(
je nachdem, welchen Transform
du
verwendest
)
.
- Füge ein neues Display hinzu:
- Typ:
`
PointCloud2
`
- Topic:
`
/vl53_pointcloud
`
- Stelle sicher, dass
`
Decay Time
`
z. B. auf
`
0.1
`
Sekunden gesetzt ist, damit immer nur die aktuelle Messung sichtbar bleibt.
4.
**
Optional: Statischen Transform zwischen map und Sensorrahmen setzen
**
Falls
du
`
vl53_frame
`
als Sensorframe benutzt, kannst
du
einen statischen Transform vom
`
map
`
-Frame
aus definieren:
```
bash
ros2 run tf2_ros static_transform_publisher 0 0 0 0 1.5708 -1.5708 map vl53_frame
```
Das transformiert den Frame so, dass er in eine horizontale Richtung zeigt im Verhältnis zum Grid.
## How-to UR
1. **UR-Simulation starten**
1. **UR-Simulation starten**
- Die UR Offline-Simulation (Virtual Machine 1) starten
- Die UR Offline-Simulation (Virtual Machine 1) starten
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment