Wireless Notice Board Using Arduino
Wireless Notice Board Using Arduino
LCD
Power supply 16X2
ATMEGA
328
ARDUINO
BLUETOOTH BLUETHOOTH
CONTROLLER MODULE
(RECIVER)
CIRCUIT DIAGRAM
CIRCUIT DIAGRAM
• ARDUINO UNO ATMEGA 328, 16X2 LCD, BLUETOOTH MODULE AND A
SMARTPHONE
• POWER UP YJE ARDUINO BOARD WITH 12V 1.5A
• ARDUINO GIVES 5V TO THEOTHER COMPONENTS
• PROGRAME THE ARDUINO BOARD FIRST
• SMARTPHONE GIVES DATA TO BLUETHOOTH MODULE & THE BLUETOOTH
MODULE GIVES TO ARDUINO
• THE ARDUINO GIVES THE COLLECTED DATA TO THE LCD & THE LCD
DISPLAYS THE INPUT DATA
PROGRAM USED
void loop()
LiquidCrystal lcd (4, 5, 6, 7, 8, 9);
{
SoftwareSerial mySerial (2, 3); //(RX, TX);
val = mySerial.readString();
val.trim();
String val = "No Data";
Serial.println(val);
String oldval;
if(val != oldval)
String newval = "No Data";
{
int i = 0;
newval = val;
}
void setup()
lcd.clear();
{
lcd.setCursor(i, 0);
// put your setup code here, to run once:
lcd.print(newval);
lcd.begin(16,2);
i++;
mySerial.begin(9600);
if(i >= 15)
Serial.begin(9600);
{
lcd.setCursor(0, 0);
i = 0;
lcd.print("Wireless Notice");
}
lcd.setCursor(0, 1);
val = oldval;
lcd.print(" Board ");
}
delay(3000);
lcd.clear();
lcd.print("Welcome!");
}
ARCHITHECTURE OF IC & COMPONENTS
1. ARDUINO UNO
➢ AREF : The analog reference (AREF) pin is used to feed a reference voltage to the
Arduino UNO board from the external power supply .
➢ Reset Button : it is used to add a Reset Button to the connection
➢ USB : It allows the board to connect to the computer. It is essential for the
programming of the Arduino UNO board
➢ Crystal Oscillator : The crystal oscillator has a frequency of 16 MHz , which makes
the Arduino UNO a powerful Board
➢ Voltage Regulator : The voltage regulator converts the input voltage to 5V
➢ GND : The Ground pins acts as a pin with zero voltage.
➢ Vin :It is the input voltage.
➢ Analog Pins : The pin numbered from A 0 to A 5are analog pins. The function of
Analog pins is to read the analog sensor used in the connection. It can also act as
GPIO(General Purpose Input Output) pins.
ARCHITHECTURE OF IC & COMPONENTS
2. LCD 16x2
➢ In LCD 16x2 the term LCD stands fo Liquid Crystal Display that uses a plane
panel display technology used in screen of computer monitors TVs,
smartphone, tablets etc. Both the display like LCD & CRTs look same but
their operation is different. Instaead of electrons diffraction at a glass
display a liquid crystal display has a backlight that provides light to each
pixel that is arranged in a rectangular network.
➢ The operation voltage of this display range from 4.7V to 5.3V
ARCHITHECTURE OF IC & COMPONENTS
➢ HC-05 is a Bluetooth module which is designed for wireless
communication.
➢ Bluetooth serial modules allow all serial enabled devices to communicate
with each other using
➢ Bluetooth.
➢ VCC: Connect 5 V or 3.3 V to this Pin.
➢ GND: Ground Pin of module.
➢ TXD: Transmit Serial data (wirelessly received data by Bluetooth module
transmitted outserially on TXD pin)
➢ RXD: Receive data serially (received data will be transmitted wirelessly by
Bluetooth module).
➢ State: It tells whether module is connected or not
Cost
❑ARDUINO UNO = 600 RS
❑16X2 LCD = 120 RS
❑HC-05 (BLUETOOTH) = 270 RS
❑JUMPER WIRES = 63 RS
❑BREAD BOARD = 200 RS
➢Easy to use
➢Flexibility
➢Customizable
➢Wireless data transferring
➢Attractive
➢Easily access
DISADVANTAGES
➢Operating distance up to a maximum of 10 m
➢ External Power required for working
➢ Its effectiveness depends upon the reader
curiosity
APPLICATION
➢ PUBLIC TRANSPORTATION
➢ SCHOOLS,UNIVERSITIES
➢ SHOPS
➢ STREETS
➢ INDUSTRIES
➢ HOSPITAL
CONCLUSION
Here, We have come to the end of the project on the topic ;