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 03:43:28 2019 +0000
Revision:
36:32a0a71555f0
First commit!

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Alvaro13 36:32a0a71555f0 1 #ifndef CONSTANTS_H
Alvaro13 36:32a0a71555f0 2 #define CONSTANTS_H
Alvaro13 36:32a0a71555f0 3
Alvaro13 36:32a0a71555f0 4 #define BAUD_RATE 115200
Alvaro13 36:32a0a71555f0 5 #define GRAVITY_CONSTANT 9.81
Alvaro13 36:32a0a71555f0 6 #define SAMPLE_RATE_MEASURE 0.016
Alvaro13 36:32a0a71555f0 7
Alvaro13 36:32a0a71555f0 8
Alvaro13 36:32a0a71555f0 9 #endif