mirror of
https://github.com/esphome/esphome.git
synced 2025-04-05 18:30:28 +01:00
90 lines
2.7 KiB
C++
90 lines
2.7 KiB
C++
#include "mcp4461_output.h"
|
|
#include <cmath>
|
|
|
|
#include "esphome/core/helpers.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace mcp4461 {
|
|
|
|
static const char *const TAG = "mcp4461.output";
|
|
|
|
void Mcp4461Wiper::write_state(float state) {
|
|
ESP_LOGV(TAG, "Got value %02f from frontend", state);
|
|
const float max_taps = 256.0;
|
|
state = state * 1000.0;
|
|
if (state > max_taps) {
|
|
ESP_LOGW(TAG, "Cannot set taps > 0.256 for wiper %" PRIu8 "",
|
|
clamping to 0.256 !",
|
|
static_cast<uint8_t>(this->wiper_));
|
|
state = 256.0;
|
|
}
|
|
uint16_t taps;
|
|
taps = static_cast<uint16_t>(state);
|
|
ESP_LOGV(TAG, "Setting wiper %" PRIu8 " to value %" PRIu16 "", static_cast<uint8_t>(this->wiper_), taps);
|
|
this->state_ = state;
|
|
this->parent_->set_wiper_level(this->wiper_, taps);
|
|
}
|
|
|
|
uint16_t Mcp4461Wiper::get_wiper_level() { return this->parent_->get_wiper_level(this->wiper_); }
|
|
|
|
void Mcp4461Wiper::save_level() {
|
|
if (this->wiper_ > 3) {
|
|
ESP_LOGW(TAG, "Cannot save level for nonvolatile wiper %" PRIu8 " !", static_cast<uint8_t>(this->wiper_));
|
|
return;
|
|
}
|
|
uint8_t nonvolatile_wiper = this->wiper_ + 4;
|
|
this->parent_->set_wiper_level(nonvolatile_wiper, this->state_);
|
|
}
|
|
|
|
void Mcp4461Wiper::enable_wiper() {
|
|
if (this->wiper_ > 3) {
|
|
ESP_LOGW(TAG, "Cannot enable nonvolatile wiper %" PRIu8 " !", static_cast<uint8_t>(this->wiper_));
|
|
return;
|
|
}
|
|
this->parent_->enable_wiper(this->wiper_);
|
|
}
|
|
|
|
void Mcp4461Wiper::disable_wiper() {
|
|
if (this->wiper_ > 3) {
|
|
ESP_LOGW(TAG, "Cannot disable nonvolatile wiper %" PRIu8 " !", static_cast<uint8_t>(this->wiper_));
|
|
return;
|
|
}
|
|
this->parent_->disable_wiper(this->wiper_);
|
|
}
|
|
|
|
void Mcp4461Wiper::increase_wiper() {
|
|
if (this->wiper_ > 3) {
|
|
ESP_LOGW(TAG, "Cannot increase nonvolatile wiper %" PRIu8 " !", static_cast<uint8_t>(this->wiper_));
|
|
return;
|
|
}
|
|
this->parent_->increase_wiper(this->wiper_);
|
|
}
|
|
|
|
void Mcp4461Wiper::decrease_wiper() {
|
|
if (this->wiper_ > 3) {
|
|
ESP_LOGW(TAG, "Cannot decrease nonvolatile wiper %" PRIu8 " !", static_cast<uint8_t>(this->wiper_));
|
|
return;
|
|
}
|
|
this->parent_->decrease_wiper(this->wiper_);
|
|
}
|
|
|
|
void Mcp4461Wiper::enable_terminal(char terminal) {
|
|
if (this->wiper_ > 3) {
|
|
ESP_LOGW(TAG, "Cannot get/set terminals nonvolatile wiper %" PRIu8 " !", static_cast<uint8_t>(this->wiper_));
|
|
return;
|
|
}
|
|
this->parent_->enable_terminal(this->wiper_, terminal);
|
|
}
|
|
|
|
void Mcp4461Wiper::disable_terminal(char terminal) {
|
|
if (this->wiper_ > 3) {
|
|
ESP_LOGW(TAG, "Cannot get/set terminals for nonvolatile wiper %" PRIu8 " !", static_cast<uint8_t>(this->wiper_));
|
|
return;
|
|
}
|
|
this->parent_->disable_terminal(this->wiper_, terminal);
|
|
}
|
|
|
|
} // namespace mcp4461
|
|
} // namespace esphome
|