Rodrigo Miguez / Mbed 2 deprecated i2c_acelerometro

Dependencies:   BLE_API mbed nRF51822 circular_buffer

Committer:
agufal
Date:
Tue Mar 08 15:33:13 2016 +0000
Revision:
9:3708b94b2312
Creada la clase AccelService, que se encarga de mandar por Bluetooth la informaci?n del aceler?metro. ; OJO: parece que env?a, pero no se si los datos que se mandan est?n bien.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
agufal 9:3708b94b2312 1 #ifndef VECTOR_H
agufal 9:3708b94b2312 2 #define VECTOR_H
agufal 9:3708b94b2312 3
agufal 9:3708b94b2312 4 struct Vector {
agufal 9:3708b94b2312 5 int x;
agufal 9:3708b94b2312 6 int y;
agufal 9:3708b94b2312 7 int z;
agufal 9:3708b94b2312 8 };
agufal 9:3708b94b2312 9
agufal 9:3708b94b2312 10 #endif // #ifndef VECTOR_H