mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-10 21:46:55 +03:00
nightly 20200929
This commit is contained in:
@@ -27,7 +27,11 @@ A 3d-printable housing can be found here: https://www.thingiverse.com/thing:4571
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
##### Rolling - (2020-09-28)
|
##### Rolling - (2020-09-29)
|
||||||
|
|
||||||
|
* Implementation of HTML-Version (thanks to phlupp)
|
||||||
|
|
||||||
|
* ESP32 Temperature is now written correctly to log file
|
||||||
|
|
||||||
* based on v2.2.1 (2020-09-28)
|
* based on v2.2.1 (2020-09-28)
|
||||||
|
|
||||||
|
|||||||
@@ -438,7 +438,10 @@ void task_autodoFlow(void *pvParameter)
|
|||||||
LogFile.WriteToFile("task_autodoFlow - round done");
|
LogFile.WriteToFile("task_autodoFlow - round done");
|
||||||
//CPU Temp
|
//CPU Temp
|
||||||
float cputmp = temperatureRead();
|
float cputmp = temperatureRead();
|
||||||
// LogFile.WriteToFile("CPU Temperature: %.2f", cputmp);
|
std::stringstream stream;
|
||||||
|
stream << std::fixed << std::setprecision(1) << cputmp;
|
||||||
|
string zwtemp = "CPU Temperature: " + stream.str();
|
||||||
|
LogFile.WriteToFile(zwtemp);
|
||||||
printf("CPU Temperature: %.2f\n", cputmp);
|
printf("CPU Temperature: %.2f\n", cputmp);
|
||||||
fr_delta_ms = (esp_timer_get_time() - fr_start) / 1000;
|
fr_delta_ms = (esp_timer_get_time() - fr_start) / 1000;
|
||||||
const TickType_t xDelay = (auto_intervall - fr_delta_ms) / portTICK_PERIOD_MS;
|
const TickType_t xDelay = (auto_intervall - fr_delta_ms) / portTICK_PERIOD_MS;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="5d2e22c+";
|
const char* GIT_REV="6e26fa6";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="rolling";
|
const char* GIT_BRANCH="rolling";
|
||||||
const char* BUILD_TIME="2020-09-29 02:43";
|
const char* BUILD_TIME="2020-09-29 18:38";
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="5d2e22c+";
|
const char* GIT_REV="6e26fa6";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="rolling";
|
const char* GIT_BRANCH="rolling";
|
||||||
const char* BUILD_TIME="2020-09-29 02:43";
|
const char* BUILD_TIME="2020-09-29 18:38";
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
sd-card/html/.DS_Store
vendored
BIN
sd-card/html/.DS_Store
vendored
Binary file not shown.
Reference in New Issue
Block a user