Engineers Garage

  • Projects and Tutorials
    • Electronic Projects
      • 8051
      • Arduino
      • ARM
      • AVR
      • PIC
      • Raspberry pi
      • STM32
    • Tutorials
    • Circuit Design
    • Project Videos
    • Components
  • Articles
    • Tech Articles
    • Insight
    • Invention Stories
    • How to
    • What Is
  • News
    • Electronic Products News
    • DIY Reviews
    • Guest Post
  • Forums
    • EDABoard.com
    • Electro-Tech-Online
    • EG Forum Archive
  • Digi-Key Store
    • Cables, Wires
    • Connectors, Interconnect
    • Discrete
    • Electromechanical
    • Embedded Computers
    • Enclosures, Hardware, Office
    • Integrated Circuits (ICs)
    • Isolators
    • LED/Optoelectronics
    • Passive
    • Power, Circuit Protection
    • Programmers
    • RF, Wireless
    • Semiconductors
    • Sensors, Transducers
    • Test Products
    • Tools
  • EE Resources
    • DesignFast
    • LEAP Awards
    • Oscilloscope Product Finder
    • White Papers
    • Webinars
  • EE Learning Center
    • Design Guides
      • WiFi & the IOT Design Guide
      • Microcontrollers Design Guide
      • State of the Art Inductors Design Guide
  • Women in Engineering

Wireless Notice Board: Basic Tutorial

By Shivam Chudasma

 

Presently almost all electronic notice boards are designed using wired system.One of the drawbacks of the design is the system is inflexible in term of placement. The commonnotice board cannot be placed anywhere because of the messy wire. The aim of this project is to develop a wireless notice board that will be used atthe faculty in order to display latest information.             

This wireless notice board project mainly focuses on transmission of textual data through air interface by the use of GSM through asynchronous serial communication. The data will be processed by the microcontroller on both ends. The data will be displayed on LCD only after entering unique pass key.
Actually what happens is, sending SMS through phone has become very popular and if we can use this SMS to control devices and in displaying data. It is possible to receive or decode the SMS globally by using GSM, by the any part of world we can control and display data on LCD board.
In this project we not only send the data but send the data with pass code also. Which enables us to prevent the unauthorized use of LCD display board and only the person who have pass code can have access to LCD board .
Basic Block Diagram:

Block Diagram of 8051 Microcontroller based Wireless Notice Board

Fig. 1: Block Diagram of 8051 Microcontroller based Wireless Notice Board

The block diagram of the project is divided into two parts
      1.      GSM Module
      2.      Controller Module
Main Module

The Main Module consists of

      1.      8051 Microcontroller
      2.      MAX232 Circuit
      3.      EEPROM
      4.      Microsoft Hyperterminal
Reading SMS Using AT Commands
To enable a computer / PC to read SMS messages from a message storage area, the GSM/GPRS modem or mobile phone has to support either of the AT commands
+CMGR (command name in text: Read Messages),
+CMGL (command name in text: List Messages),
+CNMI (command name in text: New Message Indication).
 The +CMGR AT command is used to read an SMS message at a certain location of the message storage area, while the +CMGL AT command is used to read SMS messages that have a certain status from the message storage area. The status can be “received unread”, “received read”, “stored unsent”, “stored sent”, etc.
 The +CMGL AT command also allows you to retrieve all SMS messages stored in the message storage area.
Following is an example for illustrating the +CMGR, +CMGL and +CNMI.
      1.      Suppose you want to use your computer / PC to read a text message from the message storage area and you know the index at which the SMS text message is located. In this case, you should use the +CMGR AT command. Here is the command line to be typed (assume the SMS text message is stored at index 3)
AT+CMGR=3
The GSM/GPRS modem or mobile phone should return something like this:
+CMGR: “REC READ”,”+85291234567″,,”07/02/18,00:12:05+32″
Hello, welcome to our SMS tutorial.
OK

 Interfacing and Circuit Images

     2.      Suppose you are now in another situation. You want to use your computer / PC to retrieve all inbound SMS messages that have not been read before. In this case, you should use the +CMGL AT command. In SMS text mode, the command line to be used should be:
AT+CMGL=”REC UNREAD”
The GSM/GPRS modem or mobile phone should return something like this:
+CMGL: 1,”REC UNREAD”,”+85291234567″,”07/02/18, 00:05:10+32″
Reading text messages is easy.
+CMGL: 2,”REC UNREAD”,”+85291234567″,”07/02/18, 00:07:22+32″
A simple demo of SMS text messaging.
OK
The +CMGL AT command can also be used to read all SMS messages stored in the message storage area. To do so in SMS text mode, the command line should be:
AT+CMGL=”ALL”. This time the response of the GSM/GPRS modem or mobile phone should be something like this:
+CMGL: 1,”REC READ”,”+85291234567″,,”07/02/18,00:05:10+32″
Reading text messages is easy.
+CMGL: 2,”REC READ”,”+85291234567″,,”07/02/18,00:07:22+32″
A simple demo of SMS text messaging.
+CMGL: 3,”REC READ”,”+85291234567″,,”07/02/18,00:12:05+32″
Hello, welcome to our SMS tutorial.
      3.      Suppose you are now in another situation. You want to use your computer / PC to get automatically notified with new inbound SMS messages that have been received. In this case, you should use the +CNMI AT command. In SMS text mode, the command line to be used should be:
AT+CNMI=2,2,2,0,0
When a new message is received then
+CMT: “+919998112112”,,”12/03/12,11:17:50:13+22”
Welcome to BVM College
Table : AT-Command Set Overview

Command

Description

AT

Check if serial interface and GSM modem is working.

ATE0

Turn echo off, less traffic on serial line.

AT+CNMI

Display of new incoming SMS.

AT+CPMS

Selection of SMS memory.

AT+CMGF

SMS string format, how they are compressed.

AT+CMGR

Read new message from a given memory location.

AT+CMGS

Send message to a given recipient.

AT+CMGD

Delete message.
 

 

Flow Diagram

Flow Chart of C Code for 8051 Microcontroller based Wireless Notice Board

Fig. 2: Flow Chart of C Code for 8051 Microcontroller based Wireless Notice Board

 

Images of Circuit and its major blocks:

Typical Image of GSM300 Module

Fig. 3: Typical Image of GSM300 Module

 

Typical Image of Graphic LCD

Fig. 4: Typical Image of Graphic LCD

 

Prototype of 8051 Microcontroller based Wireless Notice Board

Fig. 5: Prototype of 8051 Microcontroller based Wireless Notice Board

Circuit Diagrams

Circuit-Diagram-8051-Microcontroller-Based-Wireless-Notice-Board


Filed Under: Electronic Projects
Tagged With: notice board, wireless
 

Questions related to this article?
👉Ask and discuss on Electro-Tech-Online.com and EDAboard.com forums.



Tell Us What You Think!! Cancel reply

You must be logged in to post a comment.

HAVE A QUESTION?

Have a technical question about an article or other engineering questions? Check out our engineering forums EDABoard.com and Electro-Tech-Online.com where you can get those questions asked and answered by your peers!


Featured Tutorials

  • PS2 Keyboard To Store Text In SD Card Using Arduino Circuit Setup On Breadboard
    How To Use PS2 Keyboard To Store Text In SD Card Using Arduino- (Part 42/49)
  • Wireless Path Tracking System Using Mouse, XBee And Arduino Circuit Setup On Breadboard
    How To Make A Wireless Path Tracking System Using Mouse, XBee And Arduino- (Part 43/49)
  • How to Make a Wireless Keyboard Using Xbee with Arduino- (Part 44/49)
  • Making Phone Call From GSM Module Using Arduino Circuit Setup On Breadboard
    How to Make Phonecall From GSM Module Using Arduino- (Part 45/49)
  • How to Make a Call using Keyboard, GSM Module and Arduino
    How To Make A Call Using Keyboard, GSM Module And Arduino- (Part 46/49)
  • Receiving SMS Using GSM Module With Arduino Prototype
    How to Receive SMS Using GSM Module with Arduino- (Part 47/49)

Stay Up To Date

Newsletter Signup

Sign up and receive our weekly newsletter for latest Tech articles, Electronics Projects, Tutorial series and other insightful tech content.

EE Training Center Classrooms

EE Classrooms

Recent Articles

  • Renesas delivers intelligent sensor solutions for IoT applications
  • Microchip Technology releases AVR-IoT Cellular Mini Development Board
  • Qualcomm acquires Cellwize to accelerate 5G adoption and spur infrastructure innovation
  • MediaTek’s chipset offers high-performance option for 5G smartphones
  • Nexperia’s new level translators support legacy and future mobile SIM cards

Most Popular

5G 555 timer circuit 8051 ai Arduino atmega16 automotive avr bluetooth dc motor display Electronic Part Electronic Parts Fujitsu ic infineontechnologies integratedcircuit Intel IoT ir lcd led maximintegratedproducts microchip microchiptechnology Microchip Technology microcontroller microcontrollers mosfet motor powermanagement Raspberry Pi remote renesaselectronics renesaselectronicscorporation Research samsung semiconductor sensor software STMicroelectronics switch Technology vishayintertechnology wireless

RSS EDABOARD.com Discussions

  • ADS Cascode Power Amplifier Loadpull Problem
  • lna+mixer noise figure problem
  • Thermal pad
  • DC DC converter output voltage rise time
  • building lm2596 dc dc using Arduino uno

RSS Electro-Tech-Online.com Discussions

  • Where is the fuse ?
  • 500+V power supply from 9V battery using ZVS
  • Control Bare LCD With ATmega328p
  • undefined reference header file in proteus
  • Engine compression high voltage ignition voltage?
Engineers Garage
  • Analog IC TIps
  • Connector Tips
  • DesignFast
  • EDABoard Forums
  • EE World Online
  • Electro-Tech-Online Forums
  • Microcontroller Tips
  • Power Electronic Tips
  • Sensor Tips
  • Test and Measurement Tips
  • 5G Technology World
  • About Us
  • Contact Us
  • Advertise

Copyright © 2022 WTWH Media LLC. All Rights Reserved. The material on this site may not be reproduced, distributed, transmitted, cached or otherwise used, except with the prior written permission of WTWH Media
Privacy Policy | Advertising | About Us

Search Engineers Garage

  • Projects and Tutorials
    • Electronic Projects
      • 8051
      • Arduino
      • ARM
      • AVR
      • PIC
      • Raspberry pi
      • STM32
    • Tutorials
    • Circuit Design
    • Project Videos
    • Components
  • Articles
    • Tech Articles
    • Insight
    • Invention Stories
    • How to
    • What Is
  • News
    • Electronic Products News
    • DIY Reviews
    • Guest Post
  • Forums
    • EDABoard.com
    • Electro-Tech-Online
    • EG Forum Archive
  • Digi-Key Store
    • Cables, Wires
    • Connectors, Interconnect
    • Discrete
    • Electromechanical
    • Embedded Computers
    • Enclosures, Hardware, Office
    • Integrated Circuits (ICs)
    • Isolators
    • LED/Optoelectronics
    • Passive
    • Power, Circuit Protection
    • Programmers
    • RF, Wireless
    • Semiconductors
    • Sensors, Transducers
    • Test Products
    • Tools
  • EE Resources
    • DesignFast
    • LEAP Awards
    • Oscilloscope Product Finder
    • White Papers
    • Webinars
  • EE Learning Center
    • Design Guides
      • WiFi & the IOT Design Guide
      • Microcontrollers Design Guide
      • State of the Art Inductors Design Guide
  • Women in Engineering