smbus-cffi icon indicating copy to clipboard operation
smbus-cffi copied to clipboard

Python bindings for Linux SMBus access through i2c-dev using cffi

Results 10 smbus-cffi issues
Sort by recently updated
recently updated
newest added

See https://www.python.org/dev/peps/pep-0561/#packaging-type-information for details.

I have already added: Microsoft Visual C++ 2015-2019 Redistributable 14.23.27820.0 and i have installed the Visual Studio Build Tools 2019 with the Win 10 SDK. I am using Visual Code...

Hi, I have a sensor in 0x50 adress and work correctly, but when I did a loop for a long time, the error appear (110). For example, I put a...

Instantiating a `SMBus()` object and then calling `read_i2c_block_data` with `len` as a keyword argument fails: ``` > bus.read_i2c_block_data(address, data, len=8) E TypeError: validator() got an unexpected keyword argument 'len' ```...

The sensor reading is not changing and the smbus prevent the program from writng the data in the csv file

Hey there, I'm getting the following error when trying to use the code for Intel Edison (LSM9DS0) Traceback (most recent call last): File "berryIMU.py", line 126, in writeACC(CTRL_REG1_XM, 0b01100111) #z,y,x...

Hello, What is the best way to implement i2c_master_recv and i2c_master_send transactions in to a Python library? https://www.kernel.org/doc/Documentation/i2c/i2c-protocol I searched for Python library which could call these I2C standard transfers....

I tried this smbus package on my RPi with MCP23017, which has a photodiode module connected. Read the output from the photodiode(High/Low) continuously. The read performance is about 350Hz (calculated...

enhancement