浏览代码

Merge branch 'master' of git.dahwa.fr:3DPrinting/Tips

Snarf 6 年之前
父节点
当前提交
f15d8079cb
共有 2 个文件被更改,包括 48 次插入1 次删除
  1. 1 1
      firmwares/marlin/README.md
  2. 47 0
      profiles/Personnal_Settings.md

+ 1 - 1
firmwares/marlin/README.md

@@ -10,7 +10,7 @@ I use this one on my Ender 3 with a [Touch Mi](http://www.hotends.fr/fr/home/64-
 * `PIDTEMPBED` is enabled
 * `RESTORE_LEVELING_AFTER_G28` is enabled  (see [G29 ABL](http://marlinfw.org/docs/gcode/G029-abl.html) for details)
 * `ENABLE_LEVELING_FADE_HEIGHT` is enabled  (see [Marlin issue #7562](https://github.com/MarlinFirmware/Marlin/issues/7562) for details)
-* as I need moar `PROGMEM` and use[OctoPrint](https://octoprint.org/), `SDSUPPORT` is disabled but i can keep `DISABLE_M503` unused
+* I need moar `PROGMEM` and use [OctoPrint](https://octoprint.org/), `SDSUPPORT` is disabled , so i can keep `DISABLE_M503` commented
 * Step/mm, PIDs are feeded from my own values.
 * `GRID_MAX_POINTS_X` & `GRID_MAX_POINTS_Y` are set to 5
 * `*_PROBE_BED_POSITION` defines are updated (see Below)

+ 47 - 0
profiles/Personnal_Settings.md

@@ -0,0 +1,47 @@
+## PID
+### Steel .4mm MK8 Nozzle PID
+
+#### 210°C 
+
+Gcode : `M303 E0 S210 C8`
+
+Result : 
+
+```
+Recv: #define DEFAULT_Kp 27.23
+Recv: #define DEFAULT_Ki 2.56
+Recv: #define DEFAULT_Kd 72.50
+``` 
+
+Gcode : `M301 P27.23 I2.56 D72.50`
+
+### BED PID 
+#### BED PID 60°C
+
+Gcode : `M303 E-1 S60 C8`
+
+Result : 
+
+```
+Recv: #define DEFAULT_bedKp 353.74
+Recv: #define DEFAULT_bedKi 67.47
+Recv: #define DEFAULT_bedKd 463.66
+```
+
+Gcode : `M304 P353.74 I67.47 D463.66`
+
+#### BED PID 50°C
+
+Gcode : `M303 E-1 S50 C8`
+
+Result : 
+
+```
+Recv: #define DEFAULT_bedKp 156.86
+Recv: #define DEFAULT_bedKi 30.88
+Recv: #define DEFAULT_bedKd 199.18
+```
+Gcode : `M304 P156.86 I30.8 D199.18`
+
+## 
+