Time and TimeAlarms Libraries – Ask here for help or suggestions

robtillaart:
do you mean some thing like this?

#include "stdlib.h"

void setup()
{
  Serial.begin(115200);
  char buffer[11];
  unsigned long unixtime=1234567890L;  // L for long
  ltoa(unixtime, buffer, 10);
  Serial.println(buffer);
}

loop(){}



(code not tested)

see - http://www.nongnu.org/avr-libc/user-manual/group__avr__stdlib.html - search for ltoa

FOOL me, i tried it, but i didn't print the buffer..
Thanks, a lot..i'll try tomorrow. now, 3.05am..here..need a sleep..aha!