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.

30 lines
634B

  1. import sys
  2. import time
  3. import board
  4. import busio
  5. import json
  6. from adafruit_motor import servo
  7. from adafruit_pca9685 import PCA9685
  8. filename = sys.argv[1]
  9. with open(filename, "r") as f:
  10. calibration = json.load(f)
  11. print(calibration)
  12. i2c = busio.I2C(board.SCL, board.SDA)
  13. pca = PCA9685(i2c)
  14. pca.frequency = 50
  15. servo_pwm = pca.channels[0]
  16. servo = servo.Servo(pca.channels[0], actuation_range = 180, min_pulse=round(calibration['intercept']), max_pulse=round(calibration['intercept'] + 180 * calibration['slope']))
  17. servo.angle = 90
  18. time.sleep(2)
  19. servo.angle = 0
  20. time.sleep(2)
  21. servo.angle = 180
  22. time.sleep(2)
  23. servo.angle = 90