In an Arduino script how do I compare a date pointer with a string that is a date. Currently I am trying:
while(year(t)=="1970") {
getTime();
}
but I am getting a can't compare a pointer with a string compiler error which I understand but I would like to compare the two somehow and the somehow is where I am stuck. Thanks for any help for this newbie