

The Capteur de courant (current sensor) is a device designed to detect and measure the flow of electric current in a circuit. Manufactured by Arduino with the part ID "UNO," this sensor is widely used in applications requiring current monitoring and control. It provides accurate and real-time current measurements, making it ideal for projects involving power management, motor control, and energy monitoring.








The Capteur de courant is designed to work seamlessly with Arduino boards, including the Arduino UNO. Below are the key technical details:
The Capteur de courant typically has three pins for connection. The table below describes each pin:
| Pin Name | Description |
|---|---|
| VCC | Power supply input (5V DC) |
| GND | Ground connection |
| OUT | Analog output signal proportional to current |
Connect the Sensor to the Arduino UNO:
Place the Sensor in the Circuit:
Read the Output:
Below is an example Arduino sketch to read current values from the Capteur de courant:
// Define the analog pin connected to the sensor's OUT pin
const int sensorPin = A0;
// Define the sensor's sensitivity in mV per Ampere (100mV/A)
const float sensitivity = 0.1; // 100mV = 0.1V
void setup() {
// Initialize serial communication for debugging
Serial.begin(9600);
}
void loop() {
// Read the analog value from the sensor
int sensorValue = analogRead(sensorPin);
// Convert the analog value to voltage (5V reference, 10-bit ADC)
float voltage = sensorValue * (5.0 / 1023.0);
// Calculate the current in Amperes
float current = voltage / sensitivity;
// Print the current value to the Serial Monitor
Serial.print("Current: ");
Serial.print(current);
Serial.println(" A");
// Wait for 500ms before the next reading
delay(500);
}
No Output or Incorrect Readings:
Fluctuating or Noisy Readings:
Readings Do Not Match Expected Values:
Sensor Overheating:
Q1: Can this sensor measure both AC and DC currents?
A1: Yes, the Capteur de courant can measure both AC and DC currents, but additional processing may be required for AC current measurements.
Q2: How do I improve the accuracy of the sensor?
A2: Use a stable power supply, minimize noise in the circuit, and calibrate the sensor with a known current source.
Q3: Can I use this sensor with microcontrollers other than Arduino?
A3: Yes, the sensor can be used with other microcontrollers, provided they have an analog input pin and a 5V power supply.
Q4: What happens if the current exceeds the sensor's range?
A4: The sensor may saturate, resulting in inaccurate readings. Prolonged exposure to excessive current may damage the sensor.