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: BLE_API mbed nRF51822 circular_buffer
Vector.h@9:3708b94b2312, 2016-03-08 (annotated)
- 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?
User | Revision | Line number | New 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 |