daad
Dependencies: mbed TrapezoidControl QEI
Input/Potentiometer/Potentiometer.cpp@25:38d4964e8aad, 2019-09-17 (annotated)
- Committer:
- yabahiro
- Date:
- Tue Sep 17 03:46:34 2019 +0000
- Revision:
- 25:38d4964e8aad
- Parent:
- 16:3f2c2d89372b
das
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
t_yamamoto | 0:669ef71cba68 | 1 | #include "Potentiometer.h" |
t_yamamoto | 0:669ef71cba68 | 2 | #include "mbed.h" |
t_yamamoto | 0:669ef71cba68 | 3 | |
t_yamamoto | 0:669ef71cba68 | 4 | namespace POTENTIOMETER { |
t_yamamoto | 0:669ef71cba68 | 5 | AnalogIn adc[] = { |
t_yamamoto | 0:669ef71cba68 | 6 | AnalogIn(ADC0_PIN), |
t_yamamoto | 0:669ef71cba68 | 7 | AnalogIn(ADC1_PIN), |
t_yamamoto | 0:669ef71cba68 | 8 | AnalogIn(ADC2_PIN), |
kishibekairohan | 16:3f2c2d89372b | 9 | AnalogIn(ADC3_PIN), |
kishibekairohan | 16:3f2c2d89372b | 10 | AnalogIn(ADC4_PIN), |
kishibekairohan | 16:3f2c2d89372b | 11 | |
t_yamamoto | 0:669ef71cba68 | 12 | }; |
t_yamamoto | 0:669ef71cba68 | 13 | } |