i2c_lib.py 842 B

1234567891011121314151617181920212223242526272829303132333435
  1. from smbus2 import SMBus
  2. from time import *
  3. class i2c_device:
  4. def __init__(self, addr, port=1):
  5. self.addr = addr
  6. self.bus = SMBus(port)
  7. # Write a single command
  8. def write_cmd(self, cmd):
  9. self.bus.write_byte(self.addr, cmd)
  10. sleep(0.0001)
  11. # Write a command and argument
  12. def write_cmd_arg(self, cmd, data):
  13. self.bus.write_byte_data(self.addr, cmd, data)
  14. sleep(0.0001)
  15. # Write a block of data
  16. def write_block_data(self, cmd, data):
  17. self.bus.write_block_data(self.addr, cmd, data)
  18. sleep(0.0001)
  19. # Read a single byte
  20. def read(self):
  21. return self.bus.read_byte(self.addr)
  22. # Read
  23. def read_data(self, cmd):
  24. return self.bus.read_byte_data(self.addr, cmd)
  25. # Read a block of data
  26. def read_block_data(self, cmd):
  27. return self.bus.read_block_data(self.addr, cmd)