Offline Batch Circuit Connection: Code: //master #include<Wire.h>void setup(){pinMode(A2, INPUT);Serial.begin(9600);Wire.begin(3); }void loop(){float value=analogRead(A2);signed int v=(value*5)/1024;Wire.beginTransmission(1);Wire.write(v);Wire.endTransmission();delay(50);} //slave #include<Wire.h>#include<LiquidCrystal.h>LiquidCrystal…
Saideepa Manohar
updated on 22 Aug 2022
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 Saideepa Manohar (13)
Week-11 Challenge: Braking
Offline Batch 1. For a defined driving cycle, calculate the energy required for braking. Answer: Braking: The function of the braking system is to retard the speed of the moving vehicle or bring it to rest in the shortest possible distance whenever required. The vehicle can be held on an inclined surface against the pull…
02 Oct 2023 02:58 PM IST
Week-7 Challenge: DC Motor Control
Offline Batch: 1. A. Explain a MATLAB demo model named ‘Speed control of a DC motor using BJT H-bridge’. B. Comment on the armature current shoot-up from the scope results. C. Refer to the help section of ‘The Four-Quadrant Chopper DC Drive (DC7) block’. Compare it with…
15 Aug 2023 07:11 AM IST
Week-6 Challenge: EV Drivetrain
Offline Batch 1. Which types of power converter circuits are employed in electric and hybrid electric vehicle? Answer: Power Electronic Converters: - In Electric and Hybrid Electric Vehicles (EV/HEV), the power electronic converters are considered as the key elements that interface their power sources to the…
15 Aug 2023 06:59 AM IST
Week-4 Challenge WOT Condition Part-2
Offline Batch 1. What is the difference between the mapped and dynamic model of engine, motor, and generator? How can you change the model type? MAPPED models: Mapped models are used when the behavior of a particular model is not of our interest and can be modeled with predefined values in the form of lookup…
10 May 2023 02:45 PM IST
Week-3 Challenge: ADVISOR Tool
Offline Batch 1. For EV_defaults_in file, if cargo mass is 500 kg with all other default conditions, can the vehicle travel for 45 km with FTP drive cycle? Conclude your observations. Answer: - The load file is set to 'EV_defaults_in' and the components to motor_controller. The mass is given as 500kg. - Loading…
22 Apr 2023 03:09 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
Offline Batch Code: #define F_CPU 8000000UL #include <avr/io.h> #include <avr/interrupt.h> #include <util/delay.h> #include <string.h> #include <stdlib.h> #define LCD_Data_Dir DDRD // Define LCD data port direction #define LCD_Command_Dir DDRC // Define LCD command port direction register…
13 Jan 2023 04:26 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
Offline Batch Code: #include //preprocessor directive#define F_CPU 16000000ul#include "avr/interrupt.h"//Preprocessor directive of an avr interrupt#include#define sw_dir (PIND&(1
08 Jan 2023 01:45 PM IST
Project 1 - V&V SW Analysis - I
Offline Batch if(owner long press the power button) { open the company logo at centre; } else if(customer press the power button) { open the apps in grid; } else if(owner power on the phone) { shows call the phone icon on first position at bottom; } else if(owner…
03 Nov 2022 04:06 AM IST
Project 2 - V&V SW Analysis II
Offline Batch
28 Oct 2022 02:33 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
Offline Batch Circuit Connection: Code: float microsecToinchs( float d);float avg;int i,sum;int duration,inches;float Duration_inch;int data[5];void setup(){Serial.begin(9600);pinMode(7, INPUT);}void loop(){float average = mov_avg();Serial.println("distance value is");Serial.println( inches);delay(1000);}void US_Tx(){pinMode(7,OUTPUT);//delayMicroseconds(5);digitalWrite(7,LOW);delayMicroseconds(2);digitalWrite(7,HIGH);delayMicroseconds(5);digitalWrite(7,LOW);…
22 Aug 2022 10:44 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Offline Batch Circuit Connection: Code: //master #include<Wire.h>void setup(){pinMode(A2, INPUT);Serial.begin(9600);Wire.begin(3); }void loop(){float value=analogRead(A2);signed int v=(value*5)/1024;Wire.beginTransmission(1);Wire.write(v);Wire.endTransmission();delay(50);} //slave #include<Wire.h>#include<LiquidCrystal.h>LiquidCrystal…
22 Aug 2022 10:30 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Offline Batch Code: #include <stdio.h>typedef enum State{GEAR_DWN,CHK_BFR_TKOF,RISING_GR,GEAR_UP,CHK_BFR_LND,LOWRNG_GR}State_Type;typedef enum Switch{Open,Close}Switch_Status;typedef enum Pilot_Lever{Rising,Falling,Up,Down}Pilot_Lever_Status;typedef enum Hydraulic_Mechanism{Working,Malfunctioning}Hydraulic_Mechanism_Status;…
08 Aug 2022 01:09 PM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
Offline Batch #include<stdio.h>#include<stdlib.h>//defining the structuretypedef struct{ int data; struct node *next;//self referential node}Node;//declaring the functions with argumentsNode *insert_node(Node *head_ref, int n);void display_list(Node *head_ref);Node *getunion(Node *head_ptr1, Node *head_ptr2);Node…
07 Aug 2022 11:00 AM IST