Re: How to convert numbers from Binary to Decimal? Please Coment!:D

As explained to you yesterday, you're sending a float, so you should receive a float.

float Amps;
radio.read(&text, sizeof(text)); //prints the word Amps1=
radio.read(&Amps, sizeof(Amps));

Serial.print(text);
Serial.println(Amps);

Note: I spotted a mistake and edited code.