上传者: 42101164
|
上传时间: 2021-12-07 13:43:45
|
文件大小: 45KB
|
文件类型: -
esp8266_mcp23017_example
esp8266 的 I²C 端口扩展器示例。 它通过您自己选择的两个 GPIO 引脚连接到 mcp2307。
API 非常 arduino:like,这是强制性的闪烁示例:
#include "mcp23017/mcp23017.h"
....
// setup
MCP23017_Self mcpSelf; // in lieu of C++ member data we have structs :)
uint8_t deviceAddr=0;
uint8_t aMcpPin = 2; // the pin on the mcp23017 we want to write to
i2c_master_gpio_init(); // uses the pins defined by I2C_MASTER_SDA_GPIO & I2