Tutorial for first mbed project

Dependencies:   mbed lib_workshop_2019

includes/console_output.h

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

File content as of revision 3:a0e37b8918ac:

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

#endif /* CONSOLEOUTPUT_H */