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.
main.cpp
- Committer:
- njamena
- Date:
- 2017-10-21
- Revision:
- 0:f75bb42438db
File content as of revision 0:f75bb42438db:
#include "mbed.h"
#include "HMC5883L.h"
Serial pc(USBTX,USBRX);
HMC5883L hmc(p28,p27);
int main() {
hmc.init();
//hmc.setConfigurationA()
hmc.getXYZ();
while(1)
{hmc.getXYZ();
}
}