LI FI CODE TX
/*
* Project name:
Lifi tx
* Copyright
(c) Researchdesignlab.com
* Description:
* Test configuration:
MCU: ATMEGA328
Dev.Board: Arduino uno
Oscillator: 16 MHz
Software: Arduino
*/
char rec;
void setup()
{
Serial.begin(38400); // initialize the serial communications
}
void loop()
{
Serial.write("hello");
}