Denk über die Stelle nochmal nach. (Tip: es ist die falsche Stelle)
Und die Klammer ist nicht verloren gegangen, sie war nie drin (siehe Einganspost).
void loop (){
if ( radio.available()) {
float got_tempout; // Variable for the received timestamp
while (radio.available()) { // While there is data ready
radio.read( &got_tempout, sizeof(unsigned long) ); // Get the payload
}
Serial.println(got_tempout);
delay (1000);
}