Explorar el Código

Added hal.py and wave.py example

main
Marcus Grieger hace 1 año
padre
commit
f5bd655ccb
Se han modificado 2 ficheros con 58 adiciones y 0 borrados
  1. +28
    -0
      python/hexapod/hal.py
  2. +30
    -0
      python/wave.py

+ 28
- 0
python/hexapod/hal.py Ver fichero

@@ -0,0 +1,28 @@
import board
import busio
import adafruit_pca9685
import adafruit_motor

import hexapod.servo_mapping

class Hal:
def __init__(self):
self.i2c = busio.I2C(board.SCL, board.SDA)

self.pca9685 = {}
self.pwm = {}

for s in hexapod.servo_mapping.servo_mapping:
m = hexapod.servo_mapping.servo_mapping[s]

address = m['address']
channel = m['channel']

if address not in self.pca9685:
self.pca9685[address] = adafruit_pca9685.PCA9685(self.i2c, address=address)
self.pca9685[address].frequency = 50

self.pwm[s] = self.pca9685[address].channels[channel]

+ 30
- 0
python/wave.py Ver fichero

@@ -0,0 +1,30 @@
import sys
import time
import board
import busio
import json

from adafruit_motor import servo
from adafruit_pca9685 import PCA9685

filename = sys.argv[1]
with open(filename, "r") as f:
calibration = json.load(f)
print(calibration)

i2c = busio.I2C(board.SCL, board.SDA)
pca = PCA9685(i2c)

pca.frequency = 50
servo = servo.Servo(pca.channels[15], actuation_range = 180, min_pulse=round(calibration['intercept']), max_pulse=round(calibration['intercept'] + 180 * calibration['slope']))

for i in range(0, 3):
servo.angle = 90
time.sleep(0.2)
servo.angle = 70
time.sleep(0.2)

servo.angle = 90

pca.channels[15].duty_cycle=0

Cargando…
Cancelar
Guardar