asd

Dependencies:   mbed

main.cpp

Committer:
harseed951
Date:
2015-07-16
Revision:
0:3a0f92cc8a81

File content as of revision 0:3a0f92cc8a81:

#include"mbed.h"

PwmOut p(LED1);
PwmOut q(LED2);
PwmOut a(LED3);
PwmOut b(LED4);
AnalogIn pot(p20);

int main(){ 
  while(1)
  {
   p= pot;
   q= pot;
   a= pot;
   b= pot;
   }
  }