Add some more graph buffers to match lcd width

This commit is contained in:
Carsten Schmiemann 2022-11-28 00:37:28 +01:00
parent 1ec239918b
commit c41ccff603
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@
#include <lang.h>
#include <display.h>
char VERSION[6] = "v0.9d";
char VERSION[6] = "v0.9e";
//Defaults
char mqtt_server[15] = "";
@ -98,7 +98,7 @@ float display_graph_ringbuffer_load_1h[100] = { 0 };
float display_graph_ringbuffer_load_24h[100] = { 0 };
float display_graph_ringbuffer_pv_1h[100] = { 0 };
float display_graph_ringbuffer_pv_24h[100] = { 0 };
const int display_graph_buffersize = 100;
const int display_graph_buffersize = 109;
int display_refresh_counter = 0;
int display_refresh_time;