/* ---------------------------------------------------------------------------- * ergoDOX controller: MCP23018 specific exports * ---------------------------------------------------------------------------- * Copyright (c) 2012 Ben Blazak * Released under The MIT License (MIT) (see "license.md") * Project located at * ------------------------------------------------------------------------- */ #ifndef MCP23018_h #define MCP23018_h #ifdef MCP23018_h_INCLUDE_PRIVATE #define MCP23018_TWI_ADDRESS 0b0100000 uint8_t mcp23018_init(void); uint8_t mcp23018_update_matrix( uint8_t matrix[KB_ROWS][KB_COLUMNS] ); #endif #endif