Oud verslag voor Biquad.

Dependencies:   Biquad HIDScope QEI angleandposition controlandadjust mbed

Fork of includeair by Jasper Gerth

main.cpp

Committer:
Gerth
Date:
2015-10-09
Revision:
0:dd66fff537d7
Child:
1:917c07a4f3ec

File content as of revision 0:dd66fff537d7:

#include "mbed.h"

DigitalOut gpo(D0);
DigitalOut led(LED_RED);

int main()
{
    while (true) {
        gpo = !gpo; // toggle pin
        led = !led; // toggle led
        wait(0.2f);
    }
}