This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| /// <summary> | |
| /// Logger - A thread-safe singleton logging library for C++20 | |
| /// | |
| /// Features: | |
| /// - Thread-safe logging to file and console | |
| /// - Support for multiple log levels (Info, Warn, Error, Debug) | |
| /// - Type-safe formatted output using C++20 std::format | |
| /// - Automatic timestamping of log entries |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
| background-color: black; | |
| margin: 10px; | |
| } | |
| h1 { | |
| font-size: 20px; | |
| font-weight: bold; | |
| color: white; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| This sketch reads the version number of hte ESP32 chip | |
| Original by | |
| 2017-07-17 Andreas Spiess | |
| Update for arduino-esp32 V2.X by | |
| 2022-03-07 Andreas K. | |
| */ | |
| #include "soc/efuse_reg.h" |