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.
Input/AccelerationSensor/AccelerationSensor.h@1:b1219d8ca117, 2018-09-10 (annotated)
- Committer:
- 7ka884
- Date:
- Mon Sep 10 01:39:15 2018 +0000
- Revision:
- 1:b1219d8ca117
A
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
7ka884 | 1:b1219d8ca117 | 1 | #ifndef ACCELERATIONSENSOR_H_ |
7ka884 | 1:b1219d8ca117 | 2 | #define ACCELERATIONSENSOR_H_ |
7ka884 | 1:b1219d8ca117 | 3 | |
7ka884 | 1:b1219d8ca117 | 4 | #include "mbed.h" |
7ka884 | 1:b1219d8ca117 | 5 | |
7ka884 | 1:b1219d8ca117 | 6 | namespace ACCELERATIONSENSOR { |
7ka884 | 1:b1219d8ca117 | 7 | #define ACCX_PIN PA_0 |
7ka884 | 1:b1219d8ca117 | 8 | #define ACCY_PIN PA_6 |
7ka884 | 1:b1219d8ca117 | 9 | #define ACCZ_PIN PA_5 |
7ka884 | 1:b1219d8ca117 | 10 | |
7ka884 | 1:b1219d8ca117 | 11 | extern AnalogIn acc[]; |
7ka884 | 1:b1219d8ca117 | 12 | } |
7ka884 | 1:b1219d8ca117 | 13 | |
7ka884 | 1:b1219d8ca117 | 14 | #endif |