Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
4 changes: 1 addition & 3 deletions ADXL362.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@

//#define ADXL362_DEBUG

int16_t slaveSelectPin = 10;

ADXL362::ADXL362() {
}

Expand Down Expand Up @@ -289,4 +287,4 @@ void ADXL362::SPIwriteTwoRegisters(byte regAddress, int16_t twoRegValue){
SPI.transfer(twoRegValueL);
SPI.transfer(twoRegValueH);
digitalWrite(slaveSelectPin, HIGH);
}
}
3 changes: 2 additions & 1 deletion ADXL362.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ class ADXL362
void SPIwriteTwoRegisters(byte regAddress, int16_t twoRegValue);

private:
int16_t slaveSelectPin;


};

#endif
#endif