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.

14 lines
304B

  1. #ifndef LICKS_SERVO_H
  2. #define LICKS_SERVO_H
  3. #include <stdint.h>
  4. #define NUM_SERVOS 24
  5. extern uint32_t servo_pwm[NUM_SERVOS]; // low level PWM values. This block will be sent via SPI
  6. extern uint32_t servo_offsets[NUM_SERVOS]; // low level calibration
  7. extern void load_calibration(char *);
  8. #endif