2017-02-25 11:15:18 +01:00
|
|
|
/**
|
2016-06-16 06:18:44 +02:00
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2016-06-16 06:18:44 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2016-06-16 06:18:44 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-07-23 05:20:14 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-06-16 06:18:44 +02:00
|
|
|
*
|
|
|
|
*/
|
2018-11-04 09:25:55 +01:00
|
|
|
#pragma once
|
2016-06-16 06:18:44 +02:00
|
|
|
|
2017-09-06 13:28:32 +02:00
|
|
|
#include "../inc/MarlinConfig.h"
|
2016-06-16 06:18:44 +02:00
|
|
|
|
|
|
|
/**
|
2016-06-23 01:23:55 +02:00
|
|
|
* @brief Nozzle class
|
2016-06-16 06:18:44 +02:00
|
|
|
*
|
|
|
|
* @todo: Do not ignore the end.z value and allow XYZ movements
|
|
|
|
*/
|
2016-06-23 01:23:55 +02:00
|
|
|
class Nozzle {
|
2016-06-16 06:18:44 +02:00
|
|
|
private:
|
2017-11-04 02:44:56 +01:00
|
|
|
|
|
|
|
#if ENABLED(NOZZLE_CLEAN_FEATURE)
|
|
|
|
|
2016-06-16 06:18:44 +02:00
|
|
|
/**
|
|
|
|
* @brief Stroke clean pattern
|
|
|
|
* @details Wipes the nozzle back and forth in a linear movement
|
|
|
|
*
|
2019-09-29 11:25:39 +02:00
|
|
|
* @param start xyz_pos_t defining the starting point
|
|
|
|
* @param end xyz_pos_t defining the ending point
|
2016-06-16 06:18:44 +02:00
|
|
|
* @param strokes number of strokes to execute
|
|
|
|
*/
|
2019-09-29 11:25:39 +02:00
|
|
|
static void stroke(const xyz_pos_t &start, const xyz_pos_t &end, const uint8_t &strokes) _Os;
|
2016-06-16 06:18:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Zig-zag clean pattern
|
2017-02-24 23:41:44 +01:00
|
|
|
* @details Apply a zig-zag cleaning pattern
|
2016-06-16 06:18:44 +02:00
|
|
|
*
|
2019-09-29 11:25:39 +02:00
|
|
|
* @param start xyz_pos_t defining the starting point
|
|
|
|
* @param end xyz_pos_t defining the ending point
|
2016-06-23 01:23:55 +02:00
|
|
|
* @param strokes number of strokes to execute
|
|
|
|
* @param objects number of objects to create
|
2016-06-16 06:18:44 +02:00
|
|
|
*/
|
2019-09-29 11:25:39 +02:00
|
|
|
static void zigzag(const xyz_pos_t &start, const xyz_pos_t &end, const uint8_t &strokes, const uint8_t &objects) _Os;
|
2016-06-23 01:23:55 +02:00
|
|
|
|
2017-02-24 23:41:44 +01:00
|
|
|
/**
|
|
|
|
* @brief Circular clean pattern
|
|
|
|
* @details Apply a circular cleaning pattern
|
|
|
|
*
|
2019-09-29 11:25:39 +02:00
|
|
|
* @param start xyz_pos_t defining the middle of circle
|
2017-02-24 23:41:44 +01:00
|
|
|
* @param strokes number of strokes to execute
|
|
|
|
* @param radius radius of circle
|
|
|
|
*/
|
2019-09-29 11:25:39 +02:00
|
|
|
static void circle(const xyz_pos_t &start, const xyz_pos_t &middle, const uint8_t &strokes, const float &radius) _Os;
|
2017-11-04 02:44:56 +01:00
|
|
|
|
|
|
|
#endif // NOZZLE_CLEAN_FEATURE
|
2016-06-16 06:18:44 +02:00
|
|
|
|
|
|
|
public:
|
2017-11-04 02:44:56 +01:00
|
|
|
|
|
|
|
#if ENABLED(NOZZLE_CLEAN_FEATURE)
|
|
|
|
|
2016-06-16 06:18:44 +02:00
|
|
|
/**
|
|
|
|
* @brief Clean the nozzle
|
|
|
|
* @details Starts the selected clean procedure pattern
|
|
|
|
*
|
|
|
|
* @param pattern one of the available patterns
|
|
|
|
* @param argument depends on the cleaning pattern
|
|
|
|
*/
|
2019-07-17 10:41:04 +02:00
|
|
|
static void clean(const uint8_t &pattern, const uint8_t &strokes, const float &radius, const uint8_t &objects, const uint8_t cleans) _Os;
|
2017-11-04 02:44:56 +01:00
|
|
|
|
|
|
|
#endif // NOZZLE_CLEAN_FEATURE
|
|
|
|
|
|
|
|
#if ENABLED(NOZZLE_PARK_FEATURE)
|
|
|
|
|
2019-09-29 11:25:39 +02:00
|
|
|
static void park(const uint8_t z_action, const xyz_pos_t &park=NOZZLE_PARK_POINT) _Os;
|
2017-11-04 02:44:56 +01:00
|
|
|
|
|
|
|
#endif
|
2016-06-16 06:18:44 +02:00
|
|
|
};
|
2019-07-17 10:41:04 +02:00
|
|
|
|
|
|
|
extern Nozzle nozzle;
|