|
|
@@ -350,7 +350,7 @@ protected:
|
|
|
/**************************************************************************/
|
|
|
class RTC_DS1307 : RTC_I2C {
|
|
|
public:
|
|
|
- boolean begin(TwoWire *wireInstance = &Wire);
|
|
|
+ bool begin(TwoWire *wireInstance = &Wire);
|
|
|
void adjust(const DateTime &dt);
|
|
|
uint8_t isrunning(void);
|
|
|
DateTime now();
|
|
|
@@ -369,7 +369,7 @@ public:
|
|
|
/**************************************************************************/
|
|
|
class RTC_DS3231 : RTC_I2C {
|
|
|
public:
|
|
|
- boolean begin(TwoWire *wireInstance = &Wire);
|
|
|
+ bool begin(TwoWire *wireInstance = &Wire);
|
|
|
void adjust(const DateTime &dt);
|
|
|
bool lostPower(void);
|
|
|
DateTime now();
|
|
|
@@ -401,10 +401,10 @@ public:
|
|
|
/**************************************************************************/
|
|
|
class RTC_PCF8523 : RTC_I2C {
|
|
|
public:
|
|
|
- boolean begin(TwoWire *wireInstance = &Wire);
|
|
|
+ bool begin(TwoWire *wireInstance = &Wire);
|
|
|
void adjust(const DateTime &dt);
|
|
|
- boolean lostPower(void);
|
|
|
- boolean initialized(void);
|
|
|
+ bool lostPower(void);
|
|
|
+ bool initialized(void);
|
|
|
DateTime now();
|
|
|
void start(void);
|
|
|
void stop(void);
|
|
|
@@ -428,8 +428,8 @@ public:
|
|
|
/**************************************************************************/
|
|
|
class RTC_PCF8563 : RTC_I2C {
|
|
|
public:
|
|
|
- boolean begin(TwoWire *wireInstance = &Wire);
|
|
|
- boolean lostPower(void);
|
|
|
+ bool begin(TwoWire *wireInstance = &Wire);
|
|
|
+ bool lostPower(void);
|
|
|
void adjust(const DateTime &dt);
|
|
|
DateTime now();
|
|
|
void start(void);
|