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.
Fork of Code_APP1 by
Diff: main.cpp
- Revision:
- 4:ffd7cef72270
- Parent:
- 3:5dcf9b78f3ad
- Child:
- 5:1a60144f7163
--- a/main.cpp Mon Jan 16 19:09:24 2017 +0000
+++ b/main.cpp Mon Jan 16 19:19:27 2017 +0000
@@ -13,9 +13,9 @@
void calculer_angle(char bufferAngle[], int accZ)
{
float angle = abs(cos(static_cast<float>(accZ*90/64)*PI/180)*90);
- pc.printf("%c\n", angle);
+ pc.printf("%f\n", angle);
int angleInt = (int)(angle*100);
- snprintf(bufferAngle, sizeof bufferAngle, "%d", angleInt);
+ snprintf(bufferAngle, 5, "%d", angleInt);
if(angle < 10)
{
@@ -24,6 +24,12 @@
bufferAngle[1] = bufferAngle[0];
bufferAngle[0] = '0';
}
+ pc.printf("%c", bufferAngle[0]);
+ pc.printf("%c", bufferAngle[1]);
+ pc.printf("%c", bufferAngle[2]);
+ pc.printf("%c", bufferAngle[3]);
+ pc.printf("\n");
+
}
int main() {
@@ -48,13 +54,11 @@
wait_us(25);
spi.write(0x77);
spi.write(0b00000010);
- spi.write(0x7A);
- spi.write(0xFF);
wait_us(100);
spi.write(resultat[0]);
spi.write(resultat[1]);
+ spi.write(resultat[2]);
spi.write(resultat[3]);
- spi.write(resultat[4]);
wait_us(25);
cs = 1;
wait(0.25);
