v7
Robot.cpp
- Committer:
- fab16
- Date:
- 2017-02-09
- Revision:
- 2:c17925c0ce25
- Parent:
- 1:b3c45f39e86e
- Child:
- 3:3f75a7741b8f
File content as of revision 2:c17925c0ce25:
#include "Robot.h" Robot::Robot(){ obstacle = false; Affichage affichage; LED led; Deplacement deplacement; } Robot::~Robot(){ // TODO fermer connexion bluetooth } Affichage Robot::getAffichage(){ return affichage; } LED Robot::getLed(){ return led; } Deplacement Robot::getDeplacement(){ return deplacement; }