Skip to content

Commit

Permalink
#17 DebouncedBoolean.h -> Debounce.h
Browse files Browse the repository at this point in the history
  • Loading branch information
wraybowling committed Sep 12, 2020
1 parent 53984a1 commit e7a1dd8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Debounced.h → src/Debounce.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ class DebouncedInt {
bool changed() {
return state[0] != state[1];
}
}
};
2 changes: 1 addition & 1 deletion src/clock.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "voltages.h"
#include "peaks_pattern_predictor.h"
#include "DebouncedBoolean.h"
#include "Debounce.h"

class Clock {
private:
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "voltages.h"
#include "lights.h"
#include "clock.h"
#include "DebouncedBoolean.h"
#include "Debounce.h"

//// global state

Expand Down

0 comments on commit e7a1dd8

Please sign in to comment.