FYSETC Spider v2.2 (#23208)

This commit is contained in:
George Fu
2021-11-28 03:26:53 +08:00
committed by Scott Lahteine
parent f3fc1d15a3
commit 93652e5c6f
5 changed files with 48 additions and 5 deletions

View File

@ -162,7 +162,9 @@
#define TEMP_0_PIN PC0
#define TEMP_1_PIN PC1
#define TEMP_2_PIN PC2
#define TEMP_BED_PIN PC3
#ifndef TEMP_BED_PIN
#define TEMP_BED_PIN PC3
#endif
//
// Heaters / Fans
@ -180,8 +182,12 @@
#define HEATER_BED_PIN PC8
#endif
#define FAN_PIN PB0
#define FAN1_PIN PB1
#ifndef FAN_PIN
#define FAN_PIN PB0
#endif
#ifndef FAN1_PIN
#define FAN1_PIN PB1
#endif
#define FAN2_PIN PB2
//

View File

@ -0,0 +1,34 @@
/**
* Marlin 3D Printer Firmware
* Copyright (c) 2021 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
*
* 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
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
#pragma once
#define BOARD_INFO_NAME "FYSETC SPIDER V22"
#define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
#define TEMP_3_PIN PC3
#define TEMP_4_PIN PB1
#define TEMP_BED_PIN PB0
#define FAN_PIN PA13
#define FAN1_PIN PA14
#include "pins_FYSETC_SPIDER.h"