/* * project1.c * * Created: 23-11-2022 16:28:53 * Author :MANDARA B */ #include <avr/io.h> //we are using I/O registers of AVR#define F_CPU 16000000L // define the crystal frequency#include "avr/interrupt.h" // we are using external interrupt pin#include <util/delay.h> // delay function purpose#define sw_dir…
Mandara B
updated on 28 Nov 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 Mandara B (12)
Project
Carried out a system-level simulation of an all-terrain vehicle from the given model for the following characteristics: 1. Study the baja ATV model without dashboard. 2. Study the baja ATV model with dashboard. 3. Study the baja ATV model using lookup table without dashboard. 4. Study the baja ATV model using lookup table…
31 Mar 2023 08:42 AM IST
Week -2
To make a Simulink Model of Door Bell using Solenoid Block. SOLENOID: A Solenoid is a type of electromagnet, the purpose of which is to generate a controlled magnetic field through a coil wound into a tightly packed helix. The coil can be arranged to produce a uniform magnetic field in a volume of space when a current…
15 Mar 2023 08:52 AM IST
Project 1 Mechanical design of battery pack
Cells generate electricity and also derives chemical reactions. One or more electrochemical cells are batteries. Every cell has two terminals namely: Anode: Anode is the terminal from where the current flows in from out i.e. it provides an incoming channel for the current to enter the circuit or the…
15 Mar 2023 08:49 AM IST
Week 7 State of charge estimation
The simulation of the 3 test cases from harness dashboard is as follows:- FIG 1 : BMS SYSTEM …
04 Mar 2023 02:35 PM IST
Project 2 - V&V SW Analysis II
1ANSWER Static analysis is a method of debugging that is done by automatically examining the source code without having to execute the program. This provides developers with an understanding of their code base and helps ensure that it is compliant, safe, and secure. Static code analysis refers to the operation performed…
12 Dec 2022 07:41 AM IST
Week 1 Understanding Different Battery Chemistry
LITHIUM ION CELLS Lithium-ion is named for its active materials. The words are either written in full or shortened by their chemical symbols. Lithium-ion batteries can be designed for optimal capacity with the drawback of limited loading, slow charging and reduced longevity. An industrial battery may have a moderate Ah…
09 Dec 2022 11:39 AM IST
Project 1 - V&V SW Analysis - I
TEST PLAN A test plan is a detailed document which describes software testing areas and activities. BLACK BOX TESTING Black-box testing is a method of software testing that examines the functionality of an application without peering into its internal structures or workings.Black Box Testing mainly focuses on…
09 Dec 2022 07:46 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
/* * PROJECT2N.c * * Created: 29-11-2022 20:03:12 * Author : MANDARA B */ #include <avr/io.h>//initializing preprocessor directives of avr for io functions#define F_CPU 16000000L//clock frequency#include <util/delay.h>//initializing the delay function#define rs_high PORTD |=(1<<0);//DEFINE BIT FOR RS_HIGH…
29 Nov 2022 02:56 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
/* * project1.c * * Created: 23-11-2022 16:28:53 * Author :MANDARA B */ #include <avr/io.h> //we are using I/O registers of AVR#define F_CPU 16000000L // define the crystal frequency#include "avr/interrupt.h" // we are using external interrupt pin#include <util/delay.h> // delay function purpose#define sw_dir…
28 Nov 2022 09:46 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
mastercode #include<Wire.h> // Header to use I2C communication int sig = 3; //Assigning pin3 as sig for readabiltyint duration, inches, cm; //Declaring as integer typestatic int avg; //Declaring avg as static int typevoid setup(){Serial.begin(9600);Wire.begin(8); //To begin I2C communication with address 8Wire.onRequest(distance);…
03 Nov 2022 11:19 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
/* * airplane.c * * Created on: 30-Sep-2022 * Author: MANDARA B */ #include <stdio.h>// initializing or creating functions as requiredvoid Initiate_State_Machine();void GearDown();void CheckingBeforeTakeOFF();void RaisingGear();void GearUp();void CheckBeforeLanding();void LoweringGear();static void(*statetable[])(void)={GearDown,…
30 Sep 2022 01:08 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
/* * set.c * * Created on: 24-Sep-2022 * Author: MANDARA B */ #include <stdbool.h>//library for boolean operation of boolean datatype#include <stdio.h>//standard i/o header file#include <stdlib.h>//The stdlib.h header defines four variable types,//several macros, and various functions for performing general…
27 Sep 2022 06:12 AM IST