mirror of
https://github.com/esphome/esphome.git
synced 2024-11-19 11:17:01 +01:00
157 lines
5.2 KiB
C++
157 lines
5.2 KiB
C++
#include "tlc59208f_output.h"
|
|
#include "esphome/core/log.h"
|
|
#include "esphome/core/helpers.h"
|
|
#include "esphome/core/hal.h"
|
|
|
|
namespace esphome {
|
|
namespace tlc59208f {
|
|
|
|
static const char *const TAG = "tlc59208f";
|
|
|
|
// * marks register defaults
|
|
// 0*: Register auto increment disabled, 1: Register auto increment enabled
|
|
const uint8_t TLC59208F_MODE1_AI2 = (1 << 7);
|
|
// 0*: don't auto increment bit 1, 1: auto increment bit 1
|
|
const uint8_t TLC59208F_MODE1_AI1 = (1 << 6);
|
|
// 0*: don't auto increment bit 0, 1: auto increment bit 0
|
|
const uint8_t TLC59208F_MODE1_AI0 = (1 << 5);
|
|
// 0: normal mode, 1*: low power mode, osc off
|
|
const uint8_t TLC59208F_MODE1_SLEEP = (1 << 4);
|
|
// 0*: device doesn't respond to i2c bus sub-address 1, 1: responds
|
|
const uint8_t TLC59208F_MODE1_SUB1 = (1 << 3);
|
|
// 0*: device doesn't respond to i2c bus sub-address 2, 1: responds
|
|
const uint8_t TLC59208F_MODE1_SUB2 = (1 << 2);
|
|
// 0*: device doesn't respond to i2c bus sub-address 3, 1: responds
|
|
const uint8_t TLC59208F_MODE1_SUB3 = (1 << 1);
|
|
// 0: device doesn't respond to i2c all-call 3, 1*: responds to all-call
|
|
const uint8_t TLC59208F_MODE1_ALLCALL = (1 << 0);
|
|
|
|
// 0*: Group dimming, 1: Group blinking
|
|
const uint8_t TLC59208F_MODE2_DMBLNK = (1 << 5);
|
|
// 0*: Output change on Stop command, 1: Output change on ACK
|
|
const uint8_t TLC59208F_MODE2_OCH = (1 << 3);
|
|
// 0*: WDT disabled, 1: WDT enabled
|
|
const uint8_t TLC59208F_MODE2_WDTEN = (1 << 2);
|
|
// WDT timeouts
|
|
const uint8_t TLC59208F_MODE2_WDT_5MS = (0 << 0);
|
|
const uint8_t TLC59208F_MODE2_WDT_15MS = (1 << 0);
|
|
const uint8_t TLC59208F_MODE2_WDT_25MS = (2 << 0);
|
|
const uint8_t TLC59208F_MODE2_WDT_35MS = (3 << 0);
|
|
|
|
// --- Special function ---
|
|
// Call address to perform software reset, no devices will ACK
|
|
const uint8_t TLC59208F_SWRST_ADDR = 0x96; //(0x4b 7-bit addr + ~W)
|
|
const uint8_t TLC59208F_SWRST_SEQ[2] = {0xa5, 0x5a};
|
|
|
|
// --- Registers ---2
|
|
// Mode register 1
|
|
const uint8_t TLC59208F_REG_MODE1 = 0x00;
|
|
// Mode register 2
|
|
const uint8_t TLC59208F_REG_MODE2 = 0x01;
|
|
// PWM0
|
|
const uint8_t TLC59208F_REG_PWM0 = 0x02;
|
|
// Group PWM
|
|
const uint8_t TLC59208F_REG_GROUPPWM = 0x0a;
|
|
// Group Freq
|
|
const uint8_t TLC59208F_REG_GROUPFREQ = 0x0b;
|
|
// LEDOUTx registers
|
|
const uint8_t TLC59208F_REG_LEDOUT0 = 0x0c;
|
|
const uint8_t TLC59208F_REG_LEDOUT1 = 0x0d;
|
|
// Sub-address registers
|
|
const uint8_t TLC59208F_REG_SUBADR1 = 0x0e; // default: 0x92 (8-bit addr)
|
|
const uint8_t TLC59208F_REG_SUBADR2 = 0x0f; // default: 0x94 (8-bit addr)
|
|
const uint8_t TLC59208F_REG_SUBADR3 = 0x10; // default: 0x98 (8-bit addr)
|
|
// All call address register
|
|
const uint8_t TLC59208F_REG_ALLCALLADR = 0x11; // default: 0xd0 (8-bit addr)
|
|
|
|
// --- Output modes ---
|
|
static const uint8_t LDR_OFF = 0x00;
|
|
static const uint8_t LDR_ON = 0x01;
|
|
static const uint8_t LDR_PWM = 0x02;
|
|
static const uint8_t LDR_GRPPWM = 0x03;
|
|
|
|
void TLC59208FOutput::setup() {
|
|
ESP_LOGCONFIG(TAG, "Setting up TLC59208FOutputComponent...");
|
|
|
|
ESP_LOGV(TAG, " Resetting all devices on the bus...");
|
|
|
|
// Reset all devices on the bus
|
|
if (this->bus_->write(TLC59208F_SWRST_ADDR >> 1, TLC59208F_SWRST_SEQ, 2) != i2c::ERROR_OK) {
|
|
ESP_LOGE(TAG, "RESET failed");
|
|
this->mark_failed();
|
|
return;
|
|
}
|
|
|
|
// Auto increment registers, and respond to all-call address
|
|
if (!this->write_byte(TLC59208F_REG_MODE1, TLC59208F_MODE1_AI2 | TLC59208F_MODE1_ALLCALL)) {
|
|
ESP_LOGE(TAG, "MODE1 failed");
|
|
this->mark_failed();
|
|
return;
|
|
}
|
|
if (!this->write_byte(TLC59208F_REG_MODE2, this->mode_)) {
|
|
ESP_LOGE(TAG, "MODE2 failed");
|
|
this->mark_failed();
|
|
return;
|
|
}
|
|
// Set all 3 outputs to be individually controlled
|
|
// TODO: think of a way to support group dimming
|
|
if (!this->write_byte(TLC59208F_REG_LEDOUT0, (LDR_PWM << 6) | (LDR_PWM << 4) | (LDR_PWM << 2) | (LDR_PWM << 0))) {
|
|
ESP_LOGE(TAG, "LEDOUT0 failed");
|
|
this->mark_failed();
|
|
return;
|
|
}
|
|
if (!this->write_byte(TLC59208F_REG_LEDOUT1, (LDR_PWM << 6) | (LDR_PWM << 4) | (LDR_PWM << 2) | (LDR_PWM << 0))) {
|
|
ESP_LOGE(TAG, "LEDOUT1 failed");
|
|
this->mark_failed();
|
|
return;
|
|
}
|
|
delayMicroseconds(500);
|
|
|
|
this->loop();
|
|
}
|
|
|
|
void TLC59208FOutput::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "TLC59208F:");
|
|
ESP_LOGCONFIG(TAG, " Mode: 0x%02X", this->mode_);
|
|
|
|
if (this->is_failed()) {
|
|
ESP_LOGE(TAG, "Setting up TLC59208F failed!");
|
|
}
|
|
}
|
|
|
|
void TLC59208FOutput::loop() {
|
|
if (this->min_channel_ == 0xFF || !this->update_)
|
|
return;
|
|
|
|
for (uint8_t channel = this->min_channel_; channel <= this->max_channel_; channel++) {
|
|
uint8_t pwm = this->pwm_amounts_[channel];
|
|
ESP_LOGVV(TAG, "Channel %02u: pwm=%04u ", channel, pwm);
|
|
|
|
uint8_t reg = TLC59208F_REG_PWM0 + channel;
|
|
if (!this->write_byte(reg, pwm)) {
|
|
this->status_set_warning();
|
|
return;
|
|
}
|
|
}
|
|
|
|
this->status_clear_warning();
|
|
this->update_ = false;
|
|
}
|
|
|
|
void TLC59208FOutput::register_channel(TLC59208FChannel *channel) {
|
|
auto c = channel->channel_;
|
|
this->min_channel_ = std::min(this->min_channel_, c);
|
|
this->max_channel_ = std::max(this->max_channel_, c);
|
|
channel->set_parent(this);
|
|
}
|
|
|
|
void TLC59208FChannel::write_state(float state) {
|
|
const uint8_t max_duty = 255;
|
|
const float duty_rounded = roundf(state * max_duty);
|
|
auto duty = static_cast<uint8_t>(duty_rounded);
|
|
this->parent_->set_channel_value_(this->channel_, duty);
|
|
}
|
|
|
|
} // namespace tlc59208f
|
|
} // namespace esphome
|