/* * 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(57600); // initialize the serial communications } void loop() { Serial.write("hello"); }