Firmware for the on-board nRF52832 on the Q10.

Dependencies:   mbed

main.cpp

Committer:
Aqua_IoT
Date:
2017-06-10
Revision:
0:8550a65f4fdf

File content as of revision 0:8550a65f4fdf:

#include "mbed.h"
 
Serial pc(USBTX, USBRX); // tx, rx
 
int main() {
    while(1) {
        pc.printf("Hello World!\n");
        wait(1);
    }
}