asd

Dependencies:   mbed

Revision:
0:3a0f92cc8a81
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Jul 16 08:29:31 2015 +0000
@@ -0,0 +1,17 @@
+#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;
+   }
+  }