Support SWITCHING_NOZZLE with 2 servos (#13054)

This commit is contained in:
Marcio Teixeira
2019-02-03 23:19:56 -07:00
committed by Scott Lahteine
parent 3c88cac2e9
commit 5cfc1cdacc
95 changed files with 253 additions and 105 deletions

View File

@@ -45,7 +45,12 @@
#endif
#if ENABLED(SWITCHING_NOZZLE)
void move_nozzle_servo(const uint8_t e);
#if SWITCHING_NOZZLE_TWO_SERVOS
void lower_nozzle(const uint8_t e);
void raise_nozzle(const uint8_t e);
#else
void move_nozzle_servo(const uint8_t angle_index);
#endif
#endif
#if ENABLED(PARKING_EXTRUDER)