Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Project 1 - Develop the full featured char driver as a loaded module

Overview of the Project:  • Device Driver o Write the device driver for MCP9808 Temperature Sensor.  Probe function: Register the Platform device under driver/misc.  Read function: It should send the i2c message to read the data from sensor and copy it to the user space.  Alert pin connected to BBB as gpio…

Project Details

Loading...

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.

Please  login to add a comment

Other comments...

No comments yet!
Be the first to add a comment

Read more Projects by Rishabh Bhojankar (16)

Project 2 - Design and develop the web based Temperature control system using Beagle Bone Black.

Objective:

Overview of the Project:  Device Driver Write the device driver for MCP9808 Temperature Sensor. Probe function: Register the Platform device under driver/misc. Read function: It should send the i2c message to read the data from sensor and copy it to the user space. Alert pin connected to BBB as gpio interrupt. The…

calendar

02 Dec 2023 10:59 PM IST

  • HTML
Read more

Project 1 - Develop the full featured char driver as a loaded module

Objective:

Overview of the Project:  • Device Driver o Write the device driver for MCP9808 Temperature Sensor.  Probe function: Register the Platform device under driver/misc.  Read function: It should send the i2c message to read the data from sensor and copy it to the user space.  Alert pin connected to BBB as gpio…

calendar

01 Dec 2023 10:07 AM IST

Read more

Project 3

Objective:

Que. Program an attack terminal 1. The user should be able to select from the following CAN based attacks a. Full Bus DoS - The program should allow the user to set a duration for the attack b. Partial DoS - The program should ask the user “what priority should I DoS at?” - The program should allow the…

calendar

01 Dec 2023 02:28 AM IST

    Read more

    Project 2

    Objective:

    Que. Write a program that performs a binary search for any given signal (The instrument cluster can be used as a source for CAN traffic) - It should record a log, assisted by user prompt, and replay all other subsequent logs according to a prompt that the user checks (Did the signal occur again? Y/N) - After every…

    calendar

    30 Nov 2023 10:50 PM IST

      Read more

      Project 1

      Objective:

      Que.Using what you’ve learned in your hands-on labs, write a program that logs CAN data from one or more CAN buses. 1. CAN messages (from any bus) should be sorted into logs of even ARB ID messages and odd ARB ID messages 2. Even logs should be stored in a Linux Directory called “Even Logs”…

      calendar

      22 Nov 2023 01:06 PM IST

        Read more

        Project 2 - V&V SW Analysis II

        Objective:

        Que 1. Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them. Solution:   Static Code Review Analysis STEP 1 : Open Testrain.c in the LDRA tool - Goto “Source” and select “Single File”…

        calendar

        03 Nov 2023 10:13 AM IST

          Read more

          Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)

          Objective:

          In this project, the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR04) Goals: Measuring the distance of an object using Ultrasonic Distance Sensor (HC-SR04) Usage of Input Capture Mode Key Highlights of the Project:  Measuring the distance travelled by the…

          calendar

          31 Oct 2023 08:52 AM IST

            Read more

            Project 1 - Controlling a DC motor using PWM and monitoring its Running status

            Objective:

            Solution: #include <avr/io.h> //Including AVR Input/Output header file #define F_CPU 16000000ul //define the CPU frequency #include "avr/interrupt.h" //Including AVR interrupt header file #include <util/delay.h> //Including Delay header file   #define rs_high PORTD |= (1<<5) //Define a macro for…

            calendar

            26 Oct 2023 08:21 AM IST

              Read more

              Project 1

              Objective:

              Solution:     //Preprocessor Section/Header files #include <iostream> //Standard I/O Stream Library #include <cstring> //Standard C String Library #include <fstream>   using namespace std;   //Main Function int main() {     //Declare an array of strings to store commodity…

              calendar

              22 Oct 2023 10:00 AM IST

                Read more

                Project 2

                Objective:

                Que 1. Solution: //Preprocessor Section/Header Files #include //Standard I/O Stream Library #include //Standard C String Library ? using namespace std; ? //Define Class named Vehicle class Vehicle { protected: //Access Specifier //Protected Member Variable string make; //The make of the vehicle string model; //The model…

                calendar

                19 Oct 2023 04:38 PM IST

                  Read more

                  Project 1 - V&V SW Analysis - I

                  Objective:

                  Que .Write a Test plan to test features of a new mobile phone (Blackbox test) that needs to be implemented based on the following requirements. (The product is still under development stage and is yet to be UA (User Acceptance ) tested .Every other thing to be included in the test plan can be hypothetical.  US-1:As a Product…

                  calendar

                  08 Oct 2023 08:35 AM IST

                    Read more

                    Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter

                    Objective:

                    Solution : const int pingPin = 12; //Define the Arduino pin connected to the ultrasonic sensor int distances[5]; //Array to store the last 5 distance measurements float average = 0.0; //Variable to store the average   void setup() {   Serial.begin(9600); }   void loop() {   long duration, inches; //Variables to store duration…

                    calendar

                    03 Oct 2023 02:36 PM IST

                      Read more

                      Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol

                      Objective:

                      Solution: Master Code://Header Files #include #include   LiquidCrystal lcd(13,12,5,4,3,2); //Create a LiquidCrystal object for the LCD with the specified I2C address    void setup() {   lcd.begin(16, 2); //Initialize the LCD   Wire.begin(); //Initialize the I2C communication }   void loop() {   int analogValue = analogRead(A0);…

                      calendar

                      26 Sep 2023 09:22 AM IST

                        Read more

                        Project 3

                        Objective:

                        Solution : //Preprocessor Section/Header files#include //Standard input/output stream library#include //Standard vector library#include //Standard string library   using namespace std; // Define an enumeration type to represent different fuel typesenum Type{    GAS, //Represents gas-powered vehicles    DIESEL, //Represents…

                        calendar

                        05 Sep 2023 10:02 PM IST

                          Read more

                          Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear

                          Objective:

                          Solution: //Preprocessor section/Header files#include //Standard input/output library#include //Standard library#include //Standard string library //Function prototypevoid Initiate_State_Machine(); //Initialize the state machinevoid GearDown(); //Shift the gear to the down positionvoid CheckingBeforeTakeOFF(); //Checking…

                          calendar

                          04 Sep 2023 04:56 PM IST

                            Read more

                            Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List

                            Objective:

                            Solution : //Preprocessor section/header files#include //Standard input\output Library#include //Standard Library   //Define a structurestruct Node{    int num; //Declare integer variable    struct Node* nextptr; //Pointer to the next Node}; //Function prototypesstruct Node* createNodeList(int num); //Create a node listvoid…

                            calendar

                            02 Sep 2023 07:35 AM IST

                              Read more
                              Showing 1 of 16 projects