ESP-LiveControl  1.99.1
HTTP server, AJAX API backend and Vue.js web application implementing self-contained, zero-install WiFi remote control of hardware modules attached to the Espressif ESP32 SoC
fs_io.hpp
Go to the documentation of this file.
1 
8 #ifndef FS_IO_HPP__
9 #define FS_IO_HPP__
10 
11 #undef LOG_LOCAL_LEVEL
12 #define LOG_LOCAL_LEVEL ESP_LOG_DEBUG
13 #include "esp_log.h"
14 
15 namespace FSIO {
16  bool write_to_file_uint8(const char *filename, uint8_t *buf, size_t len);
17 
18  size_t read_from_file_uint8(const char *filename, uint8_t *buf, size_t max_len);
19 }
20 
21 #endif