Senses an earthquake with MPU6050 and gets time, coordenates and other details of the event with an Adafruit GPS. All the info is sent to an HTTP server

Dependencies:   MPU6050 mbed-http MBed_Adafruit-GPS-Library

Committer:
Alvaro13
Date:
Thu Aug 01 05:05:55 2019 +0000
Revision:
38:0813e461b835
Parent:
36:32a0a71555f0
program reseted

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Alvaro13 36:32a0a71555f0 1 #ifndef FUNCTIONS_H
Alvaro13 36:32a0a71555f0 2 #define FUNCTIONS_H
Alvaro13 36:32a0a71555f0 3
Alvaro13 36:32a0a71555f0 4 void print_debug();
Alvaro13 36:32a0a71555f0 5 string compute_intensity(float xPGA, float yPGA);
Alvaro13 36:32a0a71555f0 6 void measure();
Alvaro13 36:32a0a71555f0 7 void send_meassure();
Alvaro13 36:32a0a71555f0 8 void getGPSCoordinates();
Alvaro13 36:32a0a71555f0 9
Alvaro13 36:32a0a71555f0 10
Alvaro13 36:32a0a71555f0 11 #endif