2018-10-10 18:25:04 +01:00
/*
2019-10-27 10:13:24 +00:00
xsns_33_ds3231 . ino - ds3231 RTC chip , act like sensor support for Tasmota
2018-10-10 18:25:04 +01:00
2019-12-31 13:23:34 +00:00
Copyright ( C ) 2020 Guy Elgabsi ( guy . elg AT gmail . com )
2018-10-10 18:25:04 +01:00
This program is free software : you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation , either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
# ifdef USE_I2C
# ifdef USE_DS3231
/*********************************************************************************************\
DS3231 - its a accurate RTC that used in the SONOFF for get time when you not have internet connection
This is minimal library that use only for read / write time !
We store UTC time in the DS3231 , so we can use the standart functions .
HOWTO Use : first time , you must to have internet connection ( use your mobile phone or try in other location ) .
once you have ntp connection , the DS3231 internal clock will be updated automatically .
you can now power off the device , from now and on the time is stored in the module and will
be restored when the is no connection to NTP .
Source : Guy Elgabsi with special thanks to Jack Christensen
I2C Address : 0x68
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2018-11-06 16:33:51 +00:00
# define XSNS_33 33
2019-11-03 16:54:39 +00:00
# define XI2C_26 26 // See I2CDEVICES.md
2018-11-06 16:33:51 +00:00
2018-10-10 18:25:04 +01:00
//DS3232 I2C Address
# ifndef USE_RTC_ADDR
2018-11-06 16:33:51 +00:00
# define USE_RTC_ADDR 0x68
2018-10-10 18:25:04 +01:00
# endif
//DS3232 Register Addresses
# define RTC_SECONDS 0x00
# define RTC_MINUTES 0x01
# define RTC_HOURS 0x02
# define RTC_DAY 0x03
# define RTC_DATE 0x04
# define RTC_MONTH 0x05
# define RTC_YEAR 0x06
# define RTC_CONTROL 0x0E
# define RTC_STATUS 0x0F
//Control register bits
# define OSF 7
# define EOSC 7
# define BBSQW 6
# define CONV 5
# define RS2 4
# define RS1 3
# define INTCN 2
//Other
# define HR1224 6 //Hours register 12 or 24 hour mode (24 hour mode==0)
# define CENTURY 7 //Century bit in Month register
# define DYDT 6 //Day/Date flag bit in alarm Day/Date registers
2019-01-28 13:08:33 +00:00
bool ds3231ReadStatus = false ;
2019-11-10 16:02:02 +00:00
bool ds3231WriteStatus = false ; //flag, we want to read/write to DS3231 only once
2019-01-28 13:08:33 +00:00
bool DS3231chipDetected = false ;
2018-10-10 18:25:04 +01:00
/*----------------------------------------------------------------------*
Detect the DS3231 Chip
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
2018-12-30 13:28:16 +00:00
void DS3231Detect ( void )
2018-10-10 18:25:04 +01:00
{
2019-11-11 17:36:13 +00:00
if ( I2cActive ( USE_RTC_ADDR ) ) { return ; }
2019-11-10 16:02:02 +00:00
2018-12-30 13:28:16 +00:00
if ( I2cValidRead ( USE_RTC_ADDR , RTC_STATUS , 1 ) ) {
2019-11-10 16:02:02 +00:00
I2cSetActiveFound ( USE_RTC_ADDR , " DS3231 " ) ;
2018-12-30 13:28:16 +00:00
DS3231chipDetected = true ;
2018-10-10 18:25:04 +01:00
}
}
/*----------------------------------------------------------------------*
BCD - to - Decimal conversion
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
uint8_t bcd2dec ( uint8_t n )
{
return n - 6 * ( n > > 4 ) ;
}
/*----------------------------------------------------------------------*
Decimal - to - BCD conversion
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
uint8_t dec2bcd ( uint8_t n )
{
return n + 6 * ( n / 10 ) ;
}
/*----------------------------------------------------------------------*
Read time from DS3231 and return the epoch time ( second since 1 - 1 - 1970 00 : 00 )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
2018-11-14 13:32:09 +00:00
uint32_t ReadFromDS3231 ( void )
2018-10-10 18:25:04 +01:00
{
TIME_T tm ;
tm . second = bcd2dec ( I2cRead8 ( USE_RTC_ADDR , RTC_SECONDS ) ) ;
tm . minute = bcd2dec ( I2cRead8 ( USE_RTC_ADDR , RTC_MINUTES ) ) ;
tm . hour = bcd2dec ( I2cRead8 ( USE_RTC_ADDR , RTC_HOURS ) & ~ _BV ( HR1224 ) ) ; //assumes 24hr clock
tm . day_of_week = I2cRead8 ( USE_RTC_ADDR , RTC_DAY ) ;
tm . day_of_month = bcd2dec ( I2cRead8 ( USE_RTC_ADDR , RTC_DATE ) ) ;
tm . month = bcd2dec ( I2cRead8 ( USE_RTC_ADDR , RTC_MONTH ) & ~ _BV ( CENTURY ) ) ; //don't use the Century bit
tm . year = bcd2dec ( I2cRead8 ( USE_RTC_ADDR , RTC_YEAR ) ) ;
return MakeTime ( tm ) ;
}
/*----------------------------------------------------------------------*
Get time as TIME_T and set the DS3231 time to this value
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
void SetDS3231Time ( uint32_t epoch_time ) {
TIME_T tm ;
BreakTime ( epoch_time , tm ) ;
I2cWrite8 ( USE_RTC_ADDR , RTC_SECONDS , dec2bcd ( tm . second ) ) ;
I2cWrite8 ( USE_RTC_ADDR , RTC_MINUTES , dec2bcd ( tm . minute ) ) ;
I2cWrite8 ( USE_RTC_ADDR , RTC_HOURS , dec2bcd ( tm . hour ) ) ;
I2cWrite8 ( USE_RTC_ADDR , RTC_DAY , tm . day_of_week ) ;
I2cWrite8 ( USE_RTC_ADDR , RTC_DATE , dec2bcd ( tm . day_of_month ) ) ;
I2cWrite8 ( USE_RTC_ADDR , RTC_MONTH , dec2bcd ( tm . month ) ) ;
I2cWrite8 ( USE_RTC_ADDR , RTC_YEAR , dec2bcd ( tm . year ) ) ;
I2cWrite8 ( USE_RTC_ADDR , RTC_STATUS , I2cRead8 ( USE_RTC_ADDR , RTC_STATUS ) & ~ _BV ( OSF ) ) ; //clear the Oscillator Stop Flag
}
2019-11-10 16:02:02 +00:00
void DS3231EverySecond ( void )
{
TIME_T tmpTime ;
if ( ! ds3231ReadStatus & & Rtc . utc_time < START_VALID_TIME ) { // We still did not sync with NTP (time not valid) , so, read time from DS3231
2020-10-30 11:29:48 +00:00
TasmotaGlobal . ntp_force_sync = true ; //force to sync with ntp
2019-11-10 16:02:02 +00:00
Rtc . utc_time = ReadFromDS3231 ( ) ; //we read UTC TIME from DS3231
// from this line, we just copy the function from "void RtcSecond()" at the support.ino ,line 2143 and above
// We need it to set rules etc.
BreakTime ( Rtc . utc_time , tmpTime ) ;
if ( Rtc . utc_time < START_VALID_TIME ) {
ds3231ReadStatus = true ; //if time in DS3231 is valid, do not update again
}
RtcTime . year = tmpTime . year + 1970 ;
Rtc . daylight_saving_time = RuleToTime ( Settings . tflag [ 1 ] , RtcTime . year ) ;
Rtc . standard_time = RuleToTime ( Settings . tflag [ 0 ] , RtcTime . year ) ;
2020-11-06 16:09:13 +00:00
AddLog_P ( LOG_LEVEL_INFO , PSTR ( " Set time from DS3231 to RTC ( " D_UTC_TIME " ) %s, ( " D_DST_TIME " ) %s, ( " D_STD_TIME " ) %s " ) ,
2020-02-19 14:23:59 +00:00
GetDateAndTime ( DT_UTC ) . c_str ( ) , GetDateAndTime ( DT_DST ) . c_str ( ) , GetDateAndTime ( DT_STD ) . c_str ( ) ) ;
2019-11-10 16:02:02 +00:00
if ( Rtc . local_time < START_VALID_TIME ) { // 2016-01-01
2020-10-29 12:58:50 +00:00
TasmotaGlobal . rules_flag . time_init = 1 ;
2019-11-10 16:02:02 +00:00
} else {
2020-10-29 12:58:50 +00:00
TasmotaGlobal . rules_flag . time_set = 1 ;
2019-11-10 16:02:02 +00:00
}
}
else if ( ! ds3231WriteStatus & & Rtc . utc_time > START_VALID_TIME & & abs ( Rtc . utc_time - ReadFromDS3231 ( ) ) > 60 ) { //if time is valid and is drift from RTC in more that 60 second
2020-11-06 16:09:13 +00:00
AddLog_P ( LOG_LEVEL_INFO , PSTR ( " Write Time TO DS3231 from NTP ( " D_UTC_TIME " ) %s, ( " D_DST_TIME " ) %s, ( " D_STD_TIME " ) %s " ) ,
2020-02-19 14:23:59 +00:00
GetDateAndTime ( DT_UTC ) . c_str ( ) , GetDateAndTime ( DT_DST ) . c_str ( ) , GetDateAndTime ( DT_STD ) . c_str ( ) ) ;
2019-11-10 16:02:02 +00:00
SetDS3231Time ( Rtc . utc_time ) ; //update the DS3231 time
ds3231WriteStatus = true ;
}
}
2018-10-10 18:25:04 +01:00
/*********************************************************************************************\
Interface
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2019-01-28 13:08:33 +00:00
bool Xsns33 ( uint8_t function )
2018-10-10 18:25:04 +01:00
{
2019-11-04 09:38:05 +00:00
if ( ! I2cEnabled ( XI2C_26 ) ) { return false ; }
2019-11-03 16:54:39 +00:00
2019-01-28 13:08:33 +00:00
bool result = false ;
2018-10-10 18:25:04 +01:00
2019-11-11 17:36:13 +00:00
if ( FUNC_INIT = = function ) {
DS3231Detect ( ) ;
}
else if ( DS3231chipDetected ) {
switch ( function ) {
case FUNC_EVERY_SECOND :
DS3231EverySecond ( ) ;
break ;
}
2018-10-10 18:25:04 +01:00
}
return result ;
}
# endif // USE_DS3231
# endif // USE_I2C