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@12:c88478dfc622, 2017-10-17 (annotated)
- Committer:
- gusteibolt
- Date:
- Tue Oct 17 09:25:38 2017 +0000
- Revision:
- 12:c88478dfc622
- Parent:
- 10:577e1fc4453e
- Child:
- 18:7f9c2b8541e1
Test, upload lasted version
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
gusteibolt | 5:18e89e309715 | 1 | /* |
gusteibolt | 5:18e89e309715 | 2 | * Los Putacos |
gusteibolt | 5:18e89e309715 | 3 | * Copyright (C) 2017, All rights reserved. |
gusteibolt | 5:18e89e309715 | 4 | * ________________________________________ |
gusteibolt | 5:18e89e309715 | 5 | * |
gusteibolt | 5:18e89e309715 | 6 | * Created by: Gustavo Campana, Michael Schmidt, Miguel Lopez |
gusteibolt | 5:18e89e309715 | 7 | * Date: 12-Oct-2017 |
gusteibolt | 5:18e89e309715 | 8 | * Version: V0.1 |
gusteibolt | 5:18e89e309715 | 9 | */ |
gusteibolt | 5:18e89e309715 | 10 | |
gusteibolt | 5:18e89e309715 | 11 | //----------------------------------------------------------------- |
gusteibolt | 5:18e89e309715 | 12 | #ifndef EVENT_H_ |
gusteibolt | 5:18e89e309715 | 13 | #define EVENT_H_ |
gusteibolt | 5:18e89e309715 | 14 | |
gusteibolt | 7:ebaaff27840b | 15 | void print_stinrg(void); |
gusteibolt | 7:ebaaff27840b | 16 | void print_event(void); |
gusteibolt | 7:ebaaff27840b | 17 | void blink_event(void); |
gusteibolt | 6:939df52d75c9 | 18 | |
gusteibolt | 10:577e1fc4453e | 19 | |
gusteibolt | 10:577e1fc4453e | 20 | void readIMU(void); |
gusteibolt | 10:577e1fc4453e | 21 | void readMicrophone(void); |
gusteibolt | 10:577e1fc4453e | 22 | void storeIMU(void); |
gusteibolt | 10:577e1fc4453e | 23 | void storeMicrophone(void); |
gusteibolt | 10:577e1fc4453e | 24 | void sendData(void); |
gusteibolt | 12:c88478dfc622 | 25 | void gayEvent(void); |
gusteibolt | 10:577e1fc4453e | 26 | |
gusteibolt | 8:ba93a973f967 | 27 | extern Serial pc; |
gusteibolt | 10:577e1fc4453e | 28 | extern Serial xbee; |
gusteibolt | 10:577e1fc4453e | 29 | extern Timer time_stamp; |
gusteibolt | 8:ba93a973f967 | 30 | |
gusteibolt | 7:ebaaff27840b | 31 | // Your code here! |
gusteibolt | 5:18e89e309715 | 32 | |
gusteibolt | 5:18e89e309715 | 33 | #endif // EVENT_H_ |
gusteibolt | 5:18e89e309715 | 34 | //----------------------------------------------------------------- |