瀏覽代碼

Add 5DPrint D8 Driver Board info and temperature table for Makibox hot bed

Cameron Lai 10 年之前
父節點
當前提交
da6b536182
共有 2 個文件被更改,包括 37 次插入0 次删除
  1. 2
    0
      Marlin/Configuration.h
  2. 35
    0
      Marlin/thermistortables.h

+ 2
- 0
Marlin/Configuration.h 查看文件

@@ -70,6 +70,7 @@
70 70
 // 91 = Final OMCA board
71 71
 // 301= Rambo
72 72
 // 21 = Elefu Ra Board (v3)
73
+// 88 = 5DPrint D8 Driver Board
73 74
 
74 75
 #ifndef MOTHERBOARD
75 76
 #define MOTHERBOARD 7
@@ -116,6 +117,7 @@
116 117
 // 9 is 100k GE Sensing AL03006-58.2K-97-G1 (4.7k pullup)
117 118
 // 10 is 100k RS thermistor 198-961 (4.7k pullup)
118 119
 // 11 is 100k beta 3950 1% thermistor (4.7k pullup)
120
+// 12 is 100k 0603 SMD Vishay NTCS0603E3104FXT (4.7k pullup) (calibrated for Makibox hot bed)
119 121
 // 20 is the PT100 circuit found in the Ultimainboard V2.x
120 122
 // 60 is 100k Maker's Tool Works Kapton Bed Thermistor beta=3950
121 123
 //

+ 35
- 0
Marlin/thermistortables.h 查看文件

@@ -921,6 +921,41 @@ const short temptable_60[][2] PROGMEM = {
921 921
    {1008*OVERSAMPLENR, 0},
922 922
 };
923 923
 #endif
924
+#if (THERMISTORBED == 12) 
925
+//100k 0603 SMD Vishay NTCS0603E3104FXT (4.7k pullup) (calibrated for Makibox hot bed)
926
+const short temptable_12[][2] PROGMEM = {
927
+   {35*OVERSAMPLENR, 180}, //top rating 180C
928
+   {211*OVERSAMPLENR, 140},
929
+   {233*OVERSAMPLENR, 135},
930
+   {261*OVERSAMPLENR, 130},
931
+   {290*OVERSAMPLENR, 125},
932
+   {328*OVERSAMPLENR, 120},
933
+   {362*OVERSAMPLENR, 115},
934
+   {406*OVERSAMPLENR, 110},
935
+   {446*OVERSAMPLENR, 105},
936
+   {496*OVERSAMPLENR, 100},
937
+   {539*OVERSAMPLENR, 95},
938
+   {585*OVERSAMPLENR, 90},
939
+   {629*OVERSAMPLENR, 85},
940
+   {675*OVERSAMPLENR, 80},
941
+   {718*OVERSAMPLENR, 75},
942
+   {758*OVERSAMPLENR, 70},
943
+   {793*OVERSAMPLENR, 65},
944
+   {822*OVERSAMPLENR, 60},
945
+   {841*OVERSAMPLENR, 55},
946
+   {875*OVERSAMPLENR, 50},
947
+   {899*OVERSAMPLENR, 45},
948
+   {926*OVERSAMPLENR, 40},
949
+   {946*OVERSAMPLENR, 35},
950
+   {962*OVERSAMPLENR, 30},
951
+   {977*OVERSAMPLENR, 25},
952
+   {987*OVERSAMPLENR, 20},
953
+   {995*OVERSAMPLENR, 15},
954
+   {1001*OVERSAMPLENR, 10},
955
+   {1010*OVERSAMPLENR, 0},
956
+   {1023*OVERSAMPLENR, -40},
957
+};
958
+#endif
924 959
 
925 960
 // Pt1000 and Pt100 handling
926 961
 // 

Loading…
取消
儲存