Skip to content

Commit

Permalink
clang
Browse files Browse the repository at this point in the history
  • Loading branch information
ladyada committed Jun 17, 2024
1 parent 7f1d737 commit ceefa7c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Adafruit_ThinkInk.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
#include "panels/ThinkInk_213_Mono_B72.h"
#include "panels/ThinkInk_213_Mono_B73.h"
#include "panels/ThinkInk_213_Mono_BN.h"
#include "panels/ThinkInk_213_Mono_M21.h"
#include "panels/ThinkInk_213_Mono_GDEY0213B74.h"
#include "panels/ThinkInk_213_Mono_M21.h"

#include "panels/ThinkInk_290_Mono_BN.h"
#include "panels/ThinkInk_290_Mono_M06.h"
Expand Down
11 changes: 6 additions & 5 deletions src/panels/ThinkInk_213_Mono_GDEY0213B74.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@

class ThinkInk_213_Mono_GDEY0213B74 : public Adafruit_SSD1680 {
public:
ThinkInk_213_Mono_GDEY0213B74(int16_t SID, int16_t SCLK, int16_t DC, int16_t RST,
int16_t CS, int16_t SRCS, int16_t MISO,
int16_t BUSY = -1)
ThinkInk_213_Mono_GDEY0213B74(int16_t SID, int16_t SCLK, int16_t DC,
int16_t RST, int16_t CS, int16_t SRCS,
int16_t MISO, int16_t BUSY = -1)
: Adafruit_SSD1680(250, 122, SID, SCLK, DC, RST, CS, SRCS, MISO, BUSY){};

ThinkInk_213_Mono_GDEY0213B74(int16_t DC, int16_t RST, int16_t CS, int16_t SRCS,
int16_t BUSY = -1, SPIClass *spi = &SPI)
ThinkInk_213_Mono_GDEY0213B74(int16_t DC, int16_t RST, int16_t CS,
int16_t SRCS, int16_t BUSY = -1,
SPIClass *spi = &SPI)
: Adafruit_SSD1680(250, 122, DC, RST, CS, SRCS, BUSY, spi){};

void begin(thinkinkmode_t mode = THINKINK_MONO) {
Expand Down

0 comments on commit ceefa7c

Please sign in to comment.