materiels:capteurs:intensite:intensite

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
materiels:capteurs:intensite:intensite [2024/06/24 17:10] – [Modifier - Pane] philmateriels:capteurs:intensite:intensite [2024/06/26 19:35] (Version actuelle) – [2.1 ±5A - (ACS714)] phil
Ligne 3: Ligne 3:
 ===== Capteurs - Intensité du courant ===== ===== Capteurs - Intensité du courant =====
  
-[Mise à jour le 24/6/2024]+[Mise à jour le 25/6/2024]
  
 \\ \\
Ligne 28: Ligne 28:
     * Consommation: 10 mA     * Consommation: 10 mA
     * Plage de mesure: -5 A à +5 A en AC ou DC     * Plage de mesure: -5 A à +5 A en AC ou DC
-    * Sensibilité: **185 mV/A** (centrée sur 2,5V)+    * Sensibilité: **185 mV/A**(à 25°C) (centrée sur 2,5V)
     * précision: **+/-1,5%**     * précision: **+/-1,5%**
     * Shunt: 1,2 mΩ     * Shunt: 1,2 mΩ
Ligne 59: Ligne 59:
  
 <pane id="tab-acs714duino_1"> <pane id="tab-acs714duino_1">
 +    * //**Ressources**//{{ :materiels:capteurs:intensite:doc.gif?nolink|}}
 +      * //**Fiche guide**// pour l'étude d'une chaîne d'information comprenant un **ACS714**  <html><a href="https://webge.fr/doc/projets/tsin/0_Fiches guide TSIN/TSIN_FGA_ACS714.zip">[Télécharger]</a></html>
 +
     * //Connexion à un shield// <html><a href="https://webge.fr/doc/wikis/pdf/TinkerkitV2.pdf" target="_blank">Tinkerkit v2</a></html> monté sur une Arduino Uno{{ :materiels:capteurs:acs714_2.jpg?nolink&600 |}} \\     * //Connexion à un shield// <html><a href="https://webge.fr/doc/wikis/pdf/TinkerkitV2.pdf" target="_blank">Tinkerkit v2</a></html> monté sur une Arduino Uno{{ :materiels:capteurs:acs714_2.jpg?nolink&600 |}} \\
-    * // Exemple pour tester le capteur//+    * // Exemple pour tester le capteur (étude dans la fiche guide) //
 {{ :materiels:capteurs:distance:arduinoico.png?nolink&40|}} {{ :materiels:capteurs:distance:arduinoico.png?nolink&40|}}
-<code cpp acs714.cpp>+<code cpp acs714_V1.cpp> 
 +/* 
 +ACS714 sur Arduino Uno 
 +*/ 
 + 
 +#define RefVal 5.0 
 +#define Pin A0 
 + 
 +// Take the average of 500 times 
 +const int averageValue = 500; 
 +long int sensorValue = 0; 
 +float sensitivity = 1000.0 / 185.0;  //1000mA per 185mV 
 + 
 +// Output voltage with no current: 2500mV 
 +float Vref = 2500; 
 + 
 +void setup() { 
 +  Serial.begin(9600); 
 +
 + 
 +void loop() { 
 +  // Read the value 500 times: 
 +  for (int i = 0; i < averageValue; i++) { 
 +    sensorValue += analogRead(Pin); 
 + 
 +    // wait 2 milliseconds before the next loop 
 +    delay(2); 
 +  } 
 +  sensorValue = sensorValue / averageValue; 
 + 
 +  // The on-board ADC is 10-bits 
 +  // Different power supply will lead to different reference sources 
 +  // example: 2^10 = 1024 -> 5V / 1024 ~= 4.88mV 
 +  //          unitValue= 5.0 / 1024.0*1000 ; 
 +  float unitValue = RefVal / 1024.0 * 1000; 
 +  float voltage = unitValue * sensorValue; 
 + 
 +  // When no load,Vref=initialValue 
 +  Serial.print("initialValue: "); 
 +  Serial.print(voltage); 
 +  Serial.println("mV"); 
 + 
 +  // Calculate the corresponding current 
 +  float current = (voltage - Vref) * sensitivity; 
 + 
 +  // Print display current (mA) 
 +  Serial.print(current); 
 +  Serial.println("mA"); 
 + 
 +  Serial.print("\n"); 
 + 
 +  // Reset the sensorValue for the next reading 
 +  sensorValue = 0; 
 +  // Read it once per second 
 +  delay(1000); 
 +
 +</code> 
 + 
 +  * //Exemple à compléter (étude dans la fiche guide)// 
 + 
 +<code cpp acs714_V2.cpp>
 /*############################################################################## /*##############################################################################
- Connexions du module ACS714 à une carte Arduino Uno+ Connexions de l'ACS714 à une carte Arduino Uno
  * Vcc   -> 5V      # Alimentation du module  * Vcc   -> 5V      # Alimentation du module
  * GND   -> GND  * GND   -> GND
Ligne 93: Ligne 156:
  
 <pane id="tab-acs714pico_1"> <pane id="tab-acs714pico_1">
-A venir+<html><span style="color:red">A venir</span></html>
 </pane> </pane>
  
Ligne 245: Ligne 308:
 void loop() { void loop() {
   sensorValue = analogRead(analogInPin);                          // reads the sensor value and convert it   sensorValue = analogRead(analogInPin);                          // reads the sensor value and convert it
-  outputValue = ((float)(sensorValue - 338) * 5 / 0.11) / 1024;  // A calculer pour un ACS714+  outputValue = ((float)(sensorValue - 338) * 5 / 0.11) / 1024;  // A vérifier
  
   Serial.print("Current Sensor value= " );                        // print results   Serial.print("Current Sensor value= " );                        // print results
  • materiels/capteurs/intensite/intensite.1719241843.txt.gz
  • Dernière modification : 2024/06/24 17:10
  • de phil