13 lines
185 B
C
13 lines
185 B
C
#ifndef I2C_H
|
|
#define I2C_H
|
|
|
|
#include "driver/i2c_master.h"
|
|
|
|
#define MAIN_I2C_NUM I2C_NUM_0
|
|
|
|
extern i2c_master_bus_handle_t i2c_main_bus_handle;
|
|
|
|
void init_main_i2c();
|
|
|
|
#endif // I2C_H
|