daily_automated

This commit is contained in:
topicchi
2023-03-17 11:59:21 +00:00
parent 252ecca9cf
commit e2f276193e
4496 changed files with 1178007 additions and 0 deletions

View File

@@ -0,0 +1,68 @@
/*
Copyright (c) 2019 Juraj Andrassy. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#if defined(ESP8266) || defined(ESP32)
#include <Arduino.h>
#ifdef ESP32
#include <Update.h>
#endif
#include "InternalStorageESP.h"
#ifndef U_SPIFFS
#define U_SPIFFS U_FS
#endif
InternalStorageESPClass::InternalStorageESPClass()
{
}
int InternalStorageESPClass::open(int length, uint8_t command)
{
return Update.begin(length, command == 0 ? U_FLASH : U_SPIFFS);
}
size_t InternalStorageESPClass::write(uint8_t b)
{
return Update.write(&b, 1);
}
void InternalStorageESPClass::close()
{
Update.end(false);
}
void InternalStorageESPClass::clear()
{
}
void InternalStorageESPClass::apply()
{
ESP.restart();
}
long InternalStorageESPClass::maxSize()
{
return ESP.getFlashChipSize() / 2; // Update.begin() in open() does the exact check
}
InternalStorageESPClass InternalStorage;
#endif