String and Array Confusion.

skizoh:
test that !

  int Hrs = now.hour();

int Mins = now.minute();
 int Sec = now.second();

int Time[3] =(Hrs, Min, Sec); // your tab of int !
String string_time="";
 
 //This is just for debugging. Just to see what is being sent to the LED's

string_time +=  String(hour);    // (or =+ i dont say :s sry)
string_time +=  String(" : ");
string_time +=  String(minute);
string_time +=  String(" : ");
string_time +=  String(seconde);

Serial.println(string_time);
 delay(1000);




Two solution for you, the int hour and the string our to save or print !

Skizo !

Hey Skizo

Thanks for the help but it did not work. I am still getting just the seconds value printing out.

Any other suggestions?