Marlin_Firmware/Marlin/src/HAL/HAL_TEENSY35_36/Servo.cpp

37 lines
984 B
C++
Raw Normal View History

#if defined(__MK64FX512__) || defined(__MK66FX1M0__)
2017-09-06 06:28:32 -05:00
#include "../../inc/MarlinConfig.h"
#if HAS_SERVOS
2019-09-02 19:49:58 -05:00
#include "Servo.h"
uint8_t servoPin[MAX_SERVOS] = { 0 };
2017-09-27 03:33:29 -05:00
int8_t libServo::attach(const int pin) {
if (this->servoIndex >= MAX_SERVOS) return -1;
if (pin > 0) servoPin[this->servoIndex] = pin;
return Servo::attach(servoPin[this->servoIndex]);
}
2017-09-27 03:33:29 -05:00
int8_t libServo::attach(const int pin, const int min, const int max) {
if (pin > 0) servoPin[this->servoIndex] = pin;
return Servo::attach(servoPin[this->servoIndex], min, max);
}
2017-09-27 03:33:29 -05:00
void libServo::move(const int value) {
constexpr uint16_t servo_delay[] = SERVO_DELAY;
static_assert(COUNT(servo_delay) == NUM_SERVOS, "SERVO_DELAY must be an array NUM_SERVOS long.");
if (this->attach(0) >= 0) {
this->write(value);
safe_delay(servo_delay[this->servoIndex]);
#if ENABLED(DEACTIVATE_SERVOS_AFTER_MOVE)
this->detach();
#endif
}
}
#endif // HAS_SERVOS
2017-09-27 03:33:29 -05:00
#endif // __MK64FX512__ || __MK66FX1M0__