ESPHome 2026.5.1
Loading...
Searching...
No Matches
modbus_select.cpp
Go to the documentation of this file.
1#include "modbus_select.h"
2#include "esphome/core/log.h"
3
5
6static const char *const TAG = "modbus_controller.select";
7
8void ModbusSelect::dump_config() { LOG_SELECT(TAG, "Modbus Controller Select", this); }
9
10void ModbusSelect::parse_and_publish(const std::vector<uint8_t> &data) {
11 int64_t value = modbus::helpers::payload_to_number(data, this->sensor_value_type, this->offset, this->bitmask);
12
13 ESP_LOGD(TAG, "New select value %lld from payload", value);
14
15 optional<std::string> new_state;
16
17 if (this->transform_func_.has_value()) {
18 auto val = (*this->transform_func_)(this, value, data);
19 if (val.has_value()) {
20 new_state = *val;
21 ESP_LOGV(TAG, "lambda returned option %s", new_state->c_str());
22 }
23 }
24
25 if (!new_state.has_value()) {
26 auto map_it = std::find(this->mapping_.cbegin(), this->mapping_.cend(), value);
27
28 if (map_it != this->mapping_.cend()) {
29 size_t idx = std::distance(this->mapping_.cbegin(), map_it);
30 ESP_LOGV(TAG, "Found option %s for value %lld", this->option_at(idx), value);
31 this->publish_state(idx);
32 return;
33 } else {
34 ESP_LOGE(TAG, "No option found for mapping %lld", value);
35 }
36 }
37
38 if (new_state.has_value()) {
39 this->publish_state(new_state.value());
40 }
41}
42
43void ModbusSelect::control(size_t index) {
44 optional<int64_t> mapval = this->mapping_[index];
45 const char *option = this->option_at(index);
46 ESP_LOGD(TAG, "Found value %lld for option '%s'", *mapval, option);
47
48 std::vector<uint16_t> data;
49
50 if (this->write_transform_func_.has_value()) {
51 // Transform func requires string parameter for backward compatibility
52 auto val = (*this->write_transform_func_)(this, std::string(option), *mapval, data);
53 if (val.has_value()) {
54 mapval = val;
55 ESP_LOGV(TAG, "write_lambda returned mapping value %lld", *mapval);
56 } else {
57 ESP_LOGD(TAG, "Communication handled by write_lambda - exiting control");
58 return;
59 }
60 }
61
62 if (data.empty()) {
64 } else {
65 ESP_LOGV(TAG, "Using payload from write lambda");
66 }
67
68 if (data.empty()) {
69 ESP_LOGW(TAG, "No payload was created for updating select");
70 return;
71 }
72
73 const uint16_t write_address = this->start_address + this->offset / 2;
74 ModbusCommandItem write_cmd;
75 if ((this->register_count == 1) && (!this->use_write_multiple_)) {
76 write_cmd = ModbusCommandItem::create_write_single_command(this->parent_, write_address, data[0]);
77 } else {
78 write_cmd =
80 }
81
82 this->parent_->queue_command(write_cmd);
83
84 if (this->optimistic_)
85 this->publish_state(index);
86}
87
88} // namespace esphome::modbus_controller
static ModbusCommandItem create_write_single_command(ModbusController *modbusdevice, uint16_t start_address, uint16_t value)
Create modbus write multiple registers command Function 16 (10hex) Write Multiple Registers.
static ModbusCommandItem create_write_multiple_command(ModbusController *modbusdevice, uint16_t start_address, uint16_t register_count, const std::vector< uint16_t > &values)
Create modbus read command Function code 02-04.
void queue_command(const ModbusCommandItem &command)
queues a modbus command in the send queue
optional< write_transform_func_t > write_transform_func_
void parse_and_publish(const std::vector< uint8_t > &data) override
void control(size_t index) override
optional< transform_func_t > transform_func_
const char * option_at(size_t index) const
Return the option value at the provided index offset (as const char* from flash).
Definition select.cpp:81
void publish_state(const std::string &state)
Definition select.cpp:11
mopeka_std_values val[3]
int64_t payload_to_number(const std::vector< uint8_t > &data, SensorValueType sensor_value_type, uint8_t offset, uint32_t bitmask)
Convert vector<uint8_t> response payload to number.
void number_to_payload(std::vector< uint16_t > &data, int64_t value, SensorValueType value_type)
Convert float value to vector<uint16_t> suitable for sending.
const std::vector< uint8_t > & data