From 51a3c17f0c1fb16e0b172fd090df8b5b9f6b8a23 Mon Sep 17 00:00:00 2001 From: Mohammed Omer <momer93@hotmail.com> Date: Tue, 23 Mar 2021 13:52:58 +0100 Subject: [PATCH] m --- docs/machines/3DPrinter.md | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/docs/machines/3DPrinter.md b/docs/machines/3DPrinter.md index 624de8b..ae49a05 100644 --- a/docs/machines/3DPrinter.md +++ b/docs/machines/3DPrinter.md @@ -189,23 +189,30 @@ Most commonly used belts in 3D printers are the GT2 belts which are toothed rubb - Mechanical - Optical 3. Heat Bed Options - - Silicone Bed Heater (Keenovo) 220V mains heating + - Silicone Bed Heater + - 220V mains heating + - 24V heating - MK2A Aluminium Heated bed - - + - Kapton heater + - PCB Heat bed 4. Z-bed levelling sensor choices: - Induction Sensor - BL touch - IR sensor - Piezo Sensor -[Autolevelling sensors review](https://www.youtube.com/watch?v=il9bNWn66BY&t=8s) +Most common Z-bed autolevelling sensors are reviewed and tested in the following [video](https://www.youtube.com/watch?v=il9bNWn66BY&t=8s), whereby the most simple and precise seem to be the PINDA 8mm inductive sensor from Prusa and the LJ12A3-4-Z/BX inductive sensor. -5. Rasberry Pi for Octoprint (WiFi printing) -6. Fans for cooling electronics +Inductive sensors are affordable and precise enough for our application and so we will use a 12mm LJ12A3-4-z/BX inductive sensor. This has a 4mm metal detection distance (for ferrous metal like iron) but for non ferrous metals like aluminium this distance can be halved. So the inductive sensor will have to be placed about 2-3mm offset from the nozzle head. + +1. Rasberry Pi for Octoprint (WiFi printing) +2. Fans for cooling electronics - 6020 Fans for electronics enclosure cooling - 4020 Duct fan for part cooling - 5015 Fan for Hotend cooling +### + ### **Configuring the MKS Sbase V1.3** @@ -418,13 +425,23 @@ Next Open the file **Configuration.h** with the file path - Marlin-2.0.x > Marli Here the first thing to define is the motherboard used i.e. here after #define MOTHERBOARD enter **BOARD_MKS_SBASE** as seen in the code snippet below. +Next basic settings such as: + - Type of electronics + - Type of temperature sensor + - Printer geometry + - Endstop configuration + - LCD controller + - Extra features + + - Advanced settings can be found in Configuration_adv.h + // Choose the name from boards.h that matches your setup #ifndef MOTHERBOARD #define **MOTHERBOARD BOARD_MKS_SBASE** #endif --- -Next +Next for an NPN NO inductive probe like the set Z_endstop -- GitLab