//MASTER#include<LiquidCrystal.h> // Header to use LCD functions#include<Wire.h> // Header to use I2C communicationLiquidCrystal lcd(12,11,6,5,4,3); //pins connected to LCDint distance; //variable to print the data from slave void setup(){lcd.begin(16,2); lcd.setCursor(5,0); lcd.print("Master"); delay(2000);…
syed razikh
updated on 07 Dec 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 syed razikh (10)
Project 2 - V&V SW Analysis II
Perform Static Code Review Analysis for “C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” Generate Code review report and upload them. Perform Integration testing by including all the .C files available in the folder location C:\**\LDRA_workarea\Examples\Toolsuite\Cashregister_6.0\…
26 Jan 2023 03:27 PM IST
Project 1 - V&V SW Analysis - I
Question 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…
26 Jan 2023 01:30 PM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
/* * project 2 sr.c * * Created: 02-01-2023 20:37:49 * Author : syed razikh */ #include // avr header file #define F_CPU 16000000ul // f_cpu defined#include // delay header file#include // interrupt header file#include // string header file#include //standard library header file #define lcd_data_dir DDRD // define lcd…
02 Jan 2023 05:00 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
/* * project 1 sr.c * * Created: 01-01-2023 20:22:35 * Author : syed razikh */ c
01 Jan 2023 06:11 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include#includevoid initial_state();void gear_down();void checking_before_takeoff();void raising_gear();void lowering_gear();void checking_before_landing();void gear_up();enum states{ geardown, chkb4_takeoff, raisinggear, gearup, chkb4_landing, loweringgear};enum pilot_lever_state{ raising, falling, …
20 Dec 2022 02:24 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include#includevoid initial_state();void gear_down();void checking_before_takeoff();void raising_gear();void lowering_gear();void checking_before_landing();void gear_up();enum states{ geardown, chkb4_takeoff, raisinggear, gearup, chkb4_landing, loweringgear};enum pilot_lever_state{ raising, falling, …
17 Dec 2022 04:50 PM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
#include#includevoid initial_state();void gear_down();void checking_before_takeoff();void raising_gear();void lowering_gear();void checking_before_landing();void gear_up();enum states{ geardown, chkb4_takeoff, raisinggear, gearup, chkb4_landing, loweringgear};enum pilot_lever_state{ raising, falling, …
13 Dec 2022 04:24 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
#include <stdio.h>#include <stdlib.h> // A structure of linked list nodestruct node { int data; struct node *next; } *LinkedListOne, *LinkedListTwo, *unionLL, *intersectionLL; void initialize() { LinkedListOne = LinkedListTwo = NULL;}//Given a Inserts a node in front of a singly linked list. void insert(struct…
11 Dec 2022 12:53 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
//MASTER#include<LiquidCrystal.h> // Header to use LCD functions#include<Wire.h> // Header to use I2C communicationLiquidCrystal lcd(12,11,6,5,4,3); //pins connected to LCDint distance; //variable to print the data from slave void setup(){lcd.begin(16,2); lcd.setCursor(5,0); lcd.print("Master"); delay(2000);…
07 Dec 2022 05:19 PM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
// master code#include//i2c communication hedder file#include//lcd disply headder fileLiquidCrystal lcd(12,11,3,4,5,6);//lcd pin dec void setup(){lcd.begin(16,2);lcd.setCursor(5,0);lcd.print("Master");delay(1000);lcd.clear();// clear the lcd displyWire.begin(); //enable the communication} void loop(){Wire.requestFrom(1,1);//address…
07 Dec 2022 05:17 PM IST