Files
firmware/include/i2c.h
2016-09-24 16:52:04 +02:00

11 lines
268 B
C

#ifndef __I2C_H__
#define __I2C_H__
#define LEFT_KEYBOARD_HALF_I2C_ADDRESS_7BIT 8
// The 7-bit I2C addresses of the IS31FL3731 LED driver range from 0x74 to 0x77
#define LEFT_LED_DRIVER_ADDRESS_7BIT 0b1110100
#define RIGHT_LED_DRIVER_ADDRESS_7BIT 0b1110111
#endif