| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- Marlin :
- Arduino ( Site pas de dépot linux)
- Telecharger Skynet https://github.com/SkyNet3D/anet-board
- Telecharger Marlin : http://marlinfw.org/meta/download/
- Ajouter fichier Skynet/hardware au dossier Arduino
- Copier example Marlin Anet A8 dans dossier Marlin.
-
-
- Pour programer passer en compilateur Arduino (Gestionaire board) en 1.6.23
- Configuration.h :
- #define LCD_LANGUAGE fr
-
- E3V6 :
- https://fr.aliexpress.com/item/32837069683.html?spm=a2g0s.12269583.0.0.57525302uQ9D9b
- https://fr.aliexpress.com/item/32945724909.html?spm=a2g0s.12269583.0.0.22944ad2k2xKOk
- https://www.thingiverse.com/thing:2193695
- https://www.thingiverse.com/thing:2146021 Si pas de Titan
-
- Configuration.h:
- #define X_MAX_POS 250
- #define X_MIN_POS -13
- #define Y_MAX_POS 220
- #define Y_MIN_POS -13
- #define Z_MAX_POS 250
- #define Z_MIN_POS 0
- Modifier (step/mm) E1 : 391
-
- si Titan
- #define INVERT_E0_DIR true
- #define INVERT_E1_DIR false
- #define INVERT_E2_DIR false
- #define INVERT_E3_DIR false
- #define INVERT_E4_DIR false
- Cura :
- Changer distance de rétractation 6mm => 2mm
-
-
- BLtouch :
- https://fr.aliexpress.com/item/32913903746.html?spm=a2g0s.12269583.0.0.3bad35c1SDAHwC
- https://www.thingiverse.com/thing:2288948
-
- Configuration.h
- decommente #define BLTOUCH
- Ajouter en dessous BLTOUCH #define SERVO_PIN 27
- #define X_PROBE_OFFSET_FROM_EXTRUDER -45
- #define Y_PROBE_OFFSET_FROM_EXTRUDER -9
- #define Z_PROBE_OFFSET_FROM_EXTRUDER 0
- Decomente #define Z_HOMMING_HEIGHT 4
- Commente #define MIN_SOFTWRE_ENDSTOP
- Decommente #define AUTO_BED_LEVELING_BILINEAR
- #define LEFT_PROBE_BED_POSITION 20
- #define RIGHT_PROBE_BED_POSITION 200
- #define BACK_PROBE_BED_POSITION 200
- #define FRONT_PROBE_BED_POSITION 20
-
- Decommente #define Z_SAFE_HOMMING
- #define Z_MIN_PROBE_ENDSTOP_INVERTING false
-
- niveau Z :
- sur octoprint
- G28 #home all
- M211 S0 #desactive les deplacement négatif
- G1 X155 Y119 Z0
- On deplace avec octoprint jusqu'a feuille
- M851 Z {valeurlu en Z}
- M211 S1
- M500
- Configuration:
-
|