Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I suggest moving the global variable slaveSelectPin into the class #9

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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