

The Capteur de T° Grove -50 à 600 °C 111020002 is a high-precision temperature sensor module manufactured by Arduino. It is designed to measure temperatures ranging from -50°C to 600°C, making it suitable for a wide variety of applications, including environmental monitoring, industrial process control, and scientific experiments. The sensor is part of the Grove ecosystem, which simplifies prototyping and integration with microcontrollers like the Arduino UNO.
This sensor is ideal for scenarios requiring accurate temperature readings over a broad range, such as monitoring high-temperature machinery or outdoor weather conditions.








Below are the key technical details of the Capteur de T° Grove -50 à 600 °C 111020002:
| Parameter | Value |
|---|---|
| Operating Voltage | 3.3V to 5V |
| Temperature Range | -50°C to 600°C |
| Accuracy | ±1.5°C (typical) |
| Output Signal | Analog voltage |
| Interface Type | Grove 4-pin connector |
| Response Time | < 1 second |
| Dimensions | 20mm x 40mm |
The sensor uses a standard Grove 4-pin connector. The pinout is as follows:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power supply (3.3V to 5V) |
| 2 | GND | Ground |
| 3 | SIG | Analog signal output (temperature data) |
| 4 | NC | Not connected |
Hardware Setup:
Circuit Diagram:
Arduino UNO ---- Grove Base Shield ---- Capteur de T° Grove
Power Requirements:
Below is an example Arduino sketch to read temperature data from the sensor:
// Include necessary libraries
const int sensorPin = A0; // Define the analog pin connected to the sensor
float voltage; // Variable to store the sensor's output voltage
float temperature; // Variable to store the calculated temperature
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(sensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
// Read the analog value from the sensor
int sensorValue = analogRead(sensorPin);
// Convert the analog value to voltage (assuming 5V reference)
voltage = sensorValue * (5.0 / 1023.0);
// Convert the voltage to temperature (example formula, adjust as needed)
temperature = (voltage - 0.5) * 100.0;
// 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 or Incorrect Readings:
Fluctuating Temperature Readings:
Temperature Readings Out of Range:
Q1: Can this sensor measure negative temperatures?
Yes, the sensor can measure temperatures as low as -50°C.
Q2: Is this sensor compatible with Raspberry Pi?
Yes, the sensor can be used with Raspberry Pi via an ADC (Analog-to-Digital Converter) module, as the Raspberry Pi lacks native analog input.
Q3: How do I extend the sensor's cable for remote measurements?
Use shielded cables to minimize noise and ensure accurate readings over long distances.
Q4: Can this sensor be used for liquid temperature measurement?
No, this sensor is not waterproof. Use a thermocouple or waterproof sensor for liquid temperature applications.
By following this documentation, you can effectively integrate and utilize the Capteur de T° Grove -50 à 600 °C 111020002 in your projects.