add Doxyfile and some moves

This commit is contained in:
2021-12-13 19:16:04 +01:00
parent 3aa3789e36
commit 1fc5a75f33
13 changed files with 2685 additions and 2 deletions
+1 -1
View File
@@ -4,6 +4,6 @@
.vscode/launch.json .vscode/launch.json
.vscode/ipch .vscode/ipch
.debugMqtt/doxygen doc/Doxygen/html*
workspace.code-workspace workspace.code-workspace
+2682
View File
File diff suppressed because it is too large Load Diff
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

+1
View File
@@ -116,6 +116,7 @@ class DebugMqtt {
* @param measurement_name like a category * @param measurement_name like a category
* @param field_set the name of the value e.g temperature * @param field_set the name of the value e.g temperature
* @param measurement the real value * @param measurement the real value
* @param nanos Current time in nanoseconds
*/ */
void writeToInflux(String measurement_name, String field_set, float measurement, uint64_t nanos); void writeToInflux(String measurement_name, String field_set, float measurement, uint64_t nanos);
+1 -1
View File
@@ -85,7 +85,7 @@ class Speedometer {
/** /**
* @brief Set the min delay between each loop * @brief Set the min delay between each loop
* *
* @param val time in Milliseconds * @param delay time in Milliseconds
*/ */
void setDelay(uint8_t delay); void setDelay(uint8_t delay);