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);
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);