ESPHome  2024.4.0
graph.cpp
Go to the documentation of this file.
1 #include "graph.h"
3 #include "esphome/core/color.h"
4 #include "esphome/core/log.h"
5 #include "esphome/core/hal.h"
6 #include <algorithm>
7 #include <sstream>
8 #include <iostream> // std::cout, std::fixed
9 #include <iomanip>
10 namespace esphome {
11 namespace graph {
12 
13 using namespace display;
14 
15 static const char *const TAG = "graph";
16 static const char *const TAGL = "graphlegend";
17 
19  this->length_ = length;
20  this->samples_.resize(length, NAN);
21  this->last_sample_ = millis();
22 }
23 
24 void HistoryData::take_sample(float data) {
25  uint32_t tm = millis();
26  uint32_t dt = tm - last_sample_;
27  last_sample_ = tm;
28 
29  // Step data based on time
30  this->period_ += dt;
31  while (this->period_ >= this->update_time_) {
32  this->samples_[this->count_] = data;
33  this->period_ -= this->update_time_;
34  this->count_ = (this->count_ + 1) % this->length_;
35  ESP_LOGV(TAG, "Updating trace with value: %f", data);
36  }
37  if (!std::isnan(data)) {
38  // Recalc recent max/min
39  this->recent_min_ = data;
40  this->recent_max_ = data;
41  for (int i = 0; i < this->length_; i++) {
42  if (!std::isnan(this->samples_[i])) {
43  if (this->recent_max_ < this->samples_[i])
44  this->recent_max_ = this->samples_[i];
45  if (this->recent_min_ > this->samples_[i])
46  this->recent_min_ = this->samples_[i];
47  }
48  }
49  }
50 }
51 
53  ESP_LOGI(TAG, "Init trace for sensor %s", this->get_name().c_str());
54  this->data_.init(g->get_width());
55  sensor_->add_on_state_callback([this](float state) { this->data_.take_sample(state); });
56  this->data_.set_update_time_ms(g->get_duration() * 1000 / g->get_width());
57 }
58 
59 void Graph::draw(Display *buff, uint16_t x_offset, uint16_t y_offset, Color color) {
61  if (this->border_) {
62  buff->horizontal_line(x_offset, y_offset, this->width_, color);
63  buff->horizontal_line(x_offset, y_offset + this->height_ - 1, this->width_, color);
64  buff->vertical_line(x_offset, y_offset, this->height_, color);
65  buff->vertical_line(x_offset + this->width_ - 1, y_offset, this->height_, color);
66  }
68  float ymin = NAN;
69  float ymax = NAN;
70  for (auto *trace : traces_) {
71  float mx = trace->get_tracedata()->get_recent_max();
72  float mn = trace->get_tracedata()->get_recent_min();
73  if (std::isnan(ymax) || (ymax < mx))
74  ymax = mx;
75  if (std::isnan(ymin) || (ymin > mn))
76  ymin = mn;
77  }
78  // Adjust if manually overridden
79  if (!std::isnan(this->min_value_))
80  ymin = this->min_value_;
81  if (!std::isnan(this->max_value_))
82  ymax = this->max_value_;
83 
84  float yrange = ymax - ymin;
85  if (yrange > this->max_range_) {
86  // Look back in trace data to best-fit into local range
87  float mx = NAN;
88  float mn = NAN;
89  for (uint32_t i = 0; i < this->width_; i++) {
90  for (auto *trace : traces_) {
91  float v = trace->get_tracedata()->get_value(i);
92  if (!std::isnan(v)) {
93  if ((v - mn) > this->max_range_)
94  break;
95  if ((mx - v) > this->max_range_)
96  break;
97  if (std::isnan(mx) || (v > mx))
98  mx = v;
99  if (std::isnan(mn) || (v < mn))
100  mn = v;
101  }
102  }
103  }
104  yrange = this->max_range_;
105  if (!std::isnan(mn)) {
106  ymin = mn;
107  ymax = ymin + this->max_range_;
108  }
109  ESP_LOGV(TAG, "Graphing at max_range. Using local min %f, max %f", mn, mx);
110  }
111 
112  float y_per_div = this->min_range_;
113  if (!std::isnan(this->gridspacing_y_)) {
114  y_per_div = this->gridspacing_y_;
115  }
116  // Restrict drawing too many gridlines
117  if (yrange > 10 * y_per_div) {
118  while (yrange > 10 * y_per_div) {
119  y_per_div *= 2;
120  }
121  ESP_LOGW(TAG, "Graphing reducing y-scale to prevent too many gridlines");
122  }
123 
124  // Adjust limits to nice y_per_div boundaries
125  int yn = 0;
126  int ym = 1;
127  if (!std::isnan(ymin) && !std::isnan(ymax)) {
128  yn = (int) floorf(ymin / y_per_div);
129  ym = (int) ceilf(ymax / y_per_div);
130  if (yn == ym) {
131  ym++;
132  }
133  ymin = yn * y_per_div;
134  ymax = ym * y_per_div;
135  yrange = ymax - ymin;
136  }
137 
139  if (!std::isnan(this->gridspacing_y_)) {
140  for (int y = yn; y <= ym; y++) {
141  int16_t py = (int16_t) roundf((this->height_ - 1) * (1.0 - (float) (y - yn) / (ym - yn)));
142  for (uint32_t x = 0; x < this->width_; x += 2) {
143  buff->draw_pixel_at(x_offset + x, y_offset + py, color);
144  }
145  }
146  }
147  if (!std::isnan(this->gridspacing_x_) && (this->gridspacing_x_ > 0)) {
148  int n = this->duration_ / this->gridspacing_x_;
149  // Restrict drawing too many gridlines
150  if (n > 20) {
151  while (n > 20) {
152  n /= 2;
153  }
154  ESP_LOGW(TAG, "Graphing reducing x-scale to prevent too many gridlines");
155  }
156  for (int i = 0; i <= n; i++) {
157  for (uint32_t y = 0; y < this->height_; y += 2) {
158  buff->draw_pixel_at(x_offset + i * (this->width_ - 1) / n, y_offset + y, color);
159  }
160  }
161  }
162 
164  ESP_LOGV(TAG, "Updating graph. ymin %f, ymax %f", ymin, ymax);
165  for (auto *trace : traces_) {
166  Color c = trace->get_line_color();
167  uint16_t thick = trace->get_line_thickness();
168  bool continuous = trace->get_continuous();
169  bool has_prev = false;
170  bool prev_b = false;
171  int16_t prev_y = 0;
172  for (uint32_t i = 0; i < this->width_; i++) {
173  float v = (trace->get_tracedata()->get_value(i) - ymin) / yrange;
174  if (!std::isnan(v) && (thick > 0)) {
175  int16_t x = this->width_ - 1 - i + x_offset;
176  uint8_t bit = 1 << ((i % (thick * LineType::PATTERN_LENGTH)) / thick);
177  bool b = (trace->get_line_type() & bit) == bit;
178  if (b) {
179  int16_t y = (int16_t) roundf((this->height_ - 1) * (1.0 - v)) - thick / 2 + y_offset;
180  if (!continuous || !has_prev || !prev_b || (abs(y - prev_y) <= thick)) {
181  for (uint16_t t = 0; t < thick; t++) {
182  buff->draw_pixel_at(x, y + t, c);
183  }
184  } else {
185  int16_t mid_y = (y + prev_y + thick) / 2;
186  if (y > prev_y) {
187  for (uint16_t t = prev_y + thick; t <= mid_y; t++)
188  buff->draw_pixel_at(x + 1, t, c);
189  for (uint16_t t = mid_y + 1; t < y + thick; t++)
190  buff->draw_pixel_at(x, t, c);
191  } else {
192  for (uint16_t t = prev_y - 1; t >= mid_y; t--)
193  buff->draw_pixel_at(x + 1, t, c);
194  for (uint16_t t = mid_y - 1; t >= y; t--)
195  buff->draw_pixel_at(x, t, c);
196  }
197  }
198  prev_y = y;
199  }
200  prev_b = b;
201  has_prev = true;
202  } else {
203  has_prev = false;
204  }
205  }
206  }
207 }
208 
211  parent_ = g;
212 
213  // Determine maximum expected text and value width / height
214  int txtw = 0, txth = 0;
215  int valw = 0, valh = 0;
216  int lt = 0;
217  for (auto *trace : g->traces_) {
218  std::string txtstr = trace->get_name();
219  int fw, fos, fbl, fh;
220  this->font_label_->measure(txtstr.c_str(), &fw, &fos, &fbl, &fh);
221  if (fw > txtw)
222  txtw = fw;
223  if (fh > txth)
224  txth = fh;
225  if (trace->get_line_thickness() > lt)
226  lt = trace->get_line_thickness();
227  ESP_LOGI(TAGL, " %s %d %d", txtstr.c_str(), fw, fh);
228 
229  if (this->values_ != VALUE_POSITION_TYPE_NONE) {
230  std::stringstream ss;
231  ss << std::fixed << std::setprecision(trace->sensor_->get_accuracy_decimals()) << trace->sensor_->get_state();
232  std::string valstr = ss.str();
233  if (this->units_) {
234  valstr += trace->sensor_->get_unit_of_measurement();
235  }
236  this->font_value_->measure(valstr.c_str(), &fw, &fos, &fbl, &fh);
237  if (fw > valw)
238  valw = fw;
239  if (fh > valh)
240  valh = fh;
241  ESP_LOGI(TAGL, " %s %d %d", valstr.c_str(), fw, fh);
242  }
243  }
244  // Add extra margin
245  txtw *= 1.2;
246  valw *= 1.2;
247 
248  uint8_t n = g->traces_.size();
249  uint16_t w = this->width_;
250  uint16_t h = this->height_;
251  DirectionType dir = this->direction_;
252  ValuePositionType valpos = this->values_;
253  if (!this->font_value_) {
254  valpos = VALUE_POSITION_TYPE_NONE;
255  }
256  // Line sample always goes below text for compactness
257  this->yl_ = txth + (txth / 4) + lt / 2;
258 
259  if (dir == DIRECTION_TYPE_AUTO) {
260  dir = DIRECTION_TYPE_HORIZONTAL; // as default
261  if (h > 0) {
263  }
264  }
265 
266  if (valpos == VALUE_POSITION_TYPE_AUTO) {
267  // TODO: do something smarter?? - fit to w and h?
268  valpos = VALUE_POSITION_TYPE_BELOW;
269  }
270 
271  if (valpos == VALUE_POSITION_TYPE_BELOW) {
272  this->yv_ = txth + (txth / 4);
273  if (this->lines_)
274  this->yv_ += txth / 4 + lt;
275  } else if (valpos == VALUE_POSITION_TYPE_BESIDE) {
276  this->xv_ = (txtw + valw) / 2;
277  }
278 
279  // If width or height is specified we divide evenly within, else we do tight-fit
280  if (w == 0) {
281  this->x0_ = txtw / 2;
282  this->xs_ = txtw;
283  if (valpos == VALUE_POSITION_TYPE_BELOW) {
284  this->xs_ = std::max(txtw, valw);
285  ;
286  this->x0_ = this->xs_ / 2;
287  } else if (valpos == VALUE_POSITION_TYPE_BESIDE) {
288  this->xs_ = txtw + valw;
289  }
290  if (dir == DIRECTION_TYPE_VERTICAL) {
291  this->width_ = this->xs_;
292  } else {
293  this->width_ = this->xs_ * n;
294  }
295  } else {
296  this->xs_ = w / n;
297  this->x0_ = this->xs_ / 2;
298  }
299 
300  if (h == 0) {
301  this->ys_ = txth;
302  if (valpos == VALUE_POSITION_TYPE_BELOW) {
303  this->ys_ = txth + txth / 2 + valh;
304  if (this->lines_) {
305  this->ys_ += lt;
306  }
307  } else if (valpos == VALUE_POSITION_TYPE_BESIDE) {
308  if (this->lines_) {
309  this->ys_ = std::max(txth + txth / 4 + lt + txth / 4, valh + valh / 4);
310  } else {
311  this->ys_ = std::max(txth + txth / 4, valh + valh / 4);
312  }
313  this->height_ = this->ys_ * n;
314  }
315  if (dir == DIRECTION_TYPE_HORIZONTAL) {
316  this->height_ = this->ys_;
317  } else {
318  this->height_ = this->ys_ * n;
319  }
320  } else {
321  this->ys_ = h / n;
322  }
323 
324  if (dir == DIRECTION_TYPE_HORIZONTAL) {
325  this->ys_ = 0;
326  } else {
327  this->xs_ = 0;
328  }
329 }
330 
331 void Graph::draw_legend(display::Display *buff, uint16_t x_offset, uint16_t y_offset, Color color) {
332  if (!legend_)
333  return;
334 
336  if (this->border_) {
337  int w = legend_->width_;
338  int h = legend_->height_;
339  buff->horizontal_line(x_offset, y_offset, w, color);
340  buff->horizontal_line(x_offset, y_offset + h - 1, w, color);
341  buff->vertical_line(x_offset, y_offset, h, color);
342  buff->vertical_line(x_offset + w - 1, y_offset, h, color);
343  }
344 
345  int x = x_offset + legend_->x0_;
346  int y = y_offset;
347  for (auto *trace : traces_) {
348  std::string txtstr = trace->get_name();
349  ESP_LOGV(TAG, " %s", txtstr.c_str());
350 
351  buff->printf(x, y, legend_->font_label_, trace->get_line_color(), TextAlign::TOP_CENTER, "%s", txtstr.c_str());
352 
353  if (legend_->lines_) {
354  uint16_t thick = trace->get_line_thickness();
355  for (int i = 0; i < legend_->x0_ * 4 / 3; i++) {
356  uint8_t b = (i % (thick * LineType::PATTERN_LENGTH)) / thick;
357  if (((uint8_t) trace->get_line_type() & (1 << b)) == (1 << b)) {
358  buff->vertical_line(x - legend_->x0_ * 2 / 3 + i, y + legend_->yl_ - thick / 2, thick,
359  trace->get_line_color());
360  }
361  }
362  }
363 
364  if (legend_->values_ != VALUE_POSITION_TYPE_NONE) {
365  int xv = x + legend_->xv_;
366  int yv = y + legend_->yv_;
367  std::stringstream ss;
368  ss << std::fixed << std::setprecision(trace->sensor_->get_accuracy_decimals()) << trace->sensor_->get_state();
369  std::string valstr = ss.str();
370  if (legend_->units_) {
371  valstr += trace->sensor_->get_unit_of_measurement();
372  }
373  buff->printf(xv, yv, legend_->font_value_, trace->get_line_color(), TextAlign::TOP_CENTER, "%s", valstr.c_str());
374  ESP_LOGV(TAG, " value: %s", valstr.c_str());
375  }
376  x += legend_->xs_;
377  y += legend_->ys_;
378  }
379 }
380 
381 void Graph::setup() {
382  for (auto *trace : traces_) {
383  trace->init(this);
384  }
385 }
386 
388  for (auto *trace : traces_) {
389  ESP_LOGCONFIG(TAG, "Graph for sensor %s", trace->get_name().c_str());
390  }
391 }
392 
393 } // namespace graph
394 } // namespace esphome
void horizontal_line(int x, int y, int width, Color color=COLOR_ON)
Draw a horizontal line from the point [x,y] to [x+width,y] with the given color.
Definition: display.cpp:88
uint32_t get_width()
Definition: graph.h:162
void take_sample(float data)
Definition: graph.cpp:24
uint16_t x
Definition: tt21100.cpp:17
void setup() override
Definition: graph.cpp:381
uint32_t IRAM_ATTR HOT millis()
Definition: core.cpp:25
uint16_t y
Definition: tt21100.cpp:18
std::vector< GraphTrace * > traces_
Definition: graph.h:176
void dump_config() override
Definition: graph.cpp:387
void draw_legend(display::Display *buff, uint16_t x_offset, uint16_t y_offset, Color color)
Definition: graph.cpp:331
void init(int length)
Definition: graph.cpp:18
void init(Graph *g)
Determine the best coordinates of drawing text + lines.
Definition: graph.cpp:210
uint32_t get_duration()
Definition: graph.h:161
void vertical_line(int x, int y, int height, Color color=COLOR_ON)
Draw a vertical line from the point [x,y] to [x,y+width] with the given color.
Definition: display.cpp:93
ValuePositionType
Definition: graph.h:38
uint8_t h
Definition: bl0939.h:21
void init(Graph *g)
Definition: graph.cpp:52
uint16_t length
Definition: tt21100.cpp:12
void draw_pixel_at(int x, int y)
Set a single pixel at the specified coordinates to default color.
Definition: display.h:225
void printf(int x, int y, BaseFont *font, Color color, Color background, TextAlign align, const char *format,...) __attribute__((format(printf
Evaluate the printf-format format and print the result with the anchor point at [x,y] with font.
Definition: display.cpp:452
This is a workaround until we can figure out a way to get the tflite-micro idf component code availab...
Definition: a01nyub.cpp:7
void draw(display::Display *buff, uint16_t x_offset, uint16_t y_offset, Color color)
Definition: graph.cpp:59
bool state
Definition: fan.h:34