You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
698B

  1. import board
  2. import busio
  3. import adafruit_pca9685
  4. import adafruit_motor
  5. import hexapod.servo_mapping
  6. class Hal:
  7. def __init__(self):
  8. self.i2c = busio.I2C(board.SCL, board.SDA)
  9. self.pca9685 = {}
  10. self.pwm = {}
  11. for s in hexapod.servo_mapping.servo_mapping:
  12. m = hexapod.servo_mapping.servo_mapping[s]
  13. address = m['address']
  14. channel = m['channel']
  15. if address not in self.pca9685:
  16. self.pca9685[address] = adafruit_pca9685.PCA9685(self.i2c, address=address)
  17. self.pca9685[address].frequency = 50
  18. self.pwm[s] = self.pca9685[address].channels[channel]