Je dois expliquer le fonctionnement du refrigerateur en effet, mais en utilisant les differents modules qui sont présents dans cette modélisation
- Robot Maker
- → Affichage d'un profil : Messages: Ismael93
Statistiques de la communauté
- Groupe Membres
- Messages 14
- Visites sur le profil 4 390
- Titre Nouveau membre
- Âge Âge inconnu
- Date de naissance Anniversaire inconnu
-
Gender
Non spécifié
Messages que j'ai postés
Dans le sujet : Simulation Matlab
03 mai 2019 - 04:50
Dans le sujet : Arduino
23 avril 2018 - 07:15
Je n'ai aucun moyen de le tester car je suis en vacances :/
Dans le sujet : Arduino
23 avril 2018 - 06:54
boolean etatBP = HIGH
;int pinBouton;
#include <LiquidCrystal.h>
LiquidCrystal monEcran(12,11,5,4,3,2);
const int bout1 = 8; //constante du pin bouton 1
;int pinBouton;
#include <LiquidCrystal.h>
LiquidCrystal monEcran(12,11,5,4,3,2);
const int bout1 = 8; //constante du pin bouton 1
void setup() {
// put your setup code here, to run once:
pinMode(pinBouton,INPUT_PULLUP);//BOUTON POUSSOIR
Serial.begin(9600);
}
// put your setup code here, to run once:
pinMode(pinBouton,INPUT_PULLUP);//BOUTON POUSSOIR
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
monEcran.begin(16,2); //on initialise la communication avec 16 colonnes et deux lignes
monEcran.clear(); // on efface l'écran
monEcran.print("Bonjour,"); // on écrit Bonjour
monEcran.setCursor(0,1); //on passe à la ligne suivante
monEcran.print("OPENCLASSROOMS"); // on finit d'écrire
boolean etatBouton = digitalRead(pinBouton);
if (pinBouton == HIGH);
Serial.print("Alerte! Ouverture des portes");
// put your main code here, to run repeatedly:
monEcran.begin(16,2); //on initialise la communication avec 16 colonnes et deux lignes
monEcran.clear(); // on efface l'écran
monEcran.print("Bonjour,"); // on écrit Bonjour
monEcran.setCursor(0,1); //on passe à la ligne suivante
monEcran.print("OPENCLASSROOMS"); // on finit d'écrire
boolean etatBouton = digitalRead(pinBouton);
if (pinBouton == HIGH);
Serial.print("Alerte! Ouverture des portes");
}
Et la esque c'est bon ?
Dans le sujet : Arduino
22 avril 2018 - 11:37
Il ne manque que sa ? Et comment cela s ecrit il?
Dans le sujet : Arduino
22 avril 2018 - 10:19
Vous pouvez me dire si il y a des erreurs dans mon programmes svp :
boolean etatBP = HIGH;
#include <LiquidCrystal.h>
LiquidCrystal monEcran(12,11,5,4,3,2);
const int bout1 = 8; //constante du pin bouton 1
void setup() {
// put your setup code here, to run once:
pinMode(1,HIGH);//BOUTON POUSSOIR
}
#include <LiquidCrystal.h>
LiquidCrystal monEcran(12,11,5,4,3,2);
const int bout1 = 8; //constante du pin bouton 1
void setup() {
// put your setup code here, to run once:
pinMode(1,HIGH);//BOUTON POUSSOIR
}
void loop() {
// put your main code here, to run repeatedly:
monEcran.begin(16,2);
monEcran.clear();
monEcran.setCursor(0,1);
monEcran.print("OPENCLASSROOMS");
if (etatBp = HIGH);
Serial.begin(9600);
Serial.print("Alerte! Ouverture des portes");
// put your main code here, to run repeatedly:
monEcran.begin(16,2);
monEcran.clear();
monEcran.setCursor(0,1);
monEcran.print("OPENCLASSROOMS");
if (etatBp = HIGH);
Serial.begin(9600);
Serial.print("Alerte! Ouverture des portes");
- Robot Maker
- → Affichage d'un profil : Messages: Ismael93
- Privacy Policy