/** project1.c** Created: 25-Nov-22 10:59:46 AM* Author : hp*/#include <avr/io.h> //avr library#define F_CPU 16000000L //CPU Frequency#include "avr/interrupt.h" //library to add interrupt#include <util/delay.h> //library to give delay#define direction (PIND&(1<<1)) //direction change switch to D1#define…
SathishKumar S
updated on 28 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 SathishKumar S (9)
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. \\report below...\\ Perform Integration testing by including all the .C files available…
05 Dec 2022 12:36 PM 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 09:04 AM IST
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
/** project2.c** * Author : SATHISHKUMAR.S*/#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); //object macro for PORTB7 set#define rs_low() PORTB &= ~(1<<7); //object…
28 Nov 2022 12:29 PM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
/** project1.c** Created: 25-Nov-22 10:59:46 AM* Author : hp*/#include <avr/io.h> //avr library#define F_CPU 16000000L //CPU Frequency#include "avr/interrupt.h" //library to add interrupt#include <util/delay.h> //library to give delay#define direction (PIND&(1<<1)) //direction change switch to D1#define…
28 Nov 2022 11:46 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
//master arduino//I2C Communication between two arduino //library for I2C communication function#include#include//Define LCD module pins LiquidCrystal lcd1(2,7,8,9,10,11);byte MasterSend; void setup(){ Wire.begin();//Begin I2C communication at A4,A5 Serial.begin(9600);//Begin Serial communication at 9600 band rate}void…
23 Nov 2022 08:14 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
//MASTER ARDUINO//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…
22 Nov 2022 03:49 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
//master arduino//I2C Communication between two arduino //library for I2C communication function#include<Wire.h>#include<LiquidCrystal.h>//Define LCD module pins LiquidCrystal lcd1(2,7,8,9,10,11);byte MasterSend; void setup(){ Wire.begin();//Begin I2C communication at A4,A5 Serial.begin(9600);//Begin Serial…
19 Nov 2022 09:54 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
08 Nov 2022 12:25 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
07 Nov 2022 04:58 AM IST