mirror of
https://github.com/esphome/esphome.git
synced 2026-09-16 09:38:42 +00:00
Co-authored-by: Jonathan Swoboda <154711427+swoboda1337@users.noreply.github.com>
199 lines
5.9 KiB
C++
199 lines
5.9 KiB
C++
#include "bm8563.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome::bm8563 {
|
|
|
|
static const char *const TAG = "bm8563";
|
|
|
|
static constexpr uint8_t CONTROL_STATUS_1_REG = 0x00;
|
|
static constexpr uint8_t CONTROL_STATUS_2_REG = 0x01;
|
|
static constexpr uint8_t TIME_FIRST_REG = 0x02; // Time uses reg 2, 3, 4
|
|
static constexpr uint8_t DATE_FIRST_REG = 0x05; // Date uses reg 5, 6, 7, 8
|
|
static constexpr uint8_t TIMER_CONTROL_REG = 0x0E;
|
|
static constexpr uint8_t TIMER_VALUE_REG = 0x0F;
|
|
static constexpr uint8_t CLOCK_1_HZ = 0x82;
|
|
static constexpr uint8_t CLOCK_1_60_HZ = 0x83;
|
|
// Maximum duration: 255 minutes (at 1/60 Hz) = 15300 seconds
|
|
static constexpr uint32_t MAX_TIMER_DURATION_S = 255 * 60;
|
|
|
|
void BM8563::setup() {
|
|
if (!this->write_byte_16(CONTROL_STATUS_1_REG, 0)) {
|
|
this->mark_failed();
|
|
return;
|
|
}
|
|
}
|
|
|
|
void BM8563::update() { this->read_time(); }
|
|
|
|
void BM8563::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "BM8563:");
|
|
LOG_I2C_DEVICE(this);
|
|
if (this->is_failed()) {
|
|
ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
|
|
}
|
|
}
|
|
|
|
void BM8563::start_timer(uint32_t duration_s) {
|
|
this->clear_irq_();
|
|
this->set_timer_irq_(duration_s);
|
|
}
|
|
|
|
void BM8563::write_time() {
|
|
auto now = time::RealTimeClock::utcnow();
|
|
if (!now.is_valid()) {
|
|
ESP_LOGE(TAG, "Invalid system time, not syncing to RTC.");
|
|
return;
|
|
}
|
|
|
|
ESP_LOGD(TAG, "Writing time: %i-%i-%i %i, %i:%i:%i", now.year, now.month, now.day_of_month, now.day_of_week, now.hour,
|
|
now.minute, now.second);
|
|
|
|
this->set_time_(now);
|
|
this->set_date_(now);
|
|
}
|
|
|
|
void BM8563::read_time() {
|
|
ESPTime rtc_time;
|
|
this->get_time_(rtc_time);
|
|
this->get_date_(rtc_time);
|
|
rtc_time.day_of_year = 1; // unused by recalc_timestamp_utc, but needs to be valid
|
|
ESP_LOGD(TAG, "Read time: %i-%i-%i %i, %i:%i:%i", rtc_time.year, rtc_time.month, rtc_time.day_of_month,
|
|
rtc_time.day_of_week, rtc_time.hour, rtc_time.minute, rtc_time.second);
|
|
|
|
rtc_time.recalc_timestamp_utc(false);
|
|
if (!rtc_time.is_valid()) {
|
|
ESP_LOGE(TAG, "Invalid RTC time, not syncing to system clock.");
|
|
return;
|
|
}
|
|
time::RealTimeClock::synchronize_epoch_(rtc_time.timestamp);
|
|
}
|
|
|
|
uint8_t BM8563::bcd2_to_byte_(uint8_t value) {
|
|
const uint8_t tmp = ((value & 0xF0) >> 0x4) * 10;
|
|
return tmp + (value & 0x0F);
|
|
}
|
|
|
|
uint8_t BM8563::byte_to_bcd2_(uint8_t value) {
|
|
const uint8_t bcdhigh = value / 10;
|
|
value -= bcdhigh * 10;
|
|
return (bcdhigh << 4) | value;
|
|
}
|
|
|
|
void BM8563::get_time_(ESPTime &time) {
|
|
uint8_t buf[3] = {0};
|
|
this->read_register(TIME_FIRST_REG, buf, 3);
|
|
|
|
time.second = this->bcd2_to_byte_(buf[0] & 0x7f);
|
|
time.minute = this->bcd2_to_byte_(buf[1] & 0x7f);
|
|
time.hour = this->bcd2_to_byte_(buf[2] & 0x3f);
|
|
}
|
|
|
|
void BM8563::set_time_(const ESPTime &time) {
|
|
uint8_t buf[3] = {this->byte_to_bcd2_(time.second), this->byte_to_bcd2_(time.minute), this->byte_to_bcd2_(time.hour)};
|
|
this->write_register_(TIME_FIRST_REG, buf, 3);
|
|
}
|
|
|
|
void BM8563::get_date_(ESPTime &time) {
|
|
uint8_t buf[4] = {0};
|
|
this->read_register(DATE_FIRST_REG, buf, sizeof(buf));
|
|
|
|
time.day_of_month = this->bcd2_to_byte_(buf[0] & 0x3f);
|
|
time.day_of_week = this->bcd2_to_byte_(buf[1] & 0x07);
|
|
time.month = this->bcd2_to_byte_(buf[2] & 0x1f);
|
|
|
|
uint8_t year_byte = this->bcd2_to_byte_(buf[3] & 0xff);
|
|
|
|
if (buf[2] & 0x80) {
|
|
time.year = 1900 + year_byte;
|
|
} else {
|
|
time.year = 2000 + year_byte;
|
|
}
|
|
}
|
|
|
|
void BM8563::set_date_(const ESPTime &time) {
|
|
uint8_t buf[4] = {
|
|
this->byte_to_bcd2_(time.day_of_month),
|
|
this->byte_to_bcd2_(time.day_of_week),
|
|
this->byte_to_bcd2_(time.month),
|
|
this->byte_to_bcd2_(time.year % 100),
|
|
};
|
|
|
|
if (time.year < 2000) {
|
|
buf[2] = buf[2] | 0x80;
|
|
}
|
|
|
|
this->write_register_(DATE_FIRST_REG, buf, 4);
|
|
}
|
|
|
|
void BM8563::write_byte_(uint8_t reg, uint8_t value) {
|
|
if (!this->write_byte(reg, value)) {
|
|
ESP_LOGE(TAG, "Failed to write byte 0x%02X with value 0x%02X", reg, value);
|
|
}
|
|
}
|
|
|
|
void BM8563::write_register_(uint8_t reg, const uint8_t *data, size_t len) {
|
|
if (auto error = this->write_register(reg, data, len); error != i2c::ErrorCode::NO_ERROR) {
|
|
ESP_LOGE(TAG, "Failed to write register 0x%02X with %zu bytes", reg, len);
|
|
}
|
|
}
|
|
|
|
optional<uint8_t> BM8563::read_register_(uint8_t reg) {
|
|
uint8_t data;
|
|
if (auto error = this->read_register(reg, &data, 1); error != i2c::ErrorCode::NO_ERROR) {
|
|
ESP_LOGE(TAG, "Failed to read register 0x%02X", reg);
|
|
return {};
|
|
}
|
|
return data;
|
|
}
|
|
|
|
void BM8563::set_timer_irq_(uint32_t duration_s) {
|
|
ESP_LOGI(TAG, "Timer Duration: %u s", duration_s);
|
|
|
|
if (duration_s > MAX_TIMER_DURATION_S) {
|
|
ESP_LOGW(TAG, "Timer duration %u s exceeds maximum %u s", duration_s, MAX_TIMER_DURATION_S);
|
|
return;
|
|
}
|
|
|
|
if (duration_s > 255) {
|
|
uint8_t duration_minutes = duration_s / 60;
|
|
this->write_byte_(TIMER_VALUE_REG, duration_minutes);
|
|
this->write_byte_(TIMER_CONTROL_REG, CLOCK_1_60_HZ);
|
|
} else {
|
|
this->write_byte_(TIMER_VALUE_REG, duration_s);
|
|
this->write_byte_(TIMER_CONTROL_REG, CLOCK_1_HZ);
|
|
}
|
|
|
|
auto maybe_ctrl_status_2 = this->read_register_(CONTROL_STATUS_2_REG);
|
|
if (!maybe_ctrl_status_2.has_value()) {
|
|
ESP_LOGE(TAG, "Failed to read CONTROL_STATUS_2_REG");
|
|
return;
|
|
}
|
|
uint8_t ctrl_status_2_reg_value = maybe_ctrl_status_2.value();
|
|
ctrl_status_2_reg_value |= (1 << 0);
|
|
ctrl_status_2_reg_value &= ~(1 << 7);
|
|
this->write_byte_(CONTROL_STATUS_2_REG, ctrl_status_2_reg_value);
|
|
}
|
|
|
|
void BM8563::clear_irq_() {
|
|
auto maybe_data = this->read_register_(CONTROL_STATUS_2_REG);
|
|
if (!maybe_data.has_value()) {
|
|
ESP_LOGE(TAG, "Failed to read CONTROL_STATUS_2_REG");
|
|
return;
|
|
}
|
|
uint8_t data = maybe_data.value();
|
|
this->write_byte_(CONTROL_STATUS_2_REG, data & 0xf3);
|
|
}
|
|
|
|
void BM8563::disable_irq_() {
|
|
this->clear_irq_();
|
|
auto maybe_data = this->read_register_(CONTROL_STATUS_2_REG);
|
|
if (!maybe_data.has_value()) {
|
|
ESP_LOGE(TAG, "Failed to read CONTROL_STATUS_2_REG");
|
|
return;
|
|
}
|
|
uint8_t data = maybe_data.value();
|
|
this->write_byte_(CONTROL_STATUS_2_REG, data & 0xfc);
|
|
}
|
|
|
|
} // namespace esphome::bm8563
|