Oh, Ausgabe vergessen zu kopieren.
Ausgabebefehl bleibt der gleiche.
Also so:
void loop () {
float got_tempout; // Variable for the received timestamp
if (radio.available()) { // While there is data ready
radio.read( &got_tempout, sizeof(got_tempout) ); // Get the payload
serial.println(got_tempout);
}