标签: c++ raspberry-pi i2c
我正在编写代码,使用wiringPiI2C在覆盆子pi上使用C ++访问I2C传感器。
我需要告诉pi是否使用smbus 0或1(在我的情况下,总线1)。
我知道在Python中,这将是:
bus = smbus.SMBus(1)
你知道C ++的等价物是什么吗?