mirror of
https://github.com/tugsi/Filaman.git
synced 2026-07-09 18:02:48 +02:00
13 lines
267 B
C
13 lines
267 B
C
#ifndef COMMONFS_H
|
|
#define COMMONFS_H
|
|
|
|
#include <Arduino.h>
|
|
#include <SPIFFS.h>
|
|
#include <ArduinoJson.h>
|
|
|
|
bool saveJsonValue(const char* filename, const JsonDocument& doc);
|
|
bool loadJsonValue(const char* filename, JsonDocument& doc);
|
|
void initializeSPIFFS();
|
|
|
|
#endif
|