turtlebot3-burger_150.png
turtlebot3-waffle-pi_150.png
turtlebot3-arm_150.png
walking-y2_150.png
turbot3-multi_150.png
turbot3-dl-ros1_150.png
turbot3-ai.png
turbot3-dl-ros2_150.png
turbot3-slam_150.png
turbot3-arm_150.png
turtlebot4-lite_150.png
turtlebot4-pro_150.png
turbot4-dl_150.png
turbot4-ai_150.png
aidriving-racebot_150.png
aidriving-autodrive_150.png
turtlebot-arm_150.png
openmanipulator-x_150.png
Home » Turtlebot代码解读 » Turtlebot代码解读-turtlebot_create_desktop

Turtlebot代码解读-turtlebot_create_desktop

纠错,疑问,交流: 请进入讨论区请点击进入页面,扫码加入微信群或Q群进行交流

获取最新文章: 扫一扫加入“创客智造”公众号

Turtlebot代码解读-turtlebot_create_desktop

说明:

  • 这个软件包提供iRobot Create的可视化和仿真工具

文件树及说明:

├── create_dashboard                 #create及roomba的仪表板
│   ├── CHANGELOG.rst
│   ├── CMakeLists.txt
│   ├── package.xml
│   ├── plugins
│   │   └── plugin.xml               #定义dashboard插件
│   ├── scripts
│   │   └── create_dashboard         #启动dashboard脚本,rqt
│   ├── setup.py
│   └── src
│       └── create_dashboard         #类实现
│           ├── battery.py           #电池容量检测
│           ├── breaker.py           #开关数字输出
│           ├── dashboard.py         #仪表板实现
│           └── __init__.py
├── create_gazebo_plugins            #create的gazebo插件
│   ├── CHANGELOG.rst
│   ├── CMakeLists.txt
│   ├── include                      #类库
│   │   └── turtlebot_plugins        #插件
│   │       └── gazebo_ros_create.h  #插件头文件
│   ├── package.xml
│   └── src
│       └── gazebo_ros_create.cpp    #插件实现
├── README.md
└── turtlebot_create_desktop         #metapackage
    ├── CHANGELOG.rst
    ├── CMakeLists.txt
    └── package.xml

重要知识点:

纠错,疑问,交流: 请进入讨论区请点击进入页面,扫码加入微信群或Q群进行交流

获取最新文章: 扫一扫加入“创客智造”公众号


标签: turtlebot代码解读