Toggles LED and prints debug information

main.cpp

Committer:
Dheeraj22
Date:
2019-05-26
Revision:
2:e83554ed7b87
Parent:
1:e4d41670a405
Child:
3:a773d045cb0d

File content as of revision 2:e83554ed7b87:

/* mbed Microcontroller Library
 * Copyright (c) 2018 ARM Limited
 * SPDX-License-Identifier: Apache-2.0
 */

#include "mbed.h"

DigitalOut led1(LED1);
RawSerial my_uart(UART_TX, UART_RX);

#define SLEEP_TIME                  500 // (msec)

// main() runs in its own thread in the OS
int main()
{    
    //Change Baud Rate
    my_uart.baud(115200);
    my_uart.printf("%s\n\r", "UART Initialized");
    char* msg = "OFF";
    
    while (true) {
        // Blink LED and wait 0.5 seconds
        led1 = !led1;
        led1 ? (msg = "OFF"):(msg = "ON");
        my_uart.printf("LED STATE: %s\n\r", msg);
        wait_ms(SLEEP_TIME);
    }
}