// this is nano bluetooth share connection with usb, text send throught Serial will be sent to HC-06
#include <Arduino.h>
#define readPort Serial
void setup()
{
readPort.begin(115200);
readPort.println("test hello");
}
void loop()
{
while (readPort.available())
{ // While there is more to be read, keep reading.
readPort.print((char)readPort.read());
}
}