// By D.Weerasinghe @COTM
// Run this , and in the serial terminal input some text.
// then stop and view the file created (see in the downloads folder) using pulse view software
// Assign protocole as UART and D0 for Rx, D1 for Tx and baud rate of 9600
// use bit order lsb first and data format : ascii
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("Input some text");
delay(15000);
}