Los Putacos / Mbed OS WearableDevice_Nucleo_New

Dependencies:   MPU9250_SPI

Fork of WearableDevice_Nucleo by Los Putacos

event.h

Committer:
Muglug
Date:
2017-10-18
Revision:
18:7f9c2b8541e1
Parent:
12:c88478dfc622
Child:
23:aad5fd1b3ef9

File content as of revision 18:7f9c2b8541e1:

/*
* 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);


void readIMU(void);
void readMicrophone(void);
void storeIMU(void);
void storeMicrophone(void);
void sendData(void);
void gayEvent(void);

extern Serial PC;
// extern Serial xbee;
extern Timer time_stamp;

// Your code here!
    
#endif // EVENT_H_
//-----------------------------------------------------------------