Advertisement
RuiViana

Testa_LCD.ino

Jul 20th, 2018
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1.  
  2. #include <LiquidCrystal.h>                                                // Biblioteca LCD standard
  3. LiquidCrystal lcd(A0, A1, A2, A3, A4, A5);                                // Instancia e ports para conexao do LCD
  4. //----------------------------------------
  5. void setup()
  6. {
  7.   Serial.begin(9600);
  8.   lcd.begin(16, 2);                                                       // Inicialisa LCD
  9.   lcd.print("Testando LCD    ");                                          // Print
  10.   Serial.println("Testando Serial");                                      // Print
  11. }
  12. //----------------------------------------
  13. void loop()
  14. {
  15. ;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement