AttributeError: 'SoftI2C' object has no attribute 'read_i2c_block_data'
时间: 2023-07-14 21:52:15 浏览: 120
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误是因为你的 `SoftI2C` 对象没有定义 `read_i2c_block_data` 方法。这个方法通常是用于读取 I2C 设备的数据块。你需要检查你的代码中是否正确地使用了 `SoftI2C` 对象,并确保你的设备支持该方法。如果你的设备不支持该方法,你可以尝试使用其他方法来读取设备数据。
阅读全文