An example program driving the AnalogOut. Connect a pair of earphones!

Dependencies:   mbed

Committer:
chris
Date:
Tue Jun 18 11:15:37 2013 +0000
Revision:
1:754db1ff50f2
Parent:
0:1a38bf78f122
Updated incorrected pot pin mapping

Who changed what in which revision?

UserRevisionLine numberNew 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 {
chris 0:1a38bf78f122 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 }