

The TS-25GA37OH-10 is a precision temperature sensor designed for accurate temperature measurement in a variety of applications. It features a wide operating temperature range and high sensitivity, making it suitable for industrial, medical, and environmental monitoring systems. Its compact design and reliable performance ensure seamless integration into both analog and digital systems.








| Parameter | Value |
|---|---|
| Operating Temperature Range | -40°C to +125°C |
| Supply Voltage (Vcc) | 2.7V to 5.5V |
| Output Signal Type | Analog Voltage |
| Sensitivity | 10 mV/°C |
| Accuracy | ±0.5°C (typical) |
| Response Time | < 1 second |
| Package Type | TO-92 or SMD |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Vcc | Power supply input (2.7V to 5.5V) |
| 2 | GND | Ground connection |
| 3 | Vout | Analog voltage output proportional to temperature |
The TS-25GA37OH-10 can be easily interfaced with an Arduino UNO to read temperature values.
// TS-25GA37OH-10 Temperature Sensor Example Code
// Reads the analog voltage from the sensor and converts it to temperature (°C)
const int sensorPin = A0; // Analog pin connected to Vout of the sensor
const float sensitivity = 0.01; // Sensor sensitivity in volts per degree Celsius
const float vcc = 5.0; // Arduino supply voltage (5V)
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read the analog value (0-1023)
float voltage = (sensorValue / 1023.0) * vcc; // Convert to voltage
float temperature = voltage / sensitivity; // Convert voltage to temperature
// Print the temperature to the Serial Monitor
Serial.print("Temperature: ");
Serial.print(temperature);
Serial.println(" °C");
delay(1000); // Wait for 1 second before the next reading
}
Inaccurate Temperature Readings:
No Output Signal:
Noisy Output:
Slow Response Time:
Q1: Can the TS-25GA37OH-10 be used in outdoor environments?
A1: Yes, but it should be housed in a protective enclosure to shield it from moisture and debris.
Q2: Is the sensor compatible with 3.3V systems?
A2: Yes, the sensor operates within a supply voltage range of 2.7V to 5.5V, making it compatible with 3.3V systems.
Q3: How do I improve the accuracy of the sensor?
A3: Perform additional calibration in the target environment and ensure the sensor is not exposed to sudden temperature changes or electrical noise.
Q4: Can I use this sensor with a Raspberry Pi?
A4: Yes, but you will need an external ADC since the Raspberry Pi does not have built-in analog input pins.