test tutorial

Dependencies:   mbed lib_workshop_2019

includes/console_output.h

Committer:
gvaquette
Date:
2019-10-23
Revision:
1:7a8764e627b5
Parent:
0:0a75a79d6b77
Child:
3:a0e37b8918ac

File content as of revision 1:7a8764e627b5:

#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);

e_test ft_get_user_choice(Serial &pc);

#endif /* CONSOLEOUTPUT_H */