int adress = 1; void setup() { Serial.begin(9600); //initialize serial communications } void loop() { Serial.print(adress); Serial.print(","); Serial.println("Hello"); // print value to Serial delay(2000); }