United Kingdom

We work in partnership with many official Honda dealers around the world.
You can select the country of your choice from the list below, whatever your choice, we can deliver worldwide!

Virtuabotixrtc.h [best] (2024)

Serial.print("Date: "); Serial.print(myRTC.dayofmonth); Serial.print("/"); Serial.print(myRTC.month); Serial.print("/"); Serial.println(myRTC.year);

void setup() { Serial.begin(9600);

void loop() { myRTC.updateTime();

// DS1302 pins: CLK, DAT, RST virtuabotixRTC myRTC(6, 7, 8);

Serial.print("Current time: "); Serial.print(myRTC.hours); Serial.print(":"); Serial.print(myRTC.minutes); Serial.print(":"); Serial.println(myRTC.seconds);

// Set the date and time only once (comment after first run) // myRTC.setDS1302Time(15, 42, 30, 4, 17, 9, 2023); // Format: seconds, minutes, hours, dayOfWeek, dayOfMonth, month, year }

#include <virtuabotixRTC.h>