//Sending Data to MAster using I2C #include <Wire.h> void setup() { Wire.begin(8); // join i2c bus with address #8 Wire.onRequest(requestEvent); // register event} void loop() { delay(100);} // function that executes whenever data is requested by master// this function is registered as an event, see setup()void requestEvent()…
Hemant Jaisingpure
updated on 16 Mar 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 Hemant Jaisingpure (7)
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear
Project 2 - Implement the Code for controlling the retraction and extension of Airplane’s landing gear --> #include<stdio.h> #include<string.h> char Lights[10]; char Lever[10]; void Set_Light_Red() { strcpy(Lights, "Red"); }/*function to set light RED*/ void Set_Light_Green() { strcpy(Lights, "Green");…
18 Jun 2022 05:46 PM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory)
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) --> #include #define Max 50 //define max value //define array to get values int S1[Max]; int S2[Max]; int S3[Max]; void Get_set_value(int S[],int n) { int i; fflush(stdout); for(i=1;i
18 Jun 2022 06:52 AM IST
Project 1 - V&V SW Analysis - I
I have attached doc file for above question, PFA.
19 Apr 2022 02:59 PM IST
Project 2 - V&V SW Analysis II
I have attached the doc file which include all the output reports, PFA.
19 Apr 2022 02:33 PM IST
Project 1 - Development of TFT Cluster Speedmeter Software Component
I have attached the all mentioned result and model file. PFA.
02 Apr 2022 02:23 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
//Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter int inches = 0; int cm = 0; long readUltrasonicDistance(int triggerPin, int echoPin){ pinMode(triggerPin, OUTPUT); // Clear the trigger digitalWrite(triggerPin, LOW); delayMicroseconds(2);…
16 Mar 2022 11:20 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
//Sending Data to MAster using I2C #include <Wire.h> void setup() { Wire.begin(8); // join i2c bus with address #8 Wire.onRequest(requestEvent); // register event} void loop() { delay(100);} // function that executes whenever data is requested by master// this function is registered as an event, see setup()void requestEvent()…
16 Mar 2022 11:16 AM IST