ESPHome 2026.6.0-dev
Loading...
Searching...
No Matches
sun_gtil2.cpp
Go to the documentation of this file.
1#include "sun_gtil2.h"
6static const char *const TAG = "sun_gtil2";
8static const double NTC_A = 0.0011591051055979914;
9static const double NTC_B = 0.00022878183547845582;
10static const double NTC_C = 1.0396291358342124e-07;
11static const float PULLUP_RESISTANCE = 10000.0f;
12static const uint16_t ADC_MAX = 1023; // ADC of the inverter controller, not the ESP
14struct SunGTIL2Message {
15 uint16_t sync;
16 uint8_t ac_waveform[277];
17 uint8_t frequency;
18 uint16_t ac_voltage;
19 uint16_t ac_power;
20 uint16_t dc_voltage;
21 uint8_t state;
22 uint8_t unknown1;
23 uint8_t unknown2;
24 uint8_t unknown3;
25 uint8_t limiter_mode;
26 uint8_t unknown4;
27 uint16_t temperature;
28 uint32_t limiter_power;
29 uint16_t dc_power;
30 char serial_number[10];
31 uint8_t unknown5;
32 uint8_t end[39];
33} __attribute__((packed));
34
35static const uint16_t MESSAGE_SIZE = sizeof(SunGTIL2Message);
36
37static_assert(MESSAGE_SIZE == 350, "Expected the message size to be 350 bytes");
38
39void SunGTIL2::setup() { this->rx_message_.reserve(MESSAGE_SIZE); }
40
42 while (this->available()) {
43 uint8_t c;
44 this->read_byte(&c);
45 this->handle_char_(c);
46 }
47}
48
49const char *SunGTIL2::state_to_string_(uint8_t state, std::span<char, STATE_BUFFER_SIZE> buffer) {
50 switch (state) {
51 case 0x02:
52 return "Starting voltage too low";
53 case 0x07:
54 return "Working";
55 default:
56 snprintf(buffer.data(), buffer.size(), "Unknown (0x%02x)", state);
57 return buffer.data();
58 }
59}
60
61float SunGTIL2::calculate_temperature_(uint16_t adc_value) {
62 if (adc_value >= ADC_MAX || adc_value == 0) {
63 return NAN;
64 }
65
66 float ntc_resistance = PULLUP_RESISTANCE / ((static_cast<float>(ADC_MAX) / adc_value) - 1.0f);
67 double lr = log(double(ntc_resistance));
68 double v = NTC_A + NTC_B * lr + NTC_C * lr * lr * lr;
69 return float(1.0 / v - 273.15);
70}
71
72void SunGTIL2::handle_char_(uint8_t c) {
73 if (this->rx_message_.size() > 1 || c == 0x07) {
74 this->rx_message_.push_back(c);
75 } else if (!this->rx_message_.empty()) {
76 this->rx_message_.clear();
77 }
78 if (this->rx_message_.size() < MESSAGE_SIZE) {
79 return;
80 }
81
82 SunGTIL2Message msg;
83 memcpy(&msg, this->rx_message_.data(), MESSAGE_SIZE);
84 this->rx_message_.clear();
85
86 if ((msg.end[0] != 0) || (msg.end[38] != 0x08))
87 return;
88
89 ESP_LOGVV(TAG, "Frequency raw value: %02x", msg.frequency);
90 ESP_LOGVV(TAG, "Unknown values: %02x %02x %02x %02x %02x", msg.unknown1, msg.unknown2, msg.unknown3, msg.unknown4,
91 msg.unknown5);
92
93#ifdef USE_SENSOR
94 if (this->ac_voltage_ != nullptr)
95 this->ac_voltage_->publish_state(__builtin_bswap16(msg.ac_voltage) / 10.0f);
96 if (this->dc_voltage_ != nullptr)
97 this->dc_voltage_->publish_state(__builtin_bswap16(msg.dc_voltage) / 8.0f);
98 if (this->ac_power_ != nullptr)
99 this->ac_power_->publish_state(__builtin_bswap16(msg.ac_power) / 10.0f);
100 if (this->dc_power_ != nullptr)
101 this->dc_power_->publish_state(__builtin_bswap16(msg.dc_power) / 10.0f);
102 if (this->limiter_power_ != nullptr)
103 this->limiter_power_->publish_state(static_cast<int32_t>(__builtin_bswap32(msg.limiter_power)) / 10.0f);
104 if (this->temperature_ != nullptr)
105 this->temperature_->publish_state(calculate_temperature_(__builtin_bswap16(msg.temperature)));
106#endif
107#ifdef USE_TEXT_SENSOR
108 if (this->state_ != nullptr) {
109 char state_buffer[STATE_BUFFER_SIZE];
110 this->state_->publish_state(this->state_to_string_(msg.state, state_buffer));
111 }
112 if (this->serial_number_ != nullptr) {
113 this->serial_number_->publish_state(msg.serial_number, 10);
114 }
115#endif
116}
117
119#ifdef USE_SENSOR
120 LOG_SENSOR("", "AC Voltage", this->ac_voltage_);
121 LOG_SENSOR("", "DC Voltage", this->dc_voltage_);
122 LOG_SENSOR("", "AC Power", this->ac_power_);
123 LOG_SENSOR("", "DC Power", this->dc_power_);
124 LOG_SENSOR("", "Limiter Power", this->limiter_power_);
125 LOG_SENSOR("", "Temperature", this->temperature_);
126#endif
127#ifdef USE_TEXT_SENSOR
128 LOG_TEXT_SENSOR("", "State", this->state_);
129 LOG_TEXT_SENSOR("", "Serial Number", this->serial_number_);
130#endif
131}
132
133} // namespace esphome::sun_gtil2
void publish_state(float state)
Publish a new state to the front-end.
Definition sensor.cpp:68
float calculate_temperature_(uint16_t adc_value)
Definition sun_gtil2.cpp:61
static constexpr size_t STATE_BUFFER_SIZE
Definition sun_gtil2.h:38
void handle_char_(uint8_t c)
Definition sun_gtil2.cpp:72
text_sensor::TextSensor * state_
Definition sun_gtil2.h:51
sensor::Sensor * dc_power_
Definition sun_gtil2.h:46
text_sensor::TextSensor * serial_number_
Definition sun_gtil2.h:52
sensor::Sensor * limiter_power_
Definition sun_gtil2.h:47
std::vector< uint8_t > rx_message_
Definition sun_gtil2.h:57
sensor::Sensor * dc_voltage_
Definition sun_gtil2.h:44
const char * state_to_string_(uint8_t state, std::span< char, STATE_BUFFER_SIZE > buffer)
Definition sun_gtil2.cpp:49
sensor::Sensor * ac_power_
Definition sun_gtil2.h:45
sensor::Sensor * ac_voltage_
Definition sun_gtil2.h:43
sensor::Sensor * temperature_
Definition sun_gtil2.h:48
void publish_state(const std::string &state)
bool read_byte(uint8_t *data)
Definition uart.h:34
struct @65::@66 __attribute__
Wake the main loop task from an ISR. ISR-safe.
Definition main_task.h:32
bool state
Definition fan.h:2
static void uint32_t
uint32_t lr