8000 Update RTC tutorials · V205Arduino/docs-content@1e18ef8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1e18ef8

Browse files
committed
Update RTC tutorials
1 parent d12ce70 commit 1e18ef8

File tree

2 files changed

+3
-3
lines changed
  • content/hardware/02.hero/boards
    • uno-r4-minima/tutorials/rtc
    • uno-r4-wifi/tutorials/rtc

2 files changed

+3
-3
lines changed

content/hardware/02.hero/boards/uno-r4-minima/tutorials/rtc/rtc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The goals of this project are:
2525

2626
## Real-Time Clock (RTC)
2727

28-
The RTC on the UNO R4 Minima can be accessed using the [RTC]() library that is included in the [Renesas]() core. This library allows you to set/get the time as well as using alarms to trigger interrupts.
28+
The RTC on the UNO R4 Minima can be accessed using the [RTC](https://github.com/arduino/ArduinoCore-renesas/tree/main/libraries/RTC) library that is included in the [Renesas](https://github.com/arduino/ArduinoCore-renesas) core. This library allows you to set/get the time as well as using alarms to trigger interrupts.
2929

3030
There are many practical examples using an RTC, and the examples provided in this page will help you get started with it.
3131

@@ -50,7 +50,7 @@ void setup() {
5050
5151
RTCTime startTime(30, Month::JUNE, 2023, 13, 37, 00, DayOfWeek::WEDNESDAY, SaveLight::SAVING_TIME_ACTIVE);
5252
53-
RTC.setTime(startTime)
53+
RTC.setTime(startTime);
5454
}
5555
5656
void loop(){

content/hardware/02.hero/boards/uno-r4-wifi/tutorials/rtc/rtc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ void setup() {
5252
5353
RTCTime startTime(30, Month::JUNE, 2023, 13, 37, 00, DayOfWeek::WEDNESDAY, SaveLight::SAVING_TIME_ACTIVE);
5454
55-
RTC.setTime(startTime)
55+
RTC.setTime(startTime);
5656
}
5757
5858
void loop(){

0 commit comments

Comments
 (0)
0