Los Putacos / Mbed OS WearableDevice_Nucleo_New

Dependencies:   MPU9250_SPI

Fork of WearableDevice_Nucleo by Los Putacos

event.h

Committer:
Muglug
Date:
2017-10-27
Revision:
25:86137c182a17
Parent:
24:eed68c95160c
Child:
26:4bc56ce08d15

File content as of revision 25:86137c182a17:

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

//-----------------------------------------------------------------
#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);
void CheckInputBuffer(void);
void ReadIMUData(void);

extern XBeeLib::XBeeZB XBee;
extern Timer time_stamp;
extern mpu9250_spi imu;
extern AnalogIn micro;
extern Serial PC;
extern FILE *fp;
    
#endif // EVENT_H_
//-----------------------------------------------------------------