Skip to main content
2 of 2
Always test code examples.
linhartr22
  • 616
  • 5
  • 11

I only use this for debugging but:

int a = 10;
int b = 20;
Serial.println("a = " + String(a) + " and b = " + String(b));
linhartr22
  • 616
  • 5
  • 11