repeater

Dependencies:   mbed

main.cpp

Committer:
ShaolinPoutine
Date:
2017-01-11
Revision:
0:75d478e440e7

File content as of revision 0:75d478e440e7:

#include "mbed.h"              
 
Serial pc(USBTX, USBRX);
 
int main() {
    pc.printf("Echoes back to the screen anything you type\n");
    while(1) {
        pc.putc(pc.getc());
    }
}