Welcome! Log In Create A New Profile

Advanced

삼경 NTC-20KGJG 써미스터 Marlin에 등록하기

Posted by janpenguin 
삼경 NTC-20KGJG 써미스터 Marlin에 등록하기
June 18, 2015 02:57AM
이름: NTC-20KGJG
저항: 20k (25C)
온도 범위: -40C to 250C
B constant: 3991K

파는 곳: 엘레파츠
가격: 개당 230원, 10개 단위

사용한 Marlin은 Rich Cattell판 1.0.x

Configuration.h에 삼경 써미스터 20으로 등록

// 20 is 20k Samkyung NTC-20KGJG (4.7k pullup)
// 60 is 100k Maker's Tool Works Kapton Bed Thermister
//
// 1k ohm pullup tables - This is not normal, you would have to have changed out your 4.7k for 1k
// (but gives greater accuracy and more stable PID)
// 51 is 100k thermistor - EPCOS (1k pullup)
// 52 is 200k thermistor - ATC Semitec 204GT-2 (1k pullup)
// 55 is 100k thermistor - ATC Semitec 104GT-2 (Used in ParCan) (1k pullup)

// Custom thermistor
#define TEMP_SENSOR_0 20 // 5 (E3D V6 Hotend)


thermistortables.h에 아래 코드를 넣는다.

// Thermistor lookup table for Marlin
// ./createTemperatureLookup.py --rp=4700 --t1=25.0:20000.0 --t2=115.0:877.52 --t3=250.0:54.44 --num-temps=60

#if (THERMISTORHEATER_0 == 20) || (THERMISTORHEATER_1 == 20) || (THERMISTORHEATER_2 == 20) || (THERMISTORBED == 20)
const short temptable_20[][2] PROGMEM = {
{97, 284},
{105, 278},
{114, 272},
{124, 266},
{135, 260},
{147, 254},
{161, 248},
{176, 242},
{193, 230},
{212, 224},
{233, 218},
{257, 212},
{284, 206},
{315, 200},
{349, 194},
{388, 188},
{433, 182},
{484, 176},
{542, 170},
{609, 164},
{685, 158},
{773, 152},
{874, 146},
{991, 140},
{1126, 134},
{1282, 128},
{1462, 122},
{1672, 116},
{1914, 110},
{2195, 104},
{2519, 98},
{2892, 92},
{3320, 86},
{3809, 80},
{4363, 74},
{4985, 68},
{5675, 62},
{6431, 56},
{7245, 50},
{8105, 44},
{8996, 38},
{9897, 32},
{10784, 26},
{11636, 20},
{12431, 14},
{13153, 8},
{13792, 2},
{14341, -4}
};
#endif
Attachments:
open | download - NTC_thermistors_samkyung.pdf (127.3 KB)
Re: 삼경 NTC-20KGJG 써미스터 Marlin에 등록하기
July 23, 2015 09:30PM
와우 감사합니다.
Sorry, only registered users may post in this forum.

Click here to login