Page 306 - เอกสารประกอบการสอนวิชาไมโครคอนโทรลเลอร์เบื้องต้น
P. 306

เอกสารประกอบการสอนวิชาArduinoเบื้องต้น    34



               Code


               /*

                  http://www.arduino.cc/en/Tutorial/LiquidCrystalBlink

                */
               // include the library code:

               #include <LiquidCrystal.h>
               // initialize the library with the numbers of the interface pins

               LiquidCrystal lcd(12, 11, 5, 4, 3, 2);


               void setup() {

                 // set up the LCD's number of columns and rows:

                 lcd.begin(16, 2);
                 // Print a message to the LCD.

                 lcd.print("hello, world!");
               }



               void loop() {
                 // Turn off the blinking cursor:

                 lcd.noBlink();
                 delay(3000);

                 // Turn on the blinking cursor:

                 lcd.blink();
                 delay(3000);

               }

                ผลการทดลอง

               ...........................................................................................................................................................................

               ...........................................................................................................................................................................
               ...........................................................................................................................................................................

               ...........................................................................................................................................................................

               ...........................................................................................................................................................................
               .........................................................................................................................................................................





               หน่วยที่ 6  การแสดงผลด้วยจอ LCD ของ Arduino                                                        เรียบเรียงโดยครูทันพงษ์  ภู่รักษ์
   301   302   303   304   305   306   307   308   309   310   311