Toll-Free Customer Support 24/7

Li Fi

 

void setup()
{
  // Open serial communications and wait for port to open:
  Serial.begin(38400);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for Leonardo only
  }

}

void loop() // run over and over
{
 
  if (Serial.available())
    Serial.write(Serial.read());
}

Back to top