Skip to content

Commit

Permalink
Fixing build error caused by removal of SRAM_CS constant (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
danwahl authored Nov 29, 2022
1 parent 41ee3cd commit 21e3c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adanet-co2-monitor.ino
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static constexpr uint8_t CO2_VAL_STRING_LEN = 10;
static constexpr int32_t UPDATES_PER_DAY = (86400 / DISPLAY_WAIT);
static constexpr int32_t UPDATES_PER_WEEK = UPDATES_PER_DAY * 7;

static ThinkInk_213_Tricolor_RW display(EPD_DC, EPD_RESET, EPD_CS, SRAM_CS, EPD_BUSY);
static ThinkInk_213_Tricolor_RW display(EPD_DC, EPD_RESET, EPD_CS, -1, EPD_BUSY);

static SensirionI2CScd4x scd4x;

Expand Down

0 comments on commit 21e3c21

Please sign in to comment.