Commit 597c2220 authored by Eric Duminil's avatar Eric Duminil
Browse files

F Strings

parent 32fefdbe
...@@ -84,7 +84,7 @@ namespace sensor { ...@@ -84,7 +84,7 @@ namespace sensor {
static int16_t previous_co2 = 0; static int16_t previous_co2 = 0;
if (co2 > (previous_co2 - 30) && co2 < (previous_co2 + 30)) { if (co2 > (previous_co2 - 30) && co2 < (previous_co2 + 30)) {
stable_measurements++; stable_measurements++;
Serial.print("Stable since : "); Serial.print(F("Number of stable measurements : "));
Serial.println(stable_measurements); Serial.println(stable_measurements);
waiting_color = color::green; waiting_color = color::green;
} else { } else {
......
...@@ -182,7 +182,7 @@ namespace LedEffects { ...@@ -182,7 +182,7 @@ namespace LedEffects {
*/ */
int countdownToZero() { int countdownToZero() {
if (config::night_mode) { if (config::night_mode) {
Serial.println("Night mode. Not doing anything."); Serial.println(F("Night mode. Not doing anything."));
delay(1000); // Wait for a while, to avoid coming back to this function too many times when button is pressed. delay(1000); // Wait for a while, to avoid coming back to this function too many times when button is pressed.
return 1; return 1;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment