Home
About Us
Achievement
Home
Raspberry-Pi Projects
_Raspberry Pi 4 Complete Guide
Arduino Project
_All Projects
Esp8266 Project
_All Projects
Esp32 Project
_Automation-with-feedback
Hand Gesture Controlled Robot Using RF Transmitter & Receiver
Just Do Electronics
June 04, 2022
Circuit Diagram :-
Transmitter :-
Reciver :-
Transmitter Code:-
//Prateek //www.prateeks.in #include
char *data; int SensorPin = 4; void setup() { vw_set_tx_pin(12); vw_setup(2000); Serial.begin(9600); pinMode(SensorPin, INPUT); } void loop() { int SensorValue = digitalRead(SensorPin); Serial.print("SensorPin Value: "); Serial.println(SensorValue); if (SensorValue == LOW) { data = "f"; vw_send((uint8_t *)data, strlen(data)); vw_wait_tx(); delay(500); Serial.println("Where Hemalat"); //https://www.youtube.com/c/JustDoElectronics/videos } else { data = "b"; vw_send((uint8_t *)data, strlen(data)); vw_wait_tx(); delay(500); Serial.println("you not where hemalat"); } }
Reciver Code :-
//Prateek //www.prateeks.in #include
#include
LiquidCrystal lcd(12, 11, 10, 9, 8, 7); #define red 14 #define yellow 16 #define buzzer 17 void setup() { lcd.begin(16, 2); lcd.setCursor(0, 0); lcd.print(" WelCome To "); lcd.setCursor(0, 1); lcd.print(" Our Project"); delay(3000); lcd.clear(); pinMode(red, OUTPUT); pinMode(yellow, OUTPUT); pinMode(buzzer, OUTPUT); vw_set_rx_pin(4); vw_setup(2000); vw_rx_start(); Serial.begin(9600); } void loop() { uint8_t buf[VW_MAX_MESSAGE_LEN]; uint8_t buflen = VW_MAX_MESSAGE_LEN; if (vw_get_message(buf, &buflen)) { if () { Serial.println("Now You Safe.."); lcd.setCursor(0, 0); lcd.print("Now You Safe..."); digitalWrite(red, LOW); digitalWrite(yellow, HIGH); digitalWrite(buzzer, LOW); https://www.youtube.com/c/JustDoElectronics/videos } else if () { Serial.println("Where Hemalte"); lcd.setCursor(0, 0); lcd.print(" Where Hemalte... "); digitalWrite(red, HIGH); digitalWrite(yellow, LOW); digitalWrite(buzzer, HIGH); delay(2000); digitalWrite(buzzer, LOW); https://www.youtube.com/c/JustDoElectronics/videos } } }
Github Link :-
Link
1 Comments
Anonymous
8 June 2022 at 11:51
This code is not for this project
Reply
Delete
Replies
Reply
Add comment
Load more...
Newer
Older
OTP Based Door Lock Using Arduino And SIM800L
GSM + GPS Based Vehicle Location Tracking System
Build Your Own Gps Tracking System using Arduino
Arduino Gps And Gsm Based location Tracking System
Arduino ebook
IoT Based Fingerprint Biometric Attendance System Using NodeMCU (Esp8266)
Smart Trolley Using RFID And Arduino Nano
Automatic Water Level Controller With Message Alerts using GSM
IoT Based Patient Health Monitoring System Using Blynk App
RFID Based Automated Toll Collection System Using Arduino
YouTube
Like on Facebook
Follow on Twitter
Follow on Google+
Follow on Instagram
Subscribe on Youtube
Hi WelCome To My Website If you have a creative mind and want to learn Electronics even without studying it then FRIENDS this Website And Youtube Channel is for you, I am crazy creators who love making Electronics things. I have a bunch of more than 130 Tutorial Videos on My YouTube Channel and I upload a new Tutorial every Sunday.
Tags
Arduino Project
Esp32 Project
Esp8266 Project
1 Comments
This code is not for this project
ReplyDelete