Skip to content

Commit 77214b5

Browse files
committed
New Component ID
1 parent d5cbf49 commit 77214b5

File tree

18 files changed

+104
-20
lines changed

18 files changed

+104
-20
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Firechip - Micro Crystal RV-8263 Arduino Library
22
==============================
33

4-
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/firechip/library/FC000XXXXXXX.svg)](https://registry.platformio.org/libraries/firechip/FC000XXXXXXX)
4+
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/firechip/library/FC0005748911.svg)](https://registry.platformio.org/libraries/firechip/FC0005748911)
55
[![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip)
66
[![Report Size Deltas](https://github.com/firechip/Firechip_RV-8263_Arduino_Library/actions/workflows/report-size-deltas.yml/badge.svg)](https://github.com/firechip/Firechip_RV-8263_Arduino_Library/actions/workflows/report-size-deltas.yml)
77
[![Compile Examples](https://github.com/firechip/Firechip_RV-8263_Arduino_Library/actions/workflows/compile-examples.yml/badge.svg)](https://github.com/firechip/Firechip_RV-8263_Arduino_Library/actions/workflows/compile-examples.yml)
@@ -28,8 +28,8 @@ Where:
2828

2929
The library support any of these:
3030

31-
* RV-8263-C7TAQC
32-
* RV-8263-C7TAQA
31+
* RV-8263-C7-32.768KHZ-20PPM-TA-QA
32+
* RV-8263-C7-32.768KHZ-20PPM-TA-QC
3333

3434
© 2023 Firechip SL.
3535

examples/Example1-Set_Time/Example1-Set_Time.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Open the serial monitor at 115200 baud
1818
*/
1919

20-
#include <FC000XXXXXXX.h> //Get the library here:http://librarymanager/All#FC000XXXXXXX
20+
#include <FC0005748911.h> //Get the library here:http://librarymanager/All#FC0005748911
2121

2222
RV8263 rtc;
2323

examples/Example10_GNSS_Sync_with_Time_Zone_Support/Example10_GNSS_Sync_with_Time_Zone_Support.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
//#define myTimeZone 4 // This will set the RTC to UK Summer Time, 1 hour ahead of UTC (4 quarter hours)
4040
//#define myTimeZone 0 // This will set the RTC to UTC / GMT
4141

42-
#include <FC000XXXXXXX.h> //Get the library here: http://librarymanager/All#SparkFun_RV8263
42+
#include <FC0005748911.h> //Get the library here: http://librarymanager/All#SparkFun_RV8263
4343

4444
RV8263 rtc;
4545

examples/Example2-Print_Time/Example2-Print_Time.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Open the serial monitor at 115200 baud
1818
*/
1919

20-
#include <FC000XXXXXXX.h> //Get the library here:http://librarymanager/All#FC000XXXXXXX
20+
#include <FC0005748911.h> //Get the library here:http://librarymanager/All#FC0005748911
2121

2222
RV8263 rtc;
2323

examples/Example3A-Set_Hundredths_Software/Example3A-Set_Hundredths_Software.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Open the serial monitor at 115200 baud
1818
*/
1919

20-
#include <FC000XXXXXXX.h> //Get the library here:http://librarymanager/All#FC000XXXXXXX
20+
#include <FC0005748911.h> //Get the library here:http://librarymanager/All#FC0005748911
2121

2222
RV8263 rtc;
2323

examples/Example3B-Set_Hundredths_Hardware/Example3B-Set_Hundredths_Hardware.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Open the serial monitor at 115200 baud
1818
*/
1919

20-
#include <FC000XXXXXXX.h> //Get the library here:http://librarymanager/All#FC000XXXXXXX
20+
#include <FC0005748911.h> //Get the library here:http://librarymanager/All#FC0005748911
2121

2222
RV8263 rtc;
2323

examples/Example4A-Alarm_Interrupt/Example4A-Alarm_Interrupt.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
Open the serial monitor at 115200 baud
1919
*/
2020

21-
#include <FC000XXXXXXX.h> //Get the library here:http://librarymanager/All#FC000XXXXXXX
21+
#include <FC0005748911.h> //Get the library here:http://librarymanager/All#FC0005748911
2222

2323
RV8263 rtc;
2424

examples/Example4B-Countdown_Interrupt/Example4B-Countdown_Interrupt.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Open the serial monitor at 115200 baud
1818
*/
1919

20-
#include <FC000XXXXXXX.h> //Get the library here:http://librarymanager/All#FC000XXXXXXX
20+
#include <FC0005748911.h> //Get the library here:http://librarymanager/All#FC0005748911
2121
#define ENABLE true
2222

2323
RV8263 rtc;

examples/Example4C-Periodic_Interrupt/Example4C-Periodic_Interrupt.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Open the serial monitor at 115200 baud
1818
*/
1919

20-
#include <FC000XXXXXXX.h> //Get the library here:http://librarymanager/All#FC000XXXXXXX
20+
#include <FC0005748911.h> //Get the library here:http://librarymanager/All#FC0005748911
2121

2222
RV8263 rtc;
2323

examples/Example5-Timestamp/Example5-Timestamp.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Open the serial monitor at 115200 baud
1818
*/
1919

20-
#include <FC000XXXXXXX.h> //Get the library here:http://librarymanager/All#FC000XXXXXXX
20+
#include <FC0005748911.h> //Get the library here:http://librarymanager/All#FC0005748911
2121

2222
RV8263 rtc;
2323

0 commit comments

Comments
 (0)