DORA (Daycare Organising Robotic Assistant) is an autonomous daycare tidying robot, capable of navigating a daycare play area in order to identify and pick up toys, and sort them into piles.
Clone repo and install requirements.txt.
git clone https://github.com/JacobInwald/DORA.git # clone
cd DORA
pip install -r requirements.txt # installROS2 is required for this project. To install ROS2, refer here.
Source ROS2 and build project before running anything.
source /opt/ros/<distro>/setup.bash
colcon build
source install/setup.bashAlternatively just run source setup.bash
To launch DORA, run
ros2 launch launch/dora.launch.pyTo display camera stream on another computer, source ROS2 and build required package
source /opt/ros/<distro>/setup.bash
colcon build --packages-select remote
source install/setup.bashthen launch the display node
ros2 launch launch/display.launch.py