실습-1에서는 터틀봇을 움직여보고 Rviz2에서 로봇을 불러와 동작을 시킨 뒤 Gazebo 환경에서도 같이 움직이는 것을 보았다.이번에는 맵을 라이다로 학습하여 장애물을 인지해서 목표지점을 정하였을 때 길을 찾는 작업을 해보도록 하겠다. 실습환경은 동일하게 Ubuntu 20.04, ros foxy에서 진행된다. Nav_simulation# Terminal 1# TurtleBot3 준비ros2 launch turtlebot3_gazebo turtlebot3_world.launch.py# Terminal 2# 매핑ros2 launch turtlebot3_cartographer cartographer.launch.py use_sim_time:=True# Terminal 3# 내비게이션 ros2 launch t..