Elektronikprojekt Grupp 13 / Mbed OS test_fft_grp13

Dependencies:   mbed-dsp

Fork of mbed-os-example-blinky by Elektronikprojekt Grupp 13

main.cpp

Committer:
deeza
Date:
2017-03-28
Revision:
34:90d3527a2258
Parent:
29:0b58d21e87d6
Child:
35:935167115537

File content as of revision 34:90d3527a2258:

#include "mbed.h"

DigitalOut led1(LED1);

// main() runs in its own thread in the OS
int main() {
    while (true) {
        led1 = !led1;
        //ändrade värdet från 0.5 till 0.6
        wait(0.6);
    }
}