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: HP206C mbed HMC5883L DHT DS1820
main.cpp
- Committer:
- Edern
- Date:
- 2018-10-01
- Revision:
- 74:087a2b250497
- Parent:
- 33:2a6476c33e74
File content as of revision 74:087a2b250497:
#include "mbed.h"
HP20x_dev capteur_altitude(D4, D5);
int main() {
while(1) {
/*
read T&H air
read T sol
read H sol
read Pressure
read Magnetic
m = genMessage(T_air, H_air, T_sol, H_sol, Pressure, Mag)
sendMessage(m)
*/
wait(60*15);
}
}
