Merge branch 'master' into master

This commit is contained in:
nightflyer88 2020-09-27 12:12:29 +02:00 committed by GitHub
commit 32c8b0e25f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,12 +4,12 @@
(c) 2019 by M. Lehmann
------------------------------------------------------------------
*/
#define CGSCALE_VERSION "2.2"
#define CGSCALE_VERSION "2.11"
/*
******************************************************************
history:
V2.2 18.08.20 code is now compatible with standard OLED displays
V2.11 18.08.20 code is now compatible with standard OLED displays
and original code base (default pw length = 32)
V2.1 18.07.20 added support for ESP8266 based Wifi Kit 8
(by Pulsar07/ (https://heltec.org/project/wifi-kit-8/)
@ -23,6 +23,7 @@
character (e.g. +) is now supported
for specified battery type, voltage is displayed
using uncompressed html files makes WEB GUI much faster
V2.01 29.01.20 small bug fixes with AVR
V2.0 26.01.20 Webpage rewritten, no bootstrap framework needed
add translation to webpage (en, de)
optimized for measuring with landinggears
@ -114,9 +115,9 @@ File fsUploadFile; // a File object to temporarily store the receiv
#include "defaults.h"
struct Model {
char name[MAX_MODELNAME_LENGHT + 1] = "";
float distance[3] = {DISTANCE_X1, DISTANCE_X2, DISTANCE_X3};
#if defined(ESP8266)
char name[MAX_MODELNAME_LENGHT + 1] = "";
float targetCGmin = 0;
float targetCGmax = 0;
uint8_t mechanicsType = 0;