├── .gitignore ├── API └── Python │ ├── .gitignore │ └── README.md ├── Arduino └── README.md ├── LICENSE ├── Manual └── myCobot 2_协作机器人用户手册-V20201120.pdf ├── README.md ├── ROS └── README.md ├── Software ├── myCobot固件烧录器 │ └── README.md ├── phone controller │ ├── README.md │ └── res │ │ ├── Screenshot_phone_1.jpg │ │ ├── Screenshot_phone_2.jpg │ │ ├── phone-icon.png │ │ └── qrcode.png └── roboFlow │ └── README.md ├── Tutorials └── 1 main_control_tutorial.mp4 ├── myCobot p1_poster.jpg └── myCobot-开发引导手册-V20210127.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/.gitignore -------------------------------------------------------------------------------- /API/Python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/API/Python/.gitignore -------------------------------------------------------------------------------- /API/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/API/Python/README.md -------------------------------------------------------------------------------- /Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/Arduino/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/LICENSE -------------------------------------------------------------------------------- /Manual/myCobot 2_协作机器人用户手册-V20201120.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/Manual/myCobot 2_协作机器人用户手册-V20201120.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/README.md -------------------------------------------------------------------------------- /ROS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/ROS/README.md -------------------------------------------------------------------------------- /Software/myCobot固件烧录器/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/Software/myCobot固件烧录器/README.md -------------------------------------------------------------------------------- /Software/phone controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/Software/phone controller/README.md -------------------------------------------------------------------------------- /Software/phone controller/res/Screenshot_phone_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/Software/phone controller/res/Screenshot_phone_1.jpg -------------------------------------------------------------------------------- /Software/phone controller/res/Screenshot_phone_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/Software/phone controller/res/Screenshot_phone_2.jpg -------------------------------------------------------------------------------- /Software/phone controller/res/phone-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/Software/phone controller/res/phone-icon.png -------------------------------------------------------------------------------- /Software/phone controller/res/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/Software/phone controller/res/qrcode.png -------------------------------------------------------------------------------- /Software/roboFlow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/Software/roboFlow/README.md -------------------------------------------------------------------------------- /Tutorials/1 main_control_tutorial.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/Tutorials/1 main_control_tutorial.mp4 -------------------------------------------------------------------------------- /myCobot p1_poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/myCobot p1_poster.jpg -------------------------------------------------------------------------------- /myCobot-开发引导手册-V20210127.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elephantrobotics/myCobot/HEAD/myCobot-开发引导手册-V20210127.pdf --------------------------------------------------------------------------------