All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Priyal Choudhary
updated on 19 Aug 2022
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...
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
//I2C MASTER CODE #include //Library for I2C Communication functions#include //Library for I2C Communication functionsLiquidCrystal lcd(2,7,8,9,10,11); //Define LCD Module Pins (RS,EN,D4,D5,D6,D7) void setup(){lcd.begin(16,2); //Initialize LCD displaylcd.setCursor(0,0); //Sets Cursor at first line of displaylcd.print("Circuit…
29 Jan 2023 04:45 AM IST
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); // Sets the trigger pin to HIGH state for 10 microsecondsdigitalWrite(triggerPin, HIGH);delayMicroseconds(10);digitalWrite(triggerPin,…
27 Jan 2023 09:43 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Master code: #include //Library for LCD display function LiquidCrystal lcd(12, 11, 5, 4, 3, 2); //Define LCD Module Pins (RS,EN,D4,D5,D6,D7) int val1=A4; int val2=A5; void setup() { lccd.begin(16,2); } void loop() { lcd.setCursor(0,0); //Sets Cursor at line one of LCD…
24 Jan 2023 10:40 AM IST
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); // Sets the trigger pin to HIGH state for 10 microsecondsdigitalWrite(triggerPin, HIGH);delayMicroseconds(10);digitalWrite(triggerPin,…
24 Jan 2023 09:47 AM IST
Related Courses
0 Hours of Content
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.