//MASTER//I2C Communication between two arduino //library for I2C communication function#include <Wire.h>//library for LCD display#include <LiquidCrystal.h>//Define LCD module pinsLiquidCrystal lcd_1(12, 11, 5, 4, 3, 2); void setup(){ //Begin I2C communication at A4,A5 Wire.begin(); //Begin Serial communication…
Vishwanath Ravichandran
updated on 23 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 Vishwanath Ravichandran (11)
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\…
03 Dec 2022 08:01 AM IST
Project 1 - V&V SW Analysis - I
AIM: 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…
03 Dec 2022 07:39 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
In this project, the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR04) #include <avr/io.h>#include "avr/interrupt.h"#define F_CPU 16000000L#include <util/delay.h>#define lcdport PORTD //object macro for PORTB#define rs_high() PORTB |= (1<<7);…
27 Nov 2022 02:37 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
Implement a system on the simulator for controlling a DC motor using L293 motor driver, monitor its status and print the running status of motor on the LCD Display. #include <avr/io.h>#define F_CPU 16000000L#include <util/delay.h>#include "avr/interrupt.h" #define sw_dir (PIND&(1<<1))#define…
27 Nov 2022 02:19 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
//Master device//Header to use LCD functions#include<LiquidCrystal.h>// Header to use I2C communication#include<Wire.h>//pin connected to LCD#include<LiquidCrystal.h>LiquidCrystal lcd(12,11,5,4,3,2); void setup(){ lcd.begin(16,2);//(16,2)lcd clum and row lcd.setCursor(0,0); lcd.print("SKILL-LYNC"); lcd.setCursor(0,1);…
23 Nov 2022 08:31 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
//MASTER//I2C Communication between two arduino //library for I2C communication function#include <Wire.h>//library for LCD display#include <LiquidCrystal.h>//Define LCD module pinsLiquidCrystal lcd_1(12, 11, 5, 4, 3, 2); void setup(){ //Begin I2C communication at A4,A5 Wire.begin(); //Begin Serial communication…
23 Nov 2022 08:19 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
//I2C Master code#include //Library for I2C communication#include //Library for LCD display functionLiquidCrystal lcd(2,7,8,9,10,11);//Define LCD module pinvoid setup(){ lcd.begin(16,2);//initialize LCD display lcd.setCursor(0,0);//set cursor at first line of display lcd.print("skill");//print in LCD lcd.setCursor(0,1);//set…
23 Nov 2022 08:14 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
//I2C Master code#include<Wire.h> //Library for I2C communication#include<LiquidCrystal.h> //Library for LCD display functionLiquidCrystal lcd(2,7,8,9,10,11);//Define LCD module pinvoid setup(){ lcd.begin(16,2);//initialize LCD display lcd.setCursor(0,0);//set cursor at first line of display lcd.print("skill");//print…
19 Nov 2022 09:29 AM 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 #include struct Node//node creation{ int data; struct Node* next;};void push(struct Node** head_ref, int new_data);//function declarationint isPresent(struct Node* head, int data);struct Node* getUnion(struct Node* head1, struct Node* head2)// Function to get union of two linked lists head1 and head2{ …
10 Nov 2022 05:19 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Implement the Code for controlling the retraction and extension of Airplane’s landing gear #include // header files#includetypedef enum//enum declaration for lever position{ down, raising, up, falling}liverpos;liverpos a;typedef enum//enum declaration for limit switch{open,close}limit;typedef enum//enum declaration…
09 Nov 2022 05:45 AM 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 #include struct Node//node creation{ int data; struct Node* next;};void push(struct Node** head_ref, int new_data);//function declarationint isPresent(struct Node* head, int data);struct Node* getUnion(struct Node* head1, struct Node* head2)// Function to get union of two linked…
07 Nov 2022 05:27 AM IST