4180 Morse / Mbed 2 deprecated morseCode_1_1

Dependencies:   mbed 4DGL-uLCD-SE

Fork of morseCode_1 by 4180 Morse

main.cpp

Committer:
Jeco13
Date:
2018-04-18
Revision:
3:6e52b66c5a0c
Parent:
1:c4b5892da7ee
Child:
4:62c590826ddb

File content as of revision 3:6e52b66c5a0c:

#include "mbed.h"

//Part 1
//Main takes in string text input from bluetooth module. Store in string variable
//call text_to_morse function on each character from input string variable

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);//repository
    }
}