Skip to content

Commit

Permalink
Removed a commented line, #ifdef around graph file function
Browse files Browse the repository at this point in the history
  • Loading branch information
VeloSteve committed Jul 1, 2022
1 parent 830d55b commit 1d0951c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion CBASS_BLE/CBASS_BLE.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

// SD card shield library
#include <SD.h>
//#include <SPI.h>
// PID Library
#include <PID_v1.h>
//#include <PID_AutoTune_v0.h>
Expand Down
3 changes: 2 additions & 1 deletion CBASS_BLE/SD.ino
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@ void printAsHM(unsigned int t) {
hundredths.
*/
#ifdef USEBLE
void saveGraphTemps() {
logFile = SD.open("GRAPHPTS.TXT", FILE_WRITE);
// Trust time "t" to be close enough, since it was set just before saving new
Expand All @@ -402,7 +403,7 @@ void saveGraphTemps() {
logFile.println();
logFile.close();
}

#endif // USEBLE

/*
Read from tryHere to a newline, into the provided buffer.
Expand Down

0 comments on commit 1d0951c

Please sign in to comment.