LAB10_Oppgave2
Dependencies: mbed
Fork of LAB10_Oppgave2 by
Diff: main.cpp
- Revision:
- 0:1fe30bae9dc1
- Child:
- 1:c3e8496642b4
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Wed Nov 04 18:56:08 2015 +0000 @@ -0,0 +1,12 @@ +#include "mbed.h" + +Serial pc(USBTX, USBRX); + +int main() { + while (1) { + pc.putc(pc.getc()); + } +} + + +