//MASTER CODE #include #include LiquidCrystal lcd (2,7,8,9,10,11); //DEFINE LCD DISPLAY MODULE PINS void setup() { lcd.begin(16,2); //INITIALIZE LCD DISPLAY lcd.setcursor(0,0); lcd.print("skill lynch"); lcd.setcursor(0,1); lcd.print("I2C ARDUINO 2 ARDUINO"); for (int i=0; i
Pushparaj P
updated on 04 Mar 2023
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 Pushparaj P (9)
Project 3
1.Build an object-oriented library which can be used to track automobile maintenance. There can be different car types such as petrol, diesel, gas, electric etc., This library should be able to support at least three of the car types.Maintenance tasks include activities like oil change or replace oil filter, replace air…
13 Jul 2023 11:22 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
1. Implement the Code for controlling the retraction and extension of Airplane’s landing gear Using finite state machine, Goals: Valve's direction can be controlled. Controlling the retraction and extension of the landing gear on an aeroplane. #include <stdio.h> typedef enum States { …
05 Jul 2023 01:43 PM IST
Project 2 - V&V SW Analysis II
1.“C:\**\LDRA_workarea\Examples\C_Testbed_examples\Testrain\Testrain.c” manual testcase new sequence- prt2 create new test case-datanoma input given as 2 output- passed report 2. Perform Integration testing by including all the .C files available in the folder location C:\**\LDRA_workarea\Examples\Toolsuite\Cashregister_6.0\…
03 Jul 2023 02:15 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
/* ============================================================================ Name : Project_1.c Copyright : Your copyright notice Description : Creation of user defined data type to implement the user interfaces …
02 Jul 2023 07:36 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
#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_Command_Dir DDRC #define LCD_Data_Port PORTD #define LCD_Command_Port PORTC #define…
06 Jun 2023 12:25 PM IST
Project 1 - V&V SW Analysis - I
TEST PLAN if( product owner long press the power button) { open the company logo at centre; } else if(customer press the power button) { open icon of apps in grid; } else if(product owner power on the phone) { shows call the phone icon on first position at bottom bar; } else if(product owner power on the phone) { shows…
05 Jun 2023 02:01 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
#include <LiquidCrystal.h> #define trigger 12#define echo 11 LiquidCrystal lcd(2,3,4,5,6,7);float time=0,distance=0; void setup(){ lcd.begin(16,2); pinMode(trigger,OUTPUT); pinMode(echo,INPUT); lcd.print(" Ultra sonic"); lcd.setCursor(0,1); lcd.print(" sensor"); delay(2000); lcd.clear(); lcd.print(" Distance Meter");…
15 Apr 2023 05:22 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
/* * PROJECT-1.c * * Created: 11-04-2023 13:33:38 * Author : User */ #include <avr/io.h>#define F_CPU 16000000L#include "avr/interrupt.h"#include <util/delay.h> #define sw_d (PIND&(1<<1))#define sw_speed (PIND&(1<<2))#define power (PINC&(1<<3))#define lcd_port PORTB#define RS_high…
12 Apr 2023 08:24 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
//MASTER CODE #include #include LiquidCrystal lcd (2,7,8,9,10,11); //DEFINE LCD DISPLAY MODULE PINS void setup() { lcd.begin(16,2); //INITIALIZE LCD DISPLAY lcd.setcursor(0,0); lcd.print("skill lynch"); lcd.setcursor(0,1); lcd.print("I2C ARDUINO 2 ARDUINO"); for (int i=0; i
04 Mar 2023 08:05 AM IST