Ntc Single Ended Glass Seal Thermistor Temperature Sensor 3D Printer 100K 1% 3950 Resistant To 200 Degrees
Rs. 43.00 Rs. 50.00
- Product Code: SEN-TEMP
- SKU -
- Availability: In Stock
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
This is Thermistor 100k NTC with 1 Meter Cable Temperature Sensor for 3D Printer Reprap.
The thermistor is a thermally sensitive resistor known for exhibiting a large change in resistance with only a small change in temperature.
Positive thermal coefficient (PTC) will increase in resistance with an increase in temperature, negative ones (NTC) will decrease.
But the formula in practice is not linear, so sometimes an accurate table of measurements is better than the linear formula.
These measurements can usually be found in the datasheet that accompanies the thermistor.
SPECIFICATIONS | |
Temperature range of use | – 30℃ ~ + 200℃. |
Dissipation power factor | ≥5 mW/℃ (static in the air). |
100k Ohm NTC Thermistor | NTC Thin Film Thermistor Cable. |
Max power rating | 45 mW |
The hot time constant | ≤7 s(in the air) |
OVERVIEW | |
Temperature range of use | – 30℃ ~ + 200℃. |
Dissipation power factor | ≥5 mW/℃ (static in the air). |
100k Ohm NTC Thermistor. | |
NTC Thin Film Thermistor Cable. | |
Max power rating | 45 mW |
The hot time constant | ≤7 s(in the air) |
PACKAGE INCLUDES:
1 PCS x Ntc Single Ended Glass Seal Thermistor Temperature Sensor 3D Printer 100K 1% 3950 Resistant To 200 Degrees
//SOURCE CODE TAKEN FORM BELOW LINK
//https://github.com/miguel5612/ThermistorLibrary/blob/master/examples/basicExample/basicExample.ino
// 3950 THERMISTOR EXAMPLE.
// Written by Miguel Angel Califa Urquiza
// Released under an MIT license.
// Depends on the following Arduino libraries:
// - Arduino thermistor library: https://github.com/miguel5612/Arduino-ThermistorLibrary
#include <thermistor.h>
thermistor therm1(A0,0); // Analog Pin which is connected to the 3950 temperature sensor, and 0 represents TEMP_SENSOR_0 (see configuration.h for more information).
void setup() {
// put your setup code here, to run once:
Serial.begin(9600); //initialize port serial at 9600 Bauds.
}
void loop() {
double temp = therm1.analog2temp(); // read temperature
//Print temperature in port serial
Serial.print("Temperatura: ");
Serial.println((String)temp);
Serial.print("----------------------");
delay(2000); //wait 2000 mS for next measure
}
15 days