Add Favorite Set Homepage
Position:Home >> News >> Electron

Products Category

Products Tags

Fmuser Sites

Wireless Electronic Notice Board using GSM,Celsius Scale Thermometer using AT89C51 and LM35,Password Based Door Lock System using 8051 Microcontroller,DTMF based Load Control System using 8051,Simple Fan Regulator Circuit,230v LED Driver Circuit,Temperatu

Date:2021/10/18 21:55:58 Hits:
We know the importance of notice boards in public places like railway stations, bus stations and airports. But changing notices day-to-day is a difficult task. This article explains you how to design a Wireless Electronic Notice Board using GSM technology. The project displays the data on LCD whatever we sent from the mobile.There are many wireless communication technologies like Bluetooth, RF Communication, ZigBee, etc. but GSM Technology based communication allows long range, reliable and secure communication.The Wireless Electronic Notice Board using GSM project, as the name suggests, is built around GSM Technology as mobile phones (that communicate through GSM Technology) have become very abundant, cheap and easy to use.NOTE: We need a Mobile Phone to send the Message (Notice) and a GSM MODEM to receive that notice.Related Post: RFID Based Attendance System using MicrocontrollerOutline Construction and Output Video Circuit PrincipleCircuit Diagram of Wireless Electronic Notice Board using GSMComponents for Wireless Electronic Notice Board using GSM Hardware RequirementsSoftware RequirementsCircuit DesignCircuit AlgorithmCircuit Simulation VideoHow to Operate Wireless Electronic Notice Board using GSM?Circuit AdvantagesCircuit ApplicationsCircuit LimitationsDownload Project CodeConstruction and Output Video Circuit PrincipleWhen we send the message from the mobile, the GSM Modem which is connected to the Microcontroller and the display unit, will receive the message. Now, the microcontroller reads the message from the GSM Modem and displays it on LCD.When user sends the message from the mobile, GSM modem sends the below command serially to indicate that a new message is received.+CMTI: “SM”,3 In the above command, number “3” indicates the location of the new message i.e. it is the third message in the inbox. Now you need to read this unread message to display on LCD. The command to read the message from GSM modem isAT+CMGR=3Here, the number “3” indicates the location of the message to be read. After giving this command to the GSM module, it will send the below command serially.+CMGR: “REC UNREAD”,”MD-WAYSMS”,,”13/05/20,15:31:48+34″Electronics HubIn the above command, “REC UNREAD” indicates that message is unread message, “MD-WAYSMS” indicates sender mobile number or name, 13/05/20 indicates the date, 15:31 indicates time and Electronics hub is the content of the message.From the above command we need to extract message (Electronics Hub) sent by the user to display it on the notice board (LCD).Circuit Diagram of Wireless Electronic Notice Board using GSMComponents for Wireless Electronic Notice Board using GSM Hardware Requirements8051 Microcontroller (AT89C51)8051 Programming board (Programmer with cable)8051 Development BoardSIM 900A GSM MODEM (GSM Module)SIM Card (for inserting in GSM Modem)A mobile phone with a SIM Card already inserted16 x 2 LCD Display10 KΩ PotentiometerConnecting wiresPower SupplyIf 8051 Development Board is not available, then you need the following components2 x 10 KΩ Resistors (1/4 Watt)2 x 33pF Ceramic Disc type CapacitorsPush Button10µF / 16V Capacitor (Polarized)0592 MHz Quartz CrystalSoftware RequirementsKeil µVision IDE (for writing the program and generating .hex file)Willar Software (for burning the .hex file in to the microcontroller)Proteus (for circuit diagram and simulation)Buy Step by step Guide along with Code:Wireless Electronic Notice Board using GSM »Circuit DesignThe above circuit of the Wireless Electronic Notice Board using GSM consists of 8051 Microcontroller, GSM Module (Modem) and 16 x 2 LCD. Here, the 16 x 2 LCD is used to display message and is used in 8 – bit mode. Means, we need 8 data lines to display the data. The data lines of the LCD Display are connected to PORT1 Pins. The control pins RS, RW, and E pins are connected to P3.6, GND and P3.7 pins respectively.The GSM Module is directly connected to the microcontroller as the logic levels of both the GSM Modem and Microcontroller are already matched in the GSM Module Board. If there is no level converter on the board, then we need to use MAX232 level converter as a mediator between Controller and GSM to transfer the data. To know more details about max232 refer Max232 DatasheetIn order to communicate with the GSM Modem, we need to send some AT commands using serial communication (UART protocol). Here, GSM SIM 900A module is used. This module requires 9600 baud rate.To know more details about GSM go through the article GSM Interfacing with 8051 MicrocontrollerCircuit AlgorithmInitialize the LCD and UART protocolCheck for the command +CMTI: “SM”,3 (Location number) to know whether the new message is received or not.If you receive the command, then store message location number.Now read that particular location and extract the body of the message.Display the message on LCD.Use below code to display message on LCD wirelessly using GSMwhile (rx_data() ! = 0x0d); while (rx_data() ! = 0x0a); if (rx_data() == ‘+’) { if (rx_data() == ‘C’) { if (rx_data() == ‘M’) { if (rx_data() == ‘T’) { if(rx_data()==’I’) { while (rx_data() != ‘,’); a = rx_data (); delay_ms (10); tx_string (“at”); tx_data (0x0d); tx_data (0x0a); tx_string (“at + cmgf =1”); tx_data (0x0d); tx_data (0x0a); tx_string (“at + cmgr =”); tx_data (a); tx_data (0x0d); tx_data (0x0a); while (rx_data() ! = 0x0a); while (rx_data() != 0x0a); while (rx_data() ! = 0x0a); for (i=0; i<15; i++) { read [i]= rx_data(); } lcd_stringxy(1,0,read); delay_ms (5000); } } } } }Circuit Simulation VideoHow to Operate Wireless Electronic Notice Board using GSM?Write the program to the wireless electronic  notice board using Keil softwareNow burn the program to the microcontroller with the help of hardware programmer and Willar Software.Give the connections as per the circuit diagram.Use power supply circuit to provide 5V DC to the microcontrollerInsert the SIM (Subscriber Identity Module) to the GSM module. Now switch on the supplySend SMS to the GSM module using other mobileNow you can see the same message on LCD.Circuit AdvantagesNo need of any complex wires to display the message on LCD as it is wireless.Consumes less power and easy to operate.The circuit is portable.Circuit ApplicationsUsed in bus stations, railway stations, parks, etc. to display the messages wirelesslyThis Project can also be used in colleges and organizations.Circuit LimitationsDisplay unit must have the network to receive the message wirelesslyAs there is no password any one can send the message to display.Download Project Code Related Posts:Interfacing HC-05 Bluetooth with STM32F103C8T6 |…A Beginner's Tutorial on ESP32 Bluetooth | Learn…Wireless Communication: Introduction, Types and ApplicationsZigbee v/s BluetoothBasics of Wireless Sensor Networks (WSN) |…Electronics of Smart Cards

Leave a message 

Name *
Email *
Phone
Address
Code See the verification code? Click refresh!
Message
 

Message List

Comments Loading...
Home| About Us| Products| News| Download| Support| Feedback| Contact Us| Service

Contact: Zoey Zhang    Web: www.fmuser.net

Whatsapp/Wechat: +86 183 1924 4009

Skype: tomleequan     Email: [email protected] 

Facebook: FMUSERBROADCAST     Youtube: FMUSER ZOEY

Address in English: Room305, HuiLanGe, No.273 HuangPu Road West, TianHe District., GuangZhou, China, 510620    Address in Chinese: 广州市天河区黄埔大道西273号惠兰阁305(3E)