Skip to content

Commit

Permalink
Update PinConfig.h
Browse files Browse the repository at this point in the history
  • Loading branch information
beniroquai committed Jun 20, 2024
1 parent b1fbf64 commit 8d8705e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion main/PinConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,14 @@ struct PinConfig
int8_t ENC_X_B = disabled;
int8_t ENC_Y_B = disabled;
int8_t ENC_Z_B = disabled;

bool ENC_A_encoderDirection = true; // true = count up, false = count down -> invert polarity
bool ENC_X_encoderDirection = true;
bool ENC_Y_encoderDirection = true;
bool ENC_Z_encoderDirection = true;
bool ENC_A_motorDirection = true; // true = count up, false = count down -> invert polarity
bool ENC_X_motorDirection = true;
bool ENC_Y_motorDirection = true;
bool ENC_Z_motorDirection = true;
// I2c
int8_t I2C_SCL = disabled;
int8_t I2C_SDA = disabled;
Expand Down

0 comments on commit 8d8705e

Please sign in to comment.