OFFLINE BATCH-PG EMBEDDED if(owner long press the power button) { open the company logo at centre; } else if(customer press the power button) { open the apps in grid; } else if(owner power on the phone) { shows call the phone icon on first position at…
Sridhar Gopal
updated on 06 Sep 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 Sridhar Gopal (8)
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
OFFLINE BATCH-PG EMBEDDED CODING #include <avr/io.h> #include <avr/interrupt.h> #define F_CPU 8000000 #include <util/delay.h> #include #include #define LCD_data_dir DDRD //LCD data port direction…
21 Sep 2022 11:10 AM IST
Project 1 - Controlling a DC motor using PWM and monitoring its Running status
OFFLINE BATCH-PG EMBEDDED CODING #include <avr/io.h> //preprocessor directive#define F_CPU 16000000ul#include "avr/interrupt.h"//Preprocessor directive of an avr interrupt#include <util/delay.h>#define sw_dir (PIND&(1<<1))#define sw_spd (PIND&(1<<2))#define pw (PINC&(1<<3))#define…
19 Sep 2022 12:42 PM IST
Project 1 - V&V SW Analysis - I
OFFLINE BATCH-PG EMBEDDED if(owner long press the power button) { open the company logo at centre; } else if(customer press the power button) { open the apps in grid; } else if(owner power on the phone) { shows call the phone icon on first position at…
06 Sep 2022 12:23 PM IST
Project 2 - V&V SW Analysis II
OFFLINE BATCH Please Find the Attached Files for Q1 Q2
06 Sep 2022 12:09 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
EMBEDDED OFFLINE BATCH: TITLE:Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter CODING int trigPin = 11; // Triggerint echoPin = 12; // Echolong duration, cm, inches;long sum=0;long avg;int i; void setup() {//Serial Port beginSerial.begin (9600);//Define…
19 Aug 2022 11:59 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
EMBEDDED OFFLINE BATCH: TITLE:Interfacing a 16*2 LCD with Arduino using I2C protocol CODING //MASTER #include<Wire.h>\\Header File for Wire Transmission on Arduino#include<LiquidCrystal.h>\\Header File for LCD Cofigurationvoid setup(){LiquidCrystal lcd(12,11,5,4,3,2);\\Configuration of LCD…
19 Aug 2022 11:57 AM IST
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
OFFLINE EMBEDDED BATCH CODING #include void Initiate_State_Machine(); void GearDown(); void CheckingBeforeTakeOFF(); void RaisingGear(); void GearUp(); void CheckBeforeLanding(); void LoweringGear(); static void(*statetable[])(void)={GearDown, CheckingBeforeTakeOFF, RaisingGear, GearUp, CheckBeforeLanding, LoweringGear};…
18 Aug 2022 09:12 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
PG PROGRAM IN EMBEDDED EV APPLICATION-OFFLINE BATCH Project 1. Creation of user defined data type to implement the user…
07 Aug 2022 11:18 AM IST