// // Created by misaki on 2025/9/2. // #pragma once #include /** * 本模块提供各种杂项工具类,基本都来源于对底层驱动的封装 * * */ class ToolsClass { public: /** * 获取当前时间 * @return */ static std::string getCurrentTime(); /** * 获取esp32s3的芯片序列号 * @return */ static std::string getChipSerialNumber(); /** * 获取esp32s3的MAC地址 * @return */ static std::string getChipMAC(); };