The PTC 100W is a Positive Temperature Coefficient (PTC) thermistor with a power rating of 100 watts. This component is primarily used for overcurrent protection and temperature sensing applications. When the temperature increases, the resistance of the PTC thermistor also increases, which helps in limiting the current flow and protecting the circuit from damage.
Parameter | Value |
---|---|
Power Rating | 100W |
Resistance at 25°C | 10Ω |
Maximum Voltage | 250V |
Trip Current | 2A |
Hold Current | 1A |
Operating Temp. | -40°C to 125°C |
Thermal Time | 10s |
Pin Number | Pin Name | Description |
---|---|---|
1 | A | Connected to the positive voltage supply |
2 | B | Connected to the load or ground |
Below is an example of how to use the PTC 100W thermistor with an Arduino UNO for temperature sensing:
const int thermistorPin = A0; // Analog pin connected to the thermistor
const float baselineTemp = 25.0; // Baseline temperature for reference
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(thermistorPin, INPUT); // Set thermistor pin as input
}
void loop() {
int sensorValue = analogRead(thermistorPin); // Read the analog value
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
float resistance = (5.0 - voltage) * 10000 / voltage; // Calculate resistance
float temperature = baselineTemp + (resistance - 10000) / 100; // Estimate temperature
Serial.print("Temperature: ");
Serial.print(temperature);
Serial.println(" °C");
delay(1000); // Wait for 1 second before next reading
}
Incorrect Readings:
Overheating:
No Response:
By following this documentation, users can effectively utilize the PTC 100W thermistor in their electronic projects, ensuring reliable performance and protection.