I've got it able to display time dma_display->print(myTZ.dateTime("m-j-y")); , however i cannot get it to update the string in real time. I tried
if (secondChanged()) {
dma_display->print(myTZ.dateTime("m-j-y"));
}
and it overwrites the initial display ever second without erasing the original.
How can i get it to "replace' the original digits with the new ones?
Thanks