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: mbed HeptaBattery Hepta9axis
Fork of Lab7-01_template by
main.cpp
- Committer:
- HEPTA
- Date:
- 2017-09-07
- Revision:
- 14:8d870350014c
- Parent:
- 13:a1fa75a002f6
- Child:
- 15:53779160ad9d
File content as of revision 14:8d870350014c:
#include "mbed.h"
#include "Hepta9axis.h"
Serial pc(USBTX,USBRX);
Hepta9axis n_axis(p28,p27,0xD0,0x18);
int main()
{
pc.baud(9600);
float ax,ay,az;
pc.printf("Accel Sensor Mode\r\n");
for(int i = 0; i<50; i++) {
n_axis.sen_acc(&ax,&ay,&az);
pc.printf("%f,%f,%f\r\n",ax,ay,az);
wait(1.0);
}
}
