Los Putacos / Mbed OS WearableDevice_Nucleo_New

Dependencies:   MPU9250_SPI

Fork of WearableDevice_Nucleo by Los Putacos

event.h

Committer:
gusteibolt
Date:
2017-10-12
Revision:
8:ba93a973f967
Parent:
7:ebaaff27840b
Child:
10:577e1fc4453e

File content as of revision 8:ba93a973f967:

/*
* Los Putacos
* Copyright (C) 2017, All rights reserved.
* ________________________________________ 
*
* Created by: Gustavo Campana, Michael Schmidt, Miguel Lopez
*       Date: 12-Oct-2017
*    Version: V0.1
*/

//-----------------------------------------------------------------
#ifndef EVENT_H_
#define EVENT_H_

void print_stinrg(void);
void print_event(void);
void blink_event(void);

extern Serial pc;

// Your code here!
void print_stinrg(char c = '*') {
    pc.putc(c);
}
    
#endif // EVENT_H_
//-----------------------------------------------------------------