├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── bittle_teleop_robot.launch ├── bittle_teleop_server.launch ├── package.xml ├── scripts └── bittle_driver.py └── test_bittle.launch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWintermuteAI/bittle_ROS/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWintermuteAI/bittle_ROS/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWintermuteAI/bittle_ROS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWintermuteAI/bittle_ROS/HEAD/README.md -------------------------------------------------------------------------------- /bittle_teleop_robot.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWintermuteAI/bittle_ROS/HEAD/bittle_teleop_robot.launch -------------------------------------------------------------------------------- /bittle_teleop_server.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWintermuteAI/bittle_ROS/HEAD/bittle_teleop_server.launch -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWintermuteAI/bittle_ROS/HEAD/package.xml -------------------------------------------------------------------------------- /scripts/bittle_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWintermuteAI/bittle_ROS/HEAD/scripts/bittle_driver.py -------------------------------------------------------------------------------- /test_bittle.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIWintermuteAI/bittle_ROS/HEAD/test_bittle.launch --------------------------------------------------------------------------------