Problem with OLED Display Voltages (String Command) using transmitter and Receiver

void loop()
{
  char buff[6];
  battery();
  dtostrf(Voltage, 5, 2, buff)
  Serial.print ("$ABC, ");
  Serial.print(buff);
  Serial.println("V,\n"); 
}
1 Like