Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <LiquidCrystal.h> //Inclui a biblioteca do LCD
- LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
- unsigned int amostra,Somatorio, mediaTotal;
- unsigned int Medidas = 5;
- //-------------------------------------------------------
- void setup()
- {
- Serial.begin(9600);
- lcd.begin(16, 2);
- lcd.setCursor(0, 0);
- lcd.print(" FAM-LTDA ");
- lcd.setCursor(0, 1);
- lcd.print("AGUARDANDO");
- }
- //----------------------------------------------------
- void loop()
- {
- for (int i = 0 ; i < Medidas ; i++)
- {
- amostra=analogRead (0);
- delay (10);
- mediaTotal = mediaTotal + amostra;
- // Serial.print(mediaTotal);
- // Serial.print(" ");
- }
- mediaTotal= (mediaTotal/Medidas);
- lcd.setCursor(14,1);
- lcd.print(mediaTotal);
- delay(1000);
- // Serial.println(mediaTotal);
- if (mediaTotal<=69)
- {
- lcd.setCursor(0,0);
- lcd.print(" ELETRODO ");
- lcd.setCursor(0,1);
- lcd.print("OK MUITO BOM! " );
- }
- if (mediaTotal>70)
- {
- lcd.setCursor(0,0);
- lcd.print(" ELETRODO ");
- lcd.setCursor(0,1);
- lcd.print(" OK + atencao! " );
- }
- if (mediaTotal>=105)
- {
- lcd.setCursor(0,0);
- lcd.print(" ELETRODO ");
- lcd.setCursor(0,1);
- lcd.print(" REPROVADO ");
- }
- mediaTotal = 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement