Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MPU9250_SPI
Fork of WearableDevice_Nucleo by
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_ //-----------------------------------------------------------------