Empfangsproblem von Daten über Serial - nur 12 Zeichen

Kannst Du noch heute?

#include <SoftwareSerial.h>
SoftwareSerial BT(11, 19); // RX, TX
void setup()
{
  Serial.begin(115200);
  BT.begin(38400);
  delay(10);
}

void loop()
{
  if (BT.available())
  {
    Serial.write(BT.read());
  }
}

Die 38400 dann nach und nach runter, wenn es nicht geht.
19200, 9600, 4800

Was kommt raus?