I tried this
'/
void loop()
{
if (radio.available())
{
char text[32] = {0};
char Amps[32] = {0};
radio.read(&text, sizeof(text));
radio.read(&Amps, sizeof(Amps));
Serial.print(text);
Serial.print(Amps);
'
result stay the same
I tried this
'/
void loop()
{
if (radio.available())
{
char text[32] = {0};
char Amps[32] = {0};
radio.read(&text, sizeof(text));
radio.read(&Amps, sizeof(Amps));
Serial.print(text);
Serial.print(Amps);
'
result stay the same