Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

103 wiersze
2.1KB

  1. import time
  2. import board
  3. import busio
  4. import sshkeyboard
  5. import sys
  6. import scipy.stats
  7. import json
  8. from adafruit_motor import servo
  9. from adafruit_pca9685 import PCA9685
  10. i2c = busio.I2C(board.SCL, board.SDA)
  11. pca = PCA9685(i2c)
  12. pca.frequency = 50
  13. servo_pwm = pca.channels[0]
  14. #servo = servo.Servo(pca.channels[0], actuation_range = 180, min_pulse=1000, max_pulse=2000)
  15. #servo.angle = 90
  16. def usec_to_duty_cycle(usec):
  17. return int(usec * 0xffff / 20000)
  18. print("""Calibrate Servo:
  19. s - center (to 1500 usec)
  20. a - move CCW (100 usec)
  21. q - move CCW ( 10 usec)
  22. d - move CW (100 usec)
  23. e - move CW ( 10 usec)
  24. <enter> - store value
  25. Move Servo to 0 degrees now.""")
  26. usec = 1500
  27. angle = 0
  28. angle_values = []
  29. usec_values = []
  30. servo_pwm.duty_cycle = usec_to_duty_cycle(usec)
  31. def press(key):
  32. global usec
  33. global angle
  34. global angle_values
  35. global usec_values
  36. if key == 'a':
  37. usec -= 100
  38. if key == 'd':
  39. usec += 100
  40. if key == 's':
  41. usec = 1500
  42. if key == 'q':
  43. usec -= 10
  44. if key == 'e':
  45. usec += 10
  46. if key == 'enter':
  47. print(f"Angle: {angle} degrees")
  48. print(f"Pulse length: {usec} usec")
  49. angle_values.append(angle)
  50. usec_values.append(usec)
  51. angle += 30
  52. if angle > 180:
  53. sshkeyboard.stop_listening()
  54. return
  55. print(f"Move Servo to {angle} degress now.")
  56. print(usec)
  57. servo_pwm.duty_cycle = usec_to_duty_cycle(usec)
  58. sshkeyboard.listen_keyboard( on_press = press )
  59. result = scipy.stats.linregress(angle_values, usec_values)
  60. print(f"0 degree value: {round(result.intercept)}")
  61. print(f"180 degree value: {round(result.intercept + 180 * result.slope)}")
  62. filename = input("Save as: ")
  63. if filename != "":
  64. description = input("Description: ")
  65. if not filename.endswith(".json"):
  66. filename += ".json"
  67. calibration = {
  68. 'description': description,
  69. 'intercept': result.intercept,
  70. 'slope': result.slope
  71. }
  72. with open(filename, "w") as out:
  73. out.write(json.dumps(calibration, indent = 4))