#Live Batch ("Preeti Ma'am")
Saurabh Gupta
updated on 11 Mar 2023
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Saurabh Gupta (11)
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
code int triggerPin = 7;int echoPin = 6;unsigned long duration;int distance; void setup(){ pinMode(triggerPin, OUTPUT); pinMode (echoPin, INPUT); Serial.begin(9600);} void loop(){ digitalWrite(triggerPin, LOW); delayMicroseconds(2); //clearing the trigger digitalWrite(triggerPin, HIGH); delayMicroseconds(10); digitalWrite(triggerPin,…
09 Jun 2023 11:08 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
CODE #include <Wire.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(34,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display void setup() { lcd.init(); lcd.backlight(); } void loop(){ lcd.setBacklight(1); lcd.setCursor(4,1); lcd.print("MY"); lcd.setCursor(2,0); lcd.print("NAME…
08 Jun 2023 07:42 AM IST
Project 3
#LIVE BATCH("PREETI MA'AM")
04 May 2023 03:26 PM IST
Project 2 - V&V SW Analysis II
#Live Batch("Preeti Ma'am")
10 Apr 2023 01:52 PM IST
Project 2 - V&V SW Analysis II
#Live Batch("Preeti Ma'am")
30 Mar 2023 01:52 PM IST
Project 1 - V&V SW Analysis - I
#Live Batch ("Preeti Ma'am")
11 Mar 2023 01:32 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
#Live Batch("Preeti Ma'am")
23 Feb 2023 08:44 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
#Live Batch(Preeti Ma'am)
22 Feb 2023 11:29 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#Live Batch ("Preeti Ma'am")
10 Feb 2023 07:23 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
#LIVE BATCH("PREETI MA'AM")
06 Feb 2023 09:19 AM IST
Week -2
ANS1. We have used following blocks in the model- Pulse Generator. Switch. Battery. Solenoid. Ideal Translational motor sensor. Mechanical translational reference. Electrical reference. Scope. As per given conditions switch is closed for 2 seconds & then released.The pulse generator is used to create square wave pulses…
05 Sep 2022 08:47 AM IST