IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Arduino Discussion :

Besoin d'aide pour un programme.


Sujet :

Arduino

  1. #1
    Nouveau Candidat au Club
    Homme Profil pro
    Technicien maintenance
    Inscrit en
    Octobre 2023
    Messages
    1
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Pas de Calais (Nord Pas de Calais)

    Informations professionnelles :
    Activité : Technicien maintenance

    Informations forums :
    Inscription : Octobre 2023
    Messages : 1
    Points : 1
    Points
    1
    Par défaut Besoin d'aide pour un programme.
    Bonjour,
    Je suis novice en programmation, et j'ai des erreurs que je n'arrive pas a résoudre.
    Le principe c'est un encodeur optique qui en fonction de sa position vient activer un relais qui actionnera un moteur, une lampe, etc....
    Mon programme fonctionne indépendamment le codeur vient bien actionner le relais, mais je n'arrive pas a afficher
    sur le L.C.D ce que le relais active.

    Voici les erreurs lorsque je vérifie.


    C:\Users\Julien\Documents\Arduino\L_C_D_RELAY_CODER\L_C_D_RELAY_CODER.ino:61:1: error: expected unqualified-id before 'if'
    if(encoderPosCount==1)
    ^~
    C:\Users\Julien\Documents\Arduino\L_C_D_RELAY_CODER\L_C_D_RELAY_CODER.ino:65:1: error: expected unqualified-id before '{' token
    {
    ^

    Et voici mon programme.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    #include <LiquidCrystal.h>
    LiquidCrystal lcd(12, 11, 5, 4, 3, 2); //pin du lcd
     
     
    int counter = 0;  //Variable du coder
    int aState;         //Variable du coder  
    int aLastState;   //Variable du coder 
     
    int relay1=22;   //Variable du relais
    int relay2=24;   //Variable du relais 
    int relay3=26;   //Variable du relais 
    int relay4=28;   //Variable du relais
    int relay5=30;   //Variable du relais
    int relay6=32;   //Variable du relais 
     
     
    #define outputA 6  
    #define outputB 7
     
    void setup() {
    pinMode (outputA,INPUT);
    pinMode (outputB,INPUT);
    pinMode(relay1,OUTPUT);
    pinMode(relay2,OUTPUT);
    pinMode(relay3,OUTPUT);
    pinMode(relay4,OUTPUT);
    pinMode(relay5,OUTPUT);
    pinMode(relay6,OUTPUT);
     
     
    Serial.begin (9600);
    lcd.begin(16,2);
     
    aLastState = digitalRead(outputA);
     
    }
     
    void loop() {
    aState = digitalRead(outputA); // Reads the "current" state of the outputA
    // If the previous and the current state of the outputA are different, that means a Pulse has occured
    if (aState != aLastState){
    // If the outputB state is different to the outputA state, that means the encoder is rotating clockwise
    if (digitalRead(outputB) != aState) {
    counter ++;
    lcd.clear();
    } else {
    counter --;
    lcd.clear();
    }
    Serial.print("Position: ");
    Serial.println(counter);
    lcd.setCursor(0, 0);
    lcd.print("Position: ");
    lcd.setCursor(10, 0);
    lcd.print(counter);
     
    }
    aLastState = aState; // Updates the previous state of the outputA with the current state 
    }
     
    if(encoderPosCount==1)
    {
    lcd.print("moteur avant");
    }
    {
      digitalWrite(relay1,HIGH);
      digitalWrite(relay2,LOW);
      digitalWrite(relay3,LOW);
      digitalWrite(relay4,LOW);
      digitalWrite(relay5,LOW);
      digitalWrite(relay6,LOW);}
     
     else if (encoderPosCount==2)
    {
    lcd.print("moteur arriere");
    }
    {
      digitalWrite(relay1,LOW);
      digitalWrite(relay2,HIGH);
      digitalWrite(relay3,LOW);
      digitalWrite(relay4,LOW);
      digitalWrite(relay5,LOW);
      digitalWrite(relay6,LOW);}
     
    else if (encoderPosCount==3)
    {
    lcd.print("lampe rouge");
    }
    {
      digitalWrite(relay1,LOW);
      digitalWrite(relay2,LOW);
      digitalWrite(relay3,HIGH);
      digitalWrite(relay4,LOW);
      digitalWrite(relay5,LOW);
      digitalWrite(relay6,LOW);}
     
     else if (encoderPosCount==4)
    {
    lcd.print("ventillateur");
    }
    {
      digitalWrite(relay1,LOW);
      digitalWrite(relay2,LOW);
      digitalWrite(relay3,LOW);
      digitalWrite(relay4,HIGH);
      digitalWrite(relay5,LOW);
      digitalWrite(relay6,LOW);}
     
    else if(encoderPosCount==5)
    {
    lcd.print("volet 1");
    }
    {
     digitalWrite(relay1,LOW);
      digitalWrite(relay2,LOW);
      digitalWrite(relay3,LOW);
      digitalWrite(relay4,LOW);
      digitalWrite(relay5,HIGH);
      digitalWrite(relay6,LOW);
    }
     
      else if(encoderPosCount==6)
    {
    lcd.print("volet 2");
    }
    {
      digitalWrite(relay1,LOW);
      digitalWrite(relay2,LOW);
      digitalWrite(relay3,LOW);
      digitalWrite(relay4,LOW);
      digitalWrite(relay5,LOW);
      digitalWrite(relay6,HIGH);
    }
     
    else
    {
      digitalWrite(relay1,LOW);
      digitalWrite(relay2,LOW);
      digitalWrite(relay3,LOW);
      digitalWrite(relay4,LOW);
      digitalWrite(relay5,LOW);
      digitalWrite(relay6,LOW);
    }
     
     
     
    }

  2. #2
    Rédacteur/Modérateur

    Avatar de Jerome Briot
    Homme Profil pro
    Freelance mécatronique - Conseil, conception et formation
    Inscrit en
    Novembre 2006
    Messages
    20 318
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Freelance mécatronique - Conseil, conception et formation

    Informations forums :
    Inscription : Novembre 2006
    Messages : 20 318
    Points : 52 958
    Points
    52 958
    Par défaut
    Il y a une accolade fermante en trop dans le code. Ce qui fait que le if de la ligne 61 se retrouve en dehors de toute fonction.

    À vue d’œil, je penche pour celle de la ligne 57.

  3. #3
    Membre expérimenté Avatar de edgarjacobs
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Mai 2011
    Messages
    679
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 64
    Localisation : Belgique

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Mai 2011
    Messages : 679
    Points : 1 722
    Points
    1 722
    Par défaut
    Si tu indentais convenablement ton code, tu verrais que le if de la ligne 61 se trouve hors de la fonction loop(), et tout ce qui suit fatalement aussi. Maintenant, est-ce l'accolade de de la ligne 57 ou 59 qui doit être supprimée, à toi de voir.

Discussions similaires

  1. Besoin d'aide pour un programme de PGCD
    Par Shapsed dans le forum C
    Réponses: 4
    Dernier message: 23/09/2007, 16h06
  2. besoin d'aide pour mon programme
    Par pouyoudu17 dans le forum Débuter avec Java
    Réponses: 11
    Dernier message: 28/05/2007, 23h18
  3. Réponses: 4
    Dernier message: 24/04/2007, 11h18
  4. [débutant] besoin d'aide pour un programme
    Par acdchornet dans le forum C++
    Réponses: 12
    Dernier message: 26/10/2006, 23h32
  5. [Free Pascal] Besoin d'aide pour un programme
    Par ricomix dans le forum Free Pascal
    Réponses: 3
    Dernier message: 04/06/2006, 18h01

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo