25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef LICKS_SERVO_H
- #define LICKS_SERVO_H
-
- #include <stdint.h>
-
- #define NUM_SERVOS 24
-
- extern uint32_t servo_pwm[NUM_SERVOS]; // low level PWM values. This block will be sent via SPI
- extern uint32_t servo_offsets[NUM_SERVOS]; // low level calibration
-
- extern void load_calibration(char *);
-
- #endif
|