Advertisement
Voha888

Счетчик включений (2018-09-24 3:45)

Sep 23rd, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.70 KB | None | 0 0
  1. /*
  2.   LiquidCrystal Library - display() and noDisplay()
  3.  
  4.  Demonstrates the use a 16x2 LCD display.  The LiquidCrystal
  5.  library works with all LCD displays that are compatible with the
  6.  Hitachi HD44780 driver. There are many of them out there, and you
  7.  can usually tell them by the 16-pin interface.
  8.  
  9.  This sketch prints "Hello World!" to the LCD and uses the
  10.  display() and noDisplay() functions to turn on and off
  11.  the display.
  12.  
  13.  The circuit:
  14.  * LCD RS pin to digital pin 12
  15.  * LCD Enable pin to digital pin 11
  16.  * LCD D4 pin to digital pin 5
  17.  * LCD D5 pin to digital pin 4
  18.  * LCD D6 pin to digital pin 3
  19.  * LCD D7 pin to digital pin 2
  20.  * LCD R/W pin to ground
  21.  * 10K resistor:
  22.  * ends to +5V and ground
  23.  * wiper to LCD VO pin (pin 3)
  24.  
  25.  Library originally added 18 Apr 2008
  26.  by David A. Mellis
  27.  library modified 5 Jul 2009
  28.  by Limor Fried (http://www.ladyada.net)
  29.  example added 9 Jul 2009
  30.  by Tom Igoe
  31.  modified 22 Nov 2010
  32.  by Tom Igoe
  33.  modified 7 Nov 2016
  34.  by Arturo Guadalupi
  35.  
  36.  This example code is in the public domain.
  37.  
  38.  http://www.arduino.cc/en/Tutorial/LiquidCrystalDisplay
  39.  
  40. */
  41.  
  42. // include the library code:
  43. #include <LiquidCrystal.h>
  44.  
  45. // initialize the library by associating any needed LCD interface pin
  46. // with the arduino pin number it is connected to
  47. const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
  48. LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
  49.  
  50. void setup() {
  51.   // set up the LCD's number of columns and rows:
  52.   lcd.begin(16, 2);
  53.   // Print a message to the LCD.
  54.   lcd.print("hello, world! qwert  yuiopasdfghjklzxcvbnm");
  55. }
  56.  
  57. void loop() {
  58.   // Turn off the display:
  59.   lcd.noDisplay();
  60.   delay(500);
  61.   // Turn on the display:
  62.   lcd.display();
  63.   delay(500);
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement