This commit is contained in:
jomjol
2021-06-17 20:28:24 +02:00
parent f4edd36744
commit 45154cb55c
7 changed files with 16 additions and 8 deletions

View File

@@ -45,7 +45,11 @@ In other cases you can contact the developer via email: <img src="https://raw.gi
##### Rolling - (2021-06-11) ##### Rolling - (2021-06-17)
* bug fix setting hostname, Flash-LED not off during reboot
Rolling - (2021-06-11)
* Restructuring for multi number counters * Restructuring for multi number counters
* Major internal and html changes * Major internal and html changes
@@ -54,9 +58,9 @@ In other cases you can contact the developer via email: <img src="https://raw.gi
##### 7.1.1 MQTT-Update - (2021-05-30) ##### 7.1.2 MQTT-Update - (2021-06-17)
* NEW: 7.1.1: bug fix wlan password with "=" (again) * NEW: 7.1.2: bug fix setting hostname, Flash-LED not off during rebootNEW: 7.1.1: bug fix wlan password with "=" (again)
* MQTT error message: changes "no error", send retain flag * MQTT error message: changes "no error", send retain flag
* Update wlan handling to esp-idf 4.1 * Update wlan handling to esp-idf 4.1
* Upgrade digital CNN to v8.7.0 (added new images) * Upgrade digital CNN to v8.7.0 (added new images)

View File

@@ -230,6 +230,8 @@ void CCamera::EnableAutoExposure(int flashdauer)
camera_fb_t * fb = esp_camera_fb_get(); camera_fb_t * fb = esp_camera_fb_get();
if (!fb) { if (!fb) {
ESP_LOGE(TAGCAMERACLASS, "Camera Capture Failed"); ESP_LOGE(TAGCAMERACLASS, "Camera Capture Failed");
LEDOnOff(false);
LightOnOff(false);
doReboot(); doReboot();
} }
esp_camera_fb_return(fb); esp_camera_fb_return(fb);
@@ -275,6 +277,7 @@ esp_err_t CCamera::CaptureToBasisImage(CImageBasis *_Image, int delay)
if (!fb) { if (!fb) {
ESP_LOGE(TAGCAMERACLASS, "Camera Capture Failed"); ESP_LOGE(TAGCAMERACLASS, "Camera Capture Failed");
LEDOnOff(false); LEDOnOff(false);
LightOnOff(false);
doReboot(); doReboot();
return ESP_FAIL; return ESP_FAIL;
@@ -453,6 +456,7 @@ esp_err_t CCamera::CaptureToHTTP(httpd_req_t *req, int delay)
fb = esp_camera_fb_get(); fb = esp_camera_fb_get();
if (!fb) { if (!fb) {
ESP_LOGE(TAGCAMERACLASS, "Camera capture failed"); ESP_LOGE(TAGCAMERACLASS, "Camera capture failed");
LEDOnOff(false);
LightOnOff(false); LightOnOff(false);
httpd_resp_send_500(req); httpd_resp_send_500(req);
// doReboot(); // doReboot();

View File

@@ -135,7 +135,7 @@ void LoadWlanFromFile(std::string fn, char *&_ssid, char *&_password, char *&_ho
fclose(pFile); fclose(pFile);
// Check if Hostname was empty in .ini if yes set to std_hostname // Check if Hostname was empty in .ini if yes set to std_hostname
if(hostname.length() >= 0){ if(hostname.length() == 0){
hostname = std_hostname; hostname = std_hostname;
} }

View File

@@ -1,4 +1,4 @@
const char* GIT_REV="8308f15"; const char* GIT_REV="f4edd36";
const char* GIT_TAG=""; const char* GIT_TAG="";
const char* GIT_BRANCH="rolling"; const char* GIT_BRANCH="rolling";
const char* BUILD_TIME="2021-06-05 09:51"; const char* BUILD_TIME="2021-06-17 20:14";

View File

@@ -1,4 +1,4 @@
const char* GIT_REV="8308f15"; const char* GIT_REV="f4edd36";
const char* GIT_TAG=""; const char* GIT_TAG="";
const char* GIT_BRANCH="rolling"; const char* GIT_BRANCH="rolling";
const char* BUILD_TIME="2021-06-05 09:51"; const char* BUILD_TIME="2021-06-17 20:14";

Binary file not shown.

Binary file not shown.