Zadatak 3-4

Dependencies:   mbed

Revision:
0:8748fc4ae628
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Dec 10 14:59:30 2015 +0000
@@ -0,0 +1,23 @@
+#include "mbed.h"
+ 
+int main() {
+DigitalOut led1(LED1);
+DigitalIn inputsw(p7);
+inputsw.mode(PullUp); 
+    float tx=0.5;
+    float ty=0.5;
+    
+    while(1){
+    led1=0;
+    wait(tx);
+    led1=1;
+    wait(tx);
+    if(inputsw==1){
+        tx=ty/2.0;
+        }
+        else if (inputsw==0)
+        {
+            tx=ty*2;
+            }
+    }
+}