

The TOCT1-25 is a high-precision temperature sensor manufactured by Tomzn. It is designed to provide accurate and reliable temperature readings across a wide range of applications. This sensor is commonly used in industrial systems, environmental monitoring, HVAC systems, and other temperature-sensitive applications. Its robust design ensures durability and consistent performance, even in challenging environments.








The TOCT1-25 is engineered to meet the demands of modern temperature sensing applications. Below are its key technical specifications:
| Parameter | Value |
|---|---|
| Manufacturer | Tomzn |
| Model | TOCT1-25 |
| Sensor Type | Temperature Sensor |
| Temperature Range | -40°C to +125°C |
| Accuracy | ±0.5°C (typical) |
| Response Time | < 1 second |
| Output Signal | Analog Voltage |
| Supply Voltage | 3.3V to 5V |
| Operating Current | < 10 mA |
| Dimensions | 25mm x 10mm x 5mm |
| Operating Environment | Industrial and Environmental |
The TOCT1-25 has three pins for easy integration into circuits. The pinout is as follows:
| Pin Number | Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (3.3V to 5V) |
| 2 | GND | Ground connection |
| 3 | OUT | Analog output signal (temperature data) |
To use the TOCT1-25 in a circuit, follow these steps:
Below is an example of how to connect and read data from the TOCT1-25 using an Arduino UNO:
// TOCT1-25 Temperature Sensor Example
// Reads the analog output from the sensor and converts it to temperature
const int sensorPin = A0; // Analog pin connected to TOCT1-25 OUT pin
float voltage; // Variable to store sensor output voltage
float temperature; // Variable to store calculated temperature
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read analog value from sensor
voltage = sensorValue * (5.0 / 1023.0); // Convert ADC value to voltage
// Convert voltage to temperature (example formula, adjust as needed)
// Refer to the sensor's datasheet for the exact transfer function
temperature = (voltage - 0.5) * 100.0; // Example: 10mV per °C, offset 0.5V
// Print the temperature to the Serial Monitor
Serial.print("Temperature: ");
Serial.print(temperature);
Serial.println(" °C");
delay(1000); // Wait 1 second before the next reading
}
No Output Signal:
Inaccurate Readings:
Fluctuating Output:
Sensor Overheating:
Q: Can the TOCT1-25 be used in outdoor environments?
A: Yes, the TOCT1-25 is designed for industrial and environmental applications. However, it should be protected from direct exposure to water or extreme conditions.
Q: How do I calibrate the sensor?
A: Calibration involves comparing the sensor's output to a known temperature reference and adjusting the readings accordingly. Refer to the manufacturer's guidelines for detailed calibration procedures.
Q: What is the response time of the TOCT1-25?
A: The sensor has a response time of less than 1 second, making it suitable for real-time temperature monitoring.
Q: Can I use the TOCT1-25 with a 3.3V microcontroller?
A: Yes, the sensor operates within a supply voltage range of 3.3V to 5V, making it compatible with 3.3V systems.
By following this documentation, users can effectively integrate the TOCT1-25 into their projects and achieve accurate temperature measurements.