Serial implementiert Stream und so auch Print!
Damit lässt sich einiges anstellen
#include <Streaming.h> // die Lib findest du selber ;-)
//Stream &cout = Serial; // cout Emulation für "Arme"
Stream &cout = Serial1; // cout Emulation für "Arme"
#include <LiquidCrystal_I2C.h>
// Set the LCD address to 0x27 for a 16 chars and 2 line display
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup()
{
Serial1.begin(9600);
lcd.begin();
lcd.backlight();
cout << F("Start: ") << F(__FILE__) << endl;
lcd << "Hallo!"
}
void loop()
{
}