Download as ppt, pdf, or txt
Download as ppt, pdf, or txt
You are on page 1of 10

A Presentation on

Wireless LCD Notice Board


Presented By: Chaursiya Vijay
Enrollment No: 180140111016
Subject: Summer Internship-3170001
Branch: Electronics And Communication(Sem-7)
Guided By: Prof. Devendra Patel

GOVERNMENT ENGINEERING COLLEGE


BHARUCH
30/04/22
TABLE OF CONTENTS
2

 INTRODUCTION
 BLOCK DIAGRAM
 IMPLEMENTATION
 PROGRAMMING OF ARDUINO UNO
 SIMULATION
 ADVANTAGES & APPLICATION
 CONCLUSION

30/04/22
3 INTRODUCTION
 Notice boards are one of the widely used ones ranging from primary schools to major
organizations to convey messages at large.
 Small innovative steps in making use of technology for regular purposes would have
an adverse effect on the environment issues which we are presently concerned about.
 The main aim of this project is to design a SMS driven automatic display Board which
can replace the currently used programmable electronic display and conventional
notice boards.
 The major Components required are Arduino UNO, HC-05 Bluetooth module, LCD
TV display, RCA Cable, Resistors and Jumper Wires.

30/04/22
4
BLOCK DIAGRAM

 The BLUETOOTH module receives a message from the authorized mobile phone
using an app and the message is extracted by the microcontroller from the
BLUETOOTH module and is displayed on the LCD TV display.
30/04/22
5 IMPLEMENTATION

30/04/22
6 IMPLEMENTATION

 The LCD TV is connected with RCA cable and at other end of RCA cable the 2
resistors of 1k and 2k are set up as voltage divider at analog video wire (Red wire)
and is connected to Arduino pin 7 and 9 and ground the other wire (Black wire).
 Now comes the Bluetooth module and which will have its Rx, Tx pin connected with
Tx, Rx pin of Arduino respectively. Battery or power adapter of 5-6V is required. So,
data sent to the Bluetooth module using mobile or any Bluetooth enabled devices
through Bluetooth terminal apps are fetched to the Arduino and in return displayed on
the LCD TV.

30/04/22
7 PROGRAMMING OF ARDUINO
1. #include <TVout.h>
11. void loop() {
2. #include <fontALL.h>
12. if(Serial.available()>0)
3. #include "schematic.h"
13. {
4. #include "TVOlogo.h"
14. char str= Serial.read();
5. TVout TV;
15. Serial.write(str);
6. void setup() {
16. Serial.println();
7. Serial.begin(9600);
17. TV.write(str);
8. TV.begin(PAL,120,96);
18. }
9. TV.select_font(font6x8);
19. }
10. }

30/04/22
8 SIMULATION

 After uploading the program to the Arduino, Run the Circuit and give input to the LCD TV Notice
board through the Terminal Window App.
 Android application preferred for the project is E&E Arduino Automation.
30/04/22
9 ADVANTAGES & APPLICATIONS
ADVANTAGES OF WIRELESS LCD NOTICE BOARD 
The electronic notice board is wireless and no need for wires for displaying the
information on the LCD TV display.
It is very easy to operate and consumes less power
The circuit of the wireless notice board is portable.
 
APPLICATIONS OF WIRELESS LCD NOTICE BOARD 
The applications of wireless notice board mainly include public places like bus stands,
railway stations, airports, shopping malls, and parks to display the information wirelessly.
This project is also used in organizations, schools, and colleges.

30/04/22
10 CONCLUSION

 As the technology is advancing every day the display board systems are moving from
Normal hand writing display to digital display. Further to Wireless display units.
wireless notice board system with WIFI MODULE and BLUETOOTH connected to
it, which displays the desired message of the user through an SMS in a most
populated or crowded places.

30/04/22

You might also like