My Marlin configs for Fabrikator Mini and CTC i3 Pro B
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.

servo.h 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * servo.h - Interrupt driven Servo library for Arduino using 16 bit timers- Version 2
  25. * Copyright (c) 2009 Michael Margolis. All right reserved.
  26. *
  27. * This library is free software; you can redistribute it and/or
  28. * modify it under the terms of the GNU Lesser General Public
  29. * License as published by the Free Software Foundation; either
  30. * version 2.1 of the License, or (at your option) any later version.
  31. *
  32. * This library is distributed in the hope that it will be useful,
  33. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  34. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  35. * Lesser General Public License for more details.
  36. *
  37. * You should have received a copy of the GNU Lesser General Public
  38. * License along with this library; if not, write to the Free Software
  39. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  40. */
  41. /**
  42. *
  43. * A servo is activated by creating an instance of the Servo class passing the desired pin to the attach() method.
  44. * The servos are pulsed in the background using the value most recently written using the write() method
  45. *
  46. * Note that analogWrite of PWM on pins associated with the timer are disabled when the first servo is attached.
  47. * Timers are seized as needed in groups of 12 servos - 24 servos use two timers, 48 servos will use four.
  48. * The sequence used to seize timers is defined in timers.h
  49. *
  50. * The methods are:
  51. *
  52. * Servo - Class for manipulating servo motors connected to Arduino pins.
  53. *
  54. * attach(pin ) - Attaches a servo motor to an i/o pin.
  55. * attach(pin, min, max ) - Attaches to a pin setting min and max values in microseconds
  56. * default min is 544, max is 2400
  57. *
  58. * write() - Sets the servo angle in degrees. (invalid angle that is valid as pulse in microseconds is treated as microseconds)
  59. * writeMicroseconds() - Sets the servo pulse width in microseconds
  60. * read() - Gets the last written servo pulse width as an angle between 0 and 180.
  61. * readMicroseconds() - Gets the last written servo pulse width in microseconds. (was read_us() in first release)
  62. * attached() - Returns true if there is a servo attached.
  63. * detach() - Stops an attached servos from pulsing its i/o pin.
  64. * move(angle) - Sequence of attach(0), write(angle),
  65. * With DEACTIVATE_SERVOS_AFTER_MOVE wait SERVO_DELAY and detach.
  66. */
  67. #if IS_TEENSY32
  68. #include "../TEENSY31_32/Servo.h"
  69. #elif IS_TEENSY35 || IS_TEENSY36
  70. #include "../TEENSY35_36/Servo.h"
  71. #elif IS_TEENSY40 || IS_TEENSY41
  72. #include "../TEENSY40_41/Servo.h"
  73. #elif defined(TARGET_LPC1768)
  74. #include "../LPC1768/Servo.h"
  75. #elif defined(__STM32F1__) || defined(TARGET_STM32F1)
  76. #include "../STM32F1/Servo.h"
  77. #elif defined(STM32GENERIC) && defined(STM32F4)
  78. #include "../STM32_F4_F7/Servo.h"
  79. #elif defined(ARDUINO_ARCH_STM32)
  80. #include "../STM32/Servo.h"
  81. #elif defined(ARDUINO_ARCH_ESP32)
  82. #include "../ESP32/Servo.h"
  83. #else
  84. #include <stdint.h>
  85. #if defined(__AVR__) || defined(ARDUINO_ARCH_SAM) || defined(__SAMD51__)
  86. // we're good to go
  87. #else
  88. #error "This library only supports boards with an AVR, SAM3X or SAMD51 processor."
  89. #endif
  90. #define Servo_VERSION 2 // software version of this library
  91. class Servo {
  92. public:
  93. Servo();
  94. int8_t attach(const int pin); // attach the given pin to the next free channel, set pinMode, return channel number (-1 on fail)
  95. int8_t attach(const int pin, const int min, const int max); // as above but also sets min and max values for writes.
  96. void detach();
  97. void write(int value); // if value is < 200 it is treated as an angle, otherwise as pulse width in microseconds
  98. void writeMicroseconds(int value); // write pulse width in microseconds
  99. void move(const int value); // attach the servo, then move to value
  100. // if value is < 200 it is treated as an angle, otherwise as pulse width in microseconds
  101. // if DEACTIVATE_SERVOS_AFTER_MOVE wait SERVO_DELAY, then detach
  102. int read(); // returns current pulse width as an angle between 0 and 180 degrees
  103. int readMicroseconds(); // returns current pulse width in microseconds for this servo (was read_us() in first release)
  104. bool attached(); // return true if this servo is attached, otherwise false
  105. private:
  106. uint8_t servoIndex; // index into the channel data for this servo
  107. int8_t min; // minimum is this value times 4 added to MIN_PULSE_WIDTH
  108. int8_t max; // maximum is this value times 4 added to MAX_PULSE_WIDTH
  109. };
  110. #endif