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
**MCP79412RTC** is an Arduino library that supports the Microchip MCP79412 Real-Time Clock/Calendar. It is intended to be used with the [Arduino Time library] (http://www.arduino.cc/playground/Code/Time).
9
+
**MCP79412RTC** is an Arduino library that supports the Microchip MCP7941x Real-Time Clock/Calendar chips. It is intended to be used with the [Arduino Time library] (http://www.arduino.cc/playground/Code/Time).
10
10
11
-
The **MCP79412RTC** library is a drop-in replacement for the **DS1307RTC** library by Michael Margolis that is supplied with the [Arduino Time library](http://www.arduino.cc/playground/Code/Time). To change from using a DS1307 RTC to an MCP79412 RTC, it is only necessary to use `#include <MCP79412RTC.h>` instead of `#include <DS1307RTC.h>`.
11
+
The **MCP79412RTC** library is a drop-in replacement for the **DS1307RTC** library by Michael Margolis that is supplied with the [Arduino Time library](http://www.arduino.cc/playground/Code/Time). To change from using a DS1307 RTC to an MCP7941x RTC, it is only necessary to use `#include <MCP79412RTC.h>` instead of `#include <DS1307RTC.h>`.
12
12
13
-
The **MCP79412RTC** library also implements methods to support the additional features of the MCP79412 RTC.
13
+
The **MCP79412RTC** library also implements methods to support the additional features of the MCP7941x RTC.
14
14
15
15
**For more information on the MCP79412, see:**
16
16
[My Blog Post](http://goo.gl/MkBnjR), summarizing the features and advantages of the MCP79412
17
17
[My Power Outage Logger Project](http://goo.gl/RfM5os), an Arduino-based project featuring the MCP79412
18
18
The [Microchip MCP79412 Product Page](http://goo.gl/SHfKe0) for specs, datasheet, etc.
19
-
MCP79412 breakout boards are available at [my Tindie Store](http://goo.gl/UzAVcZ)
19
+
MCP79411 and MCP79412 breakout boards are available at [my Tindie Store](http://goo.gl/UzAVcZ)
20
20
21
21
## Installation ##
22
22
To use the **MCP79412RTC** library:
@@ -463,3 +463,19 @@ No function value returned. The RTC's ID is returned to the **uniqueID** array.
Returns an EUI-64 ID. For an MCP79412, calling this function is equivalent to calling `idRead()`. For an MCP79411, the EUI-48 ID is converted to EUI-64. Caller must provide an 8-byte array to contain the results.
471
+
#####Syntax
472
+
`RTC.getEUI64(byte *uniqueID);`
473
+
#####Parameters
474
+
**uniqueID:** An 8-byte array to receive the EUI-64 unique ID _(*byte)_
475
+
#####Returns
476
+
No function value returned. The EUI-64 ID is returned to the **uniqueID** array.
0 commit comments