Lab1-01_pc_communication_lite
Dependencies:
mbed
main.cpp
- Committer:
- heptasat2021
- Date:
- 2021-08-10
- Revision:
- 0:2f78e9f9540b
File content as of revision 0:2f78e9f9540b:
#include "mbed.h"
Serial pc(USBTX,USBRX,9600);
int main()
{
while (true) {
pc.printf("Hello World!\r\n");
wait_ms(500);
}
}