PeersThe project contains 3 main peers. - Agent:("The robot") Software that runs on board a robot (such as mobile phone). The purpose of this software is to directly manipulate the actuators and to read the sensors of the robot. Depending on the mode, agent may control robot on its own (autonomous mode), take direct commands from a remote (direct remote mode) or take commands from a hub (indirect remote mode).
- Hub:("The brain") Software that runs in the cloud somewhere, most likely or on your desktop computer. The purpose of the hub is to provide the features that requires heavier computer resources such as real-time processing of images for the SLAM algorithm, but also to provide a central for many robots to share their data when collaborating in flocks or similar.
- Remote:("The control") Software that runs on a remote control device (such as mobile phone). The purpose of this software is to take input from the user on how a robot or hub should operate while displaying real time data from the robots/hub.
Since all peer are written in the same code base, it is easy to move or duplicate features between them. For example, if you have sufficiently powerful hardware on board the robot to do SLAM there, simply invoke slam from agent directly. |