You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To address the RTC compilation error message when using this code with an Arduino Uno, I changed two lines:
Changed !RTC.begin . . .to !rtc.begin . . .
Changed now = RTC.now(); to now = rtc.now();
The sketch then compiled successfully.
Arduino UNO Owners:
Add "#include <SPI.h>" (without quotes) to prevent build errors.
-Jim
The text was updated successfully, but these errors were encountered: