Pigeon-Kicker
Published © LGPL

Mega Bread - Hello World

The Mega-Bread project is alive and well!

BeginnerWork in progress5,623
Mega Bread - Hello World

Things used in this project

Hardware components

Solderless Breadboard Full Size
Solderless Breadboard Full Size
×2
Standard LCD - 16x2 White on Blue
Adafruit Standard LCD - 16x2 White on Blue
×1
Resistor 100k ohm
Resistor 100k ohm
×1
Arduino Mega 2560
Arduino Mega 2560
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

MEGA BREAD - LCD

LCD display

Code

MEGA BREAD - LCD

Arduino
:LCD Display
/* MEGA BREAD - LCD - Final
 *  Created by Pigeon Kicker and Mini Pigeon
 *  LCD code for 8 bit
*/

#include <LiquidCrystal.h>

// initialize the library with the numbers of the interface pins
LiquidCrystal lcd1(29,28,30,31,32,33); // Set up Left LCD in 8 bit mode

void setup() {
  lcd1.begin(16, 2);
  lcd1.clear();
  lcd1.setCursor(0, 0);
  lcd1.print("I AM MEGA BREAD.");
  lcd1.setCursor(0, 1);
  lcd1.print("  LCD A - Left  ");

}

void loop() {
 
    lcd1.clear();
    delay(1500);
    lcd1.setCursor(0, 0);
    lcd1.print("I AM MEGA BREAD.");
    lcd1.setCursor(0, 1);
    lcd1.print("  LCD 1 - Right ");
        delay(3000);
  }

Credits

Pigeon-Kicker
19 projects • 31 followers
Computer guru from the 80's, currently disabled veteran. Building this stuffs for my son to learn robotics.
Contact
Thanks to Mini Pigeon.

Comments

Please log in or sign up to comment.