FTKL USER
/
app-board-AnalogOut
TINF
main.cpp@2:acb0ba8a1395, 2019-11-17 (annotated)
- Committer:
- ftkl_user
- Date:
- Sun Nov 17 07:33:41 2019 +0000
- Revision:
- 2:acb0ba8a1395
- Parent:
- 1:754db1ff50f2
- Child:
- 3:09e4f24b9492
TINF
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
chris | 0:1a38bf78f122 | 1 | #include "mbed.h" |
chris | 0:1a38bf78f122 | 2 | |
chris | 0:1a38bf78f122 | 3 | AnalogOut Aout(p18); |
chris | 1:754db1ff50f2 | 4 | AnalogIn pot1(p19); |
chris | 0:1a38bf78f122 | 5 | |
chris | 0:1a38bf78f122 | 6 | int main() |
chris | 0:1a38bf78f122 | 7 | { |
ftkl_user | 2:acb0ba8a1395 | 8 | while(1) { |
chris | 0:1a38bf78f122 | 9 | for(float i=0.0; i<1.0; i+=0.1) { |
chris | 0:1a38bf78f122 | 10 | Aout = i; |
chris | 0:1a38bf78f122 | 11 | wait(0.00001+(0.0001*pot1.read())); |
chris | 0:1a38bf78f122 | 12 | } |
chris | 0:1a38bf78f122 | 13 | } |
chris | 0:1a38bf78f122 | 14 | } |