Page 1 sur 1

Programmation et Simulation LCD avec Arduino uno

Posté : ven. nov. 03, 2017 12:15 am
par Robot Technique
Programmation et Simulation LCD avec Arduino uno
voila un exemple de programme avec une simulation sur isis porteur
programme arduino :

Code : Tout sélectionner

// include the library code:
#include <LiquidCrystal.h>

// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);

void setup() {
  // set up the LCD's number of columns and rows:
  lcd.begin(16, 2);
  // Print a message to the LCD.
  lcd.print("Notre forum www.techniarabia.com");
}

void loop() {
  // set the cursor to column 0, line 1
  // (note: line 1 is the second row, since counting begins with 0):
  lcd.setCursor(0, 1);
  // print the number of seconds since reset:
  lcd.print(millis() / 1000);
}
mini_projet.JPG
On aimerai bien comprendre comment fonctionne ce programme par ces question suivantes :
quel est le fonctionnement et caractéristique du arduino uno ?
quel est le programme utilisé sur le arduino uno ?
comprendre le fonctionnement du programme arduino uno ?
qu'est ce que c'est un afficheur LCD ?
quel est le principe de fonctionnement du LCD ?
merci d'ajouté d'autre question ou réponses sur ce sujet :geek:
isistechni.JPG