da
Dependencies: mbed TrapezoidControl QEI
Input/Potentiometer/Potentiometer.cpp@23:694ecfa97839, 2019-09-15 (annotated)
- Committer:
- yabahiro
- Date:
- Sun Sep 15 11:53:56 2019 +0000
- Revision:
- 23:694ecfa97839
- Parent:
- 16:3f2c2d89372b
ewf
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 | } |