Posts

Showing posts from October, 2023

Arduino Circuit Diagram For Blind & Deaf Person include 2 Ultrasonic 2 Motion Sensor with Buzzer led and Vibration Motor

  Connect the ultrasonic sensors: Ultrasonic Sensor 1: VCC to Arduino 5V Trig to Arduino Digital Pin 2 Echo to Arduino Digital Pin 3 GND to Arduino GND Ultrasonic Sensor 2 (similar connections as above): VCC to Arduino 5V Trig to Arduino Digital Pin 4 Echo to Arduino Digital Pin 5 GND to Arduino GND Connect the motion sensors: Motion Sensor 1: VCC to Arduino 5V OUT to Arduino Digital Pin 6 GND to Arduino GND Motion Sensor 2 (similar connections as above): VCC to Arduino 5V OUT to Arduino Digital Pin 7 GND to Arduino GND Connect the buzzer and vibration motor: Connect the positive (red) wire of the buzzer to a digital pin (e.g., Digital Pin 8). Connect the negative (black) wire of the buzzer to a GND pin. Connect the vibration motor to a digital pin (e.g., Digital Pin 9) for control. Ensure you have a suitable power source for the motor.

Arduino Code For Blind & Deaf Person include 2 Ultrasonic 2 Motion Sensor with Buzzer led and Vibration Motor

 #define trigPin1 2 #define echoPin1 3 #define trigPin2 4 #define echoPin2 5 #define motionSensorPin1 6 #define motionSensorPin2 7 #define buzzerPin 8 #define vibrationMotorPin 9 void setup() {   pinMode(trigPin1, OUTPUT);   pinMode(echoPin1, INPUT);   pinMode(trigPin2, OUTPUT);   pinMode(echoPin2, INPUT);   pinMode(motionSensorPin1, INPUT);   pinMode(motionSensorPin2, INPUT);   pinMode(buzzerPin, OUTPUT);   pinMode(vibrationMotorPin, OUTPUT);   Serial.begin(9600); } void loop() {   // Ultrasonic Sensor 1   long duration1, distance1;   digitalWrite(trigPin1, LOW);   delayMicroseconds(2);   digitalWrite(trigPin1, HIGH);   delayMicroseconds(10);   digitalWrite(trigPin1, LOW);   duration1 = pulseIn(echoPin1, HIGH);   distance1 = (duration1 / 2) / 29.1; // Convert to centimeters   // Ultrasonic Sensor 2 (similar code as above)      // Motion Sensor 1   int motion1 = digita...

how to earn money online without investment

  Earning money online without any investment is possible, but it often requires time, effort, and some skills. Keep in mind that while there are many legitimate opportunities to make money online, there are also scams out there, so be cautious and avoid anything that sounds too good to be true. Here are some legitimate ways to earn money online without any upfront investment: Freelancing : Offer your skills and services on freelancing platforms like Upwork, Freelancer, Fiverr, or Guru. You can find work in areas such as writing, graphic design, web development, digital marketing, and more. Content Creation : If you have a talent for creating content, you can start a blog, YouTube channel, or a podcast. Once you build an audience, you can monetize through ads, sponsorships, and affiliate marketing. Online Surveys and Market Research : Participate in online surveys and market research studies on websites like Swagbucks, Survey Junkie, and Vindale Research. These platforms pay you fo...