IF_Task3

Dependencies:   mbed

main.cpp

Committer:
matthiasdorudi
Date:
2015-04-17
Revision:
0:4a495b04cc0f

File content as of revision 0:4a495b04cc0f:

#include "ur_Bertl.h"
#include "const.h"
#include "mbed.h"
#include "Bertl_Task3.h"

int main(){
    Bertl_Task3 Tom;       //Benennen
    
    Tom.Move();

    if (Tom.RightIsClear()){
        Tom.Move();
    }
    else
        Tom.ShutOff();
          
}