Temperature Sensor Update

Dependencies:   mbed

Fork of wired_uart_tx_test by Mauricio Mutai

main.cpp

Committer:
mmutai
Date:
2017-11-16
Revision:
0:e48e800c22a7
Child:
1:bc802d19f771

File content as of revision 0:e48e800c22a7:

#include "mbed.h"

DigitalOut myled(LED1);

Serial uart(p9, p10); // tx, rx

int main() {
    while(1) {
        uart.putc('a');
    }
}