@@ -350,7 +350,7 @@ class RTC_I2C {
350350/* *************************************************************************/
351351class RTC_DS1307 : RTC_I2C {
352352public:
353- boolean begin (TwoWire *wireInstance = &Wire);
353+ bool begin (TwoWire *wireInstance = &Wire);
354354 void adjust (const DateTime &dt);
355355 uint8_t isrunning (void );
356356 DateTime now ();
@@ -369,7 +369,7 @@ class RTC_DS1307 : RTC_I2C {
369369/* *************************************************************************/
370370class RTC_DS3231 : RTC_I2C {
371371public:
372- boolean begin (TwoWire *wireInstance = &Wire);
372+ bool begin (TwoWire *wireInstance = &Wire);
373373 void adjust (const DateTime &dt);
374374 bool lostPower (void );
375375 DateTime now ();
@@ -401,10 +401,10 @@ class RTC_DS3231 : RTC_I2C {
401401/* *************************************************************************/
402402class RTC_PCF8523 : RTC_I2C {
403403public:
404- boolean begin (TwoWire *wireInstance = &Wire);
404+ bool begin (TwoWire *wireInstance = &Wire);
405405 void adjust (const DateTime &dt);
406- boolean lostPower (void );
407- boolean initialized (void );
406+ bool lostPower (void );
407+ bool initialized (void );
408408 DateTime now ();
409409 void start (void );
410410 void stop (void );
@@ -428,8 +428,8 @@ class RTC_PCF8523 : RTC_I2C {
428428/* *************************************************************************/
429429class RTC_PCF8563 : RTC_I2C {
430430public:
431- boolean begin (TwoWire *wireInstance = &Wire);
432- boolean lostPower (void );
431+ bool begin (TwoWire *wireInstance = &Wire);
432+ bool lostPower (void );
433433 void adjust (const DateTime &dt);
434434 DateTime now ();
435435 void start (void );
0 commit comments