#pragma once #include "fatfs.h" #include class SDCardLogger { public: bool init(); bool write(const std::string &line); private: FIL file; FATFS fs; };