mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-11 22:16:56 +03:00
Initial Modifikations
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user