embedded batch-02
Sadiya Naaz V
updated on 07 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 Sadiya Naaz V (10)
Project 2 - V&V SW Analysis II
embedded batch-02
05 Dec 2022 05:13 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…
05 Dec 2022 04:54 AM IST
Project 2 - Measuring distance of an object using ultrasonic 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); //object macro for PORTB7 set#define rs_low() PORTB &= ~(1<<7); //object macro for PORTB7 reset#define en_high() PORTB |=…
27 Nov 2022 09:21 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
#include <avr/io.h>#define F_CPU 16000000L#include <util/delay.h>#include "avr/interrupt.h"#define sw_dir (PIND&(1<<1))#define sw_spd (PIND&(1<<2))#define pw (PINC&(1<<3))#define RS_high PORTD |= (1<<5)#define RS_low PORTD &=~ (1<<5)#define EN_high PORTD |= (1<<6)#define…
27 Nov 2022 09: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 code #include//i2c communication hedder file #include//lcd disply headder file LiquidCrystal lcd(12,11,6,5,4,3); void setup() { lcd.begin(16,2); lcd.setCursor(5,0); lcd.print("Master"); delay(1000); lcd.clear(); Wire.begin(); //enable the communication } void loop() { Wire.requestFrom(1,2); //address of slave…
23 Nov 2022 08:13 AM 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 disply Wire.begin(); //enable the communication} void loop(){ Wire.requestFrom(1,1);//address…
19 Nov 2022 09:39 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
embedded batch-02
11 Nov 2022 10:07 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
embedded batch-02
08 Nov 2022 04:51 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
embedded batch-02
07 Nov 2022 05:30 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
embedded batch-02
07 Nov 2022 05:01 AM IST