pranavmadhavaram
Published © GPL3+

pager using arduino

It can receive messages sent by android device

IntermediateFull instructions provided455
pager using arduino

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
HC-05 Bluetooth Module
HC-05 Bluetooth Module
×1
Alphanumeric LCD, 16 x 2
Alphanumeric LCD, 16 x 2
×1
Rotary potentiometer (generic)
Rotary potentiometer (generic)
×1

Story

Read more

Custom parts and enclosures

pushpa_DqbzD7vSXD.ino

Schematics

arduino_website_fCn2u4ViNw.png

Code

pushpa

C/C++
#include <LiquidCrystal.h>
LiquidCrystal lcd(2,3,4,5,6,7);
void setup() {
  // put your setup code here, to run once:
 lcd.begin(16,2);
}

void loop() 
  // put your main code here, to run repeatedly:
 { 
  if(Serial.available()>0)
  {
char data=Serial.read();
lcd.print(data);
}}

Credits

pranavmadhavaram
16 projects • 1 follower

Comments