daad
Dependencies: mbed TrapezoidControl QEI
Input/Potentiometer/Potentiometer.cpp@24:41c23c9a5058, 2019-09-16 (annotated)
- Committer:
- yabahiro
- Date:
- Mon Sep 16 00:03:18 2019 +0000
- Revision:
- 24:41c23c9a5058
- Parent:
- 16:3f2c2d89372b
ads
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 | } |