Tinker Cad Plateform: Arduino Code:1 // C++ code//#include<Wire.h> //Include I2C Library#include <LiquidCrystal.h> //Include LCD16x2 Library LiquidCrystal lcd(2,3,4,5,6,7,8); //Define an object for lcd interfacing and define RS,RW,E,D4,D5,D6,D7 pins byte x=0;void setup(){ Wire.begin(); //Begin I2C Bus.…
Vetrivel M S
updated on 30 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 Vetrivel M S (3)
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Tinker Cad Plateform: Arduino Code:1 // C++ code//#include<Wire.h> //Include I2C Library#include <LiquidCrystal.h> //Include LCD16x2 Library LiquidCrystal lcd(2,3,4,5,6,7,8); //Define an object for lcd interfacing and define RS,RW,E,D4,D5,D6,D7 pins byte x=0;void setup(){ Wire.begin(); //Begin I2C Bus.…
30 Sep 2022 04:30 PM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
Arduino Code: TinkerCad Plateform: // C++ code//double filter_values[5] = {0,0,0,0,0}; //Initialize array of length 5 to store the previous sensor data to calculate the moving average valueint current_array_pos = 0; //Initialize current arrary position variable as 0 void setup(){ Serial.begin(9600); //Start Serial UART…
30 Sep 2022 03:18 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
.c file has been attached below. I wrote a program to get two sets as a list from the user and finds Union and Intersection.I did not sort the list because it was not mentioned to sort it in the question but I checked for repetition of data and coded accordingly. The screenshot of the Output has also been uploaded. …
13 Aug 2022 09:46 AM IST