Initial Modifikations

This commit is contained in:
jomjol
2025-03-01 20:08:25 +01:00
parent cf96d49bd0
commit 9a82e0ac92
7 changed files with 4778 additions and 2 deletions

View File

@@ -644,11 +644,19 @@ string toLower(string in)
}
// CPU Temp
#if defined(BOARD_ESP32_S3_ALEKSEI) // ESP32s3 hat die Funktion nicht
float temperatureRead()
{
return 0.0;
}
#elif
extern "C" uint8_t temprature_sens_read();
float temperatureRead()
{
return (temprature_sens_read() - 32) / 1.8;
}
#endif
time_t addDays(time_t startTime, int days)
{