#include <stdio.h> //Different state of ATM machine typedef enum { Idle_State, Card_Inserted_State, Pin_Eentered_State, Option_Selected_State, Amount_Entered_State, } eSystemState; //Different type events typedef enum { Card_Insert_Event, Pin_Enter_Event, Option_Selection_Event,…
Damodharan K
updated on 14 Mar 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 Damodharan K (6)
Project 1 - V&V SW Analysis - I
steps to create test plan : Analyse the product or features your testing. Design the test strategies your going to use. Define the test objectives and pass/fail criteria. Plan the test environment. Execute your test plan and Track Progress in your project management tool. algorithms: step 1: start step 2:Manufacturer…
25 Mar 2022 12:57 PM IST
Project 2 - V&V SW Analysis II
1 . static analysis : #ifndef FILE#include #endif#ifndef FALSE#define FALSE 0#define TRUE 1#endif/* * this define determines if we are using stubs - * set to 0 for stubs or 1 for no stubs */#define no_stubs 1/* * this define determines the interface to use * set to 1 for original interface or 0 for changed interface */#define…
25 Mar 2022 12:16 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include <stdio.h> //Different state of ATM machine typedef enum { Idle_State, Card_Inserted_State, Pin_Eentered_State, Option_Selected_State, Amount_Entered_State, } eSystemState; //Different type events typedef enum { Card_Insert_Event, Pin_Enter_Event, Option_Selection_Event,…
14 Mar 2022 12:38 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
// I2C MASTER CODE//Communication between two arduino#include<wire.h#include<Liquidcrystal.h>Liquidcrystal lcd(2,7,8,9,10,11);void setup(){ led.begin(16,2); led.setCursor(0,0); led.print("skill lync"); led.setCursor(0,1); led.print("I2C ARDUNIO 2 ARDUNIO"); for(int i=0;i<16;i++) { led.scrollDisplayLeft(); delay(100);…
14 Mar 2022 09:56 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
// C++ code///* Ping))) Sensor This sketch reads a PING))) ultrasonic rangefinder and returns the distance to the closest object in range. To do this, it sends a pulse to the sensor to initiate a reading, then listens for a pulse to return. The length of the returning pulse is proportional to the distance of the object…
11 Mar 2022 04:43 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)
// C program to find union// and intersection of two// linked lists #include <stdbool.h> #include <stdio.h> #include <stdlib.h> // Link list nodestruct Node{ int data; struct Node* next;}; /* A utility function to insert a node at the beginning ofa linked list*/void push(struct Node** head_ref,…
04 Mar 2022 11:03 AM IST