arduino stuffs
Diffstat (limited to 'mp3player/arduino/error.h')
-rw-r--r--mp3player/arduino/error.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/mp3player/arduino/error.h b/mp3player/arduino/error.h
index eb30a2f..89d6a2e 100644
--- a/mp3player/arduino/error.h
+++ b/mp3player/arduino/error.h
@@ -8,9 +8,10 @@
class Error {
public:
Error(String err) {
- Serial.println("err: " + err);
+ Serial.print(F("E: "));
+ Serial.println(err);
OLED::clear();
- OLED::println("err: " + err);
+ OLED::println("E: " + err);
OLED::flush();
blink_err_light();
};