Teacher version

Dependencies:   mbed lib_workshop_2019

includes/console_output.h

Committer:
gvaquette
Date:
2019-10-23
Revision:
4:bf5caf4c0c88
Parent:
3:a0e37b8918ac

File content as of revision 4:bf5caf4c0c88:

#ifndef CONSOLEOUTPUT_H
#define CONSOLEOUTPUT_H

/**
 * Include : Mbed Library
 */
#include "mbed.h"

enum e_test {
    WELCOME = 0,
    ULTRASONIC = 1,
    COMPASS = 2,
    CNY70 = 3,
    VBAT = 4,
    LEFT_MOTOR = 5,
    RIGHT_MOTOR = 6,
    PIXY = 7
};


void ft_print_test_menu(Serial &pc);

void ft_print_to_be_imp(Serial &pc);

e_test ft_get_user_choice(Serial &pc);

int ft_get_user_int(Serial &pc);

#endif /* CONSOLEOUTPUT_H */