2023-07-19 07:24:56 -04:00
|
|
|
# Allows for use with ESP-IDF and Arduino as component
|
|
|
|
# Tested with ESP-IDF v4.4.4
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
|
|
|
|
idf_component_register(SRCS "MCP23008.cpp"
|
|
|
|
INCLUDE_DIRS "."
|
|
|
|
REQUIRES arduino)
|
|
|
|
|
2023-09-23 14:13:03 -04:00
|
|
|
project(MCP23008)
|
|
|
|
|