Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <LiquidCrystal595.h>//biblioteca LCD com 74HC595
  2. LiquidCrystal595 lcd (7,8,9);//porta de saida com 74HC595
  3.  
  4. void setup(){
  5. lcd.begin (16,2);//modelo do LCD
  6. }
  7.  
  8. void loop(){
  9.  
  10. lcd.setCursor (0,0);//posicao cursor
  11. lcd.print ("Teste");//imprimi no lcd
  12. delay (6000); // Espera 3 segundos
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement