void setup() {
// put your setup code here, to run once:
Serial.begin(115200); //8N1 (8 Datenbits, No Parity, 1 Stoppbit) - 115.200 Bits/s
Serial.println("Hallo Meister!");
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println(47);
delay(1000);
}