-
-
Notifications
You must be signed in to change notification settings - Fork 129
Open
Labels
Description
The Arduino DUE has its own RTC clock.
The symbol "Rtc" is already defined there and can not be used in the examples in this lib.
Problem:
RtcDS3234<SPIClass> Rtc(SPI);
Reports:
Compilation error: 'RtcDS3234 Rtc' redeclared as different kind of symbol
Example solution:
RtcDS3234<SPIClass> myRtc(SPI);
Reactions are currently unavailable