Compare commits

...

2 Commits

Author SHA1 Message Date
Martin Brodbeck 5dc8d5e76d vscode stuff 2022-06-05 18:50:43 +02:00
Martin Brodbeck 4fbb58f1c4 typo 2022-06-05 18:50:17 +02:00
2 changed files with 9 additions and 1 deletions

View File

@ -17,4 +17,12 @@
"cortex-debug.openocdPath": "${env:HOME}/src/openocd/src/openocd",
"cmake.generator": "Unix Makefiles",
"C_Cpp.clang_format_fallbackStyle": "LLVM",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.hg/store/**": true,
".flatpak/**": true,
"_build/**": true
},
}

View File

@ -104,7 +104,7 @@ int main() {
relais.activate(isHeating);
lcdText = fmt::format("ACT: {:05.2f} {}C {}\nACT: {:05.2f} {}C {}",
lcdText = fmt::format("ACT: {:05.2f}{}C {}\nACT: {:05.2f}{}C {}",
temp_act, CUSTOM_CHAR_DEG, heatInfo, temp_tgt,
CUSTOM_CHAR_DEG, systemInfo);
myLCD.setCursor(0, 0);