0% found this document useful (0 votes)
31 views17 pages

Wireless Notice Board Using Arduino

The document outlines the development of a wireless notice board using an Arduino, which allows messages to be displayed via a Bluetooth connection from a smartphone. It includes details on the components, circuit diagrams, programming, advantages, disadvantages, and potential applications in various public settings. The total estimated cost for the project is 1253 RS.

Uploaded by

mezoicr7
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views17 pages

Wireless Notice Board Using Arduino

The document outlines the development of a wireless notice board using an Arduino, which allows messages to be displayed via a Bluetooth connection from a smartphone. It includes details on the components, circuit diagrams, programming, advantages, disadvantages, and potential applications in various public settings. The total estimated cost for the project is 1253 RS.

Uploaded by

mezoicr7
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 17

WIRELESS NOTICE

BOARD USING ARDUINO


INDEX
➢ INTRODUCTION
➢ BLOCK DIAGRAM
➢ CIRCUIT DIAGRAM
➢ PROGRAMMING
➢ ARCHITHECTURE OF IC & COMPONENTS
➢ WORKING
➢ ESTIMATION OF COST
➢ ADVANTAGE
➢ DISADVANTAGE
➢ APPLICATION
➢ CONCLUSION
INTRODUCTION

❑ Right gadget & Right solutions with the digital tools


❑ In this project we are doing the “WIRELESS NOYICE BOARD USING ARDUINO BOARD”
❑ Displays messages according with the input from user . Even it can control by a mobile phone
❑ This can pass any message almost immediately without any delay just by sending a message
❑ We can change the message quickly and easier
❑ Wireless notice board can become the most uniform and primary communication apparatus in
any university , school or public place like bus station , railway station and parks
❑ The main objective of this project is to develop a wireless notice board that display messages
send from the digital tools
BLOCK DIAGRAM

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

➢ Arduino uno is a microcontroller based open source electronic prototype board


which can be programmed with as easy-to-use arduino uno
➢ The board has 14 digital input pins ,6 analog input pins and it is programable with
the arduino IDE (Integrated development Environment) via type B USB cable
➢ It can be powered by the USB cable or by an external 9-volt battery , though it
accepts voltage between 7 and 20 volts
ARCHITHECTURE OF IC & COMPONENTS

➢ Atmega328 Microcontroller : it is a single chip Microcontroller of the ATmel family


. The processor code inside it is of 8-bit . It combines Memory (SRAM , EEPROM
and Flash) , Analog to Digital Converter ,SPI serial port , input lines ,register ,timer
,external and internal interrupts , and Osillator
➢ ICSP Pins : The In-circuit serial programming pin allows the users to program using
the firmware of the Arduino board
➢ Power LED Indicator : The ON status of LED shows the power is activated .When
the power is off ,the LED will not light up.
➢ Digital Input Pin : The digital pins have the value HIGH or LOW .The pins numbered
from D 0 to D 13 are digital pins.
➢ TX and RX LED ‘s : the successful flow of data is represented by the lighting of
those LED’s
ARCHITHECTURE OF IC & COMPONENTS

➢ 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

❑TOTAL COST = 1253 RS


ADVANTAGES

➢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 ;

“WIRELESS NOTICE BOARD USING ARDUINO “

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy