Skip to content

Commit

Permalink
Cleaning up debug stuff. And an out of date comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
WesWedding committed Mar 2, 2024
1 parent d422c8d commit 1ce10f0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions StateQueue.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
#include "Arduino.h"

#include "StateQueue.h"



StateQueue::StateQueue() : size(0) {}

bool StateQueue::enqueue(states newState) {
Expand All @@ -12,7 +8,6 @@ bool StateQueue::enqueue(states newState) {
}

queue[size] = newState;
Serial.print("Queuing: "); Serial.print(newState); Serial.print(", spot "); Serial.println(size);
size++;
return true;
}
Expand Down
1 change: 0 additions & 1 deletion Translation2024.ino
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ void loop() {
}

// We like the touches, but maybe the MP3 player finished.
// Stay in the "stage 2" mode until MP3 player is done.
if (!MP3player.isPlaying()) {
switchToDone();
}
Expand Down

0 comments on commit 1ce10f0

Please sign in to comment.