diff options
author | Joel Challis <git@zvecr.com> | 2021-09-08 23:44:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-08 15:44:18 -0700 |
commit | 2e0659f7fddd4c872b230c4a7d2e2a5517042414 (patch) | |
tree | 3ff74ddb4e604102fe843fcc3f8384f4e4673449 /keyboards/3w6/rev1 | |
parent | 9c175f180138558748b0b240e76cb04fa11f9927 (diff) | |
download | qmk_firmware-2e0659f7fddd4c872b230c4a7d2e2a5517042414.tar.gz qmk_firmware-2e0659f7fddd4c872b230c4a7d2e2a5517042414.zip |
Fixes for recent i2c migrations (#14352)
Diffstat (limited to 'keyboards/3w6/rev1')
-rw-r--r-- | keyboards/3w6/rev1/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/3w6/rev1/matrix.c b/keyboards/3w6/rev1/matrix.c index af3d210670..ae2f96bfa1 100644 --- a/keyboards/3w6/rev1/matrix.c +++ b/keyboards/3w6/rev1/matrix.c @@ -34,7 +34,7 @@ extern i2c_status_t tca9555_status; // All address pins of the tca9555 are connected to the ground // | 0 | 1 | 0 | 0 | A2 | A1 | A0 | // | 0 | 1 | 0 | 0 | 0 | 0 | 0 | -#define I2C_ADDR 0b0100000 +#define I2C_ADDR (0b0100000 << 1) // Register addresses #define IODIRA 0x06 // i/o direction register |