14 lines
237 B
C
14 lines
237 B
C
#ifndef LOGGER_H
|
|
#define LOGGER_H
|
|
|
|
#include <Arduino.h>
|
|
#include "filesystem.h"
|
|
#include "settings.h"
|
|
|
|
void logger(byte level, const char* format, ...);
|
|
long logger_get_size();
|
|
void logger_clear();
|
|
void logger_dump(Print *dest);
|
|
|
|
#endif
|