Hi @piff (Marco),
I don’t think so. My SCK worked just fine for before I decided to install a battery. The button cell battery isn’t required/ supplied with the SCK, but f you want one, it is a CR1220 (as long as your primary battery is attached, and it’s charged, the button cell battery isn’t needed.)
I think The RTC gets updated when the SCK connects to the SC server:
if (base_.checkRTC())
{
if (server_.time(time))
{
while (!base_.RTCadjust(time)&&(retry<5)) retry++;
#if debugEnabled
if (!debugON) Serial.println(F("Updating RTC..."));
#endif
}
#if debugEnabled
else if (!debugON) Serial.println(F("Fail updating RTC!!"));
#endif
(The code above was copied from lines 171-183 here: https://github.com/fablabbcn/Smart-Citizen-Kit/blob/master/sck_beta_v0_9/SCKAmbient.cpp)
@aitoraloa, can you confirm that the time is updated when the SCK connects to the SC servers? Thanks,
-Matt
SCK 685