self.machine.hardware_platforms[‘smbus2’]¶
-
class
mpf.platforms.smbus2.Smbus2(machine)¶ Bases:
mpf.core.platform.I2cPlatformI2C platform which uses the smbus interface on linux via the smbus2 python extension.
Accessing the smbus2 platform via code
Hardware platforms are stored in the
self.machine.hardware_platformsdictionary, so the smbus2 platform is available viaself.machine.hardware_platforms['smbus2'].Methods & Attributes
The smbus2 platform has the following methods & attributes available. Note that methods & attributes inherited from base classes are not included here.
-
i2c_read8(address, register)¶ Read a byte from I2C.
-
i2c_read_block(address, register, count)¶ Read a block from I2C.
-
i2c_write8(address, register, value)¶ Write a byte to I2C.
-
initialize()¶ Check if smbus2 extension has been imported.
-