Pulsni_izlaz
Dependencies: mbed
main.cpp
- Committer:
- miljkovic
- Date:
- 2015-12-10
- Revision:
- 0:d70aa603cd87
File content as of revision 0:d70aa603cd87:
#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; } } }