30 lines
699 B
C++
30 lines
699 B
C++
//======================================================
|
|
// TERMINAL WINDOW - NATIVE USB
|
|
//======================================================
|
|
|
|
void terminal(String msg)
|
|
{
|
|
msg += "\n";
|
|
Terminal.print(msg);
|
|
}
|
|
|
|
//======================================================
|
|
// BLUETOOTH WINDOW - NATIVE/VERTUAL USB
|
|
//======================================================
|
|
|
|
void bluetooth(String msg)
|
|
{
|
|
msg += "\n";
|
|
Bluetooth.print(msg);
|
|
}
|
|
|
|
//======================================================
|
|
// BLUETOOTH WINDOW - NATIVE/VERTUAL USB
|
|
//======================================================
|
|
|
|
void dualcomm(String msg)
|
|
{
|
|
terminal(msg);
|
|
bluetooth(msg);
|
|
}
|