Skip to main content

Posts

Showing posts from 2020

IOT : SOCIAL DISTANCE ROBOT - MADE IN INDIA

 

ML Tutorial - 27 : REGULAR EXPRESSIONS

 In this video we will understand: What is a "Regular Expression"? How to use it? Examples.

ML Tutorial - 26 : EXCEPTIONS

 In this video we will understand: What is an "Exception" ? How to handle it? Examples.

ML Tutorial -25 JSON FILES

 In this video we will understand: What is "JSON File"? How to interface this? Examples.

ML Tutorial - 24 : CSV FILES

 In this video we will understand: What is "CSV File"? How to interface with this? Examples.  

ML Tutorial 23 : FILE OPERATIONS

 In this video we will understand: What is "File Operation"? How is it performed? Examples.

ML Tutorial 22 : FIRST CLASS FUNCTION

 In this video we will understand: What is "First class function" ? How to use ? Examples.  

ML Tutorial 21 : LIST COMPREHENSION

 In this video we will understand: What is list comprehension? Examples.

ML Tutorial 20 : LAMBDAS

 In this video we will understand: What is "Lambdas"? How to use? Examples.  

ML Tutorial 19 : INHERITANCE

 In this video we will understand: What is inheritance? Where is this used? Examples.

ML Tutorial 18 : PROGRAMMING PROBLEMS IN CLASSES

 In this video we will understand:     Some programming problems     in classes.  

ML Tutorial 17 : CLASSES

 In this video we will understand: What is a "Class" ? How to use? Example.  

ML Tutorial - 16 : PROGRAMMING PROBLEMS IN FUNCTIONS

 In this video we will understand:     Some programming problems       in  functions.    

ML Tutorial - 15 : FUNCTIONS

 In this video we will understand: What is a function? How is this used? Examples.  

ML Tutorial 14 : MODULES

 In this video we will understand: What is module? Where is this used? Examples.

ML Tutorial - 13 : MORE PROGRAMMING PROBLEMS

 In this video we will understand:     Some more common programming      problems

ML Tutorial - 12 : PROGRAMMING PROBLEMS

 In this video we will understand:      Some common programminng       problems  

ML Tutorial - 11 : WHILE LOOP

 In this video we will understand: What is while loop? How to use? Examples.

ML Tutorial - 10 : FOR LOOP

 In this video we will understand: What is "For loop"? How it's used? Examples.  

ML Tutorial - 9 : CONVERSIONS

 In this video we will understand: What is conversion? How it is used? Examples.  

ML Tutorial - 8 : IF AND ELSE

 In this video we will understand: What is if and else ? Where is this used? Examples  

ML Tutorial - 7 : DICTIONARY

 In this video we will understand: What is dictionary? Where is it used? Examples.  

ML Tutorial - 6 : TUPLES

 In this video we will understand: What is tuple? Where is this used? Examples.  

ML Tutorial-5 : STRING AS A LIST

 In this video we will understand: How to use strings as a list? It's uses. Examples.  

ML Tutorial - 4 : LISTS

 In this video we will understand: What is a list? Major uses. Examples.  

ML Tutorial-3 : VARIABLES

 In this video we will understand: Variables. It's use. Examples.

ML Tutorial - 2 : BUILD IN FUNCTIONS

 In this video we understand: Basic syntax. Use of functions. Examples.

ML Tutorial -1 : THE INTRODUCTION

 In this video we will understand : The basics of machine learning.  Loops  Functions and classes, Some programming problems and  Other features.

IOT : KITCHEN AUTOMATION

IoT projects have gained immense popularity due to their ability to leverage the power of interconnected devices and data to create innovative solutions across various domains.An IoT platform is a software framework or infrastructure that enables the development, deployment, and management of IoT applications and devices. It provides the necessary tools, services, and APIs (Application Programming Interfaces) to connect, collect data from, and control IoT devices, as well as process and analyze the generated data. IoT projects involve integrating sensors, actuators, and communication technologies to enable the seamless exchange of data between physical devices and the internet. These projects range from simple DIY experiments to complex industrial applications, each offering unique opportunities to transform our lives and improve efficiency. Whether it's creating a smart home automation system, monitoring environmental conditions, optimizing energy usage, or developing intelligent ...

IOT : PARTY AUTOMATION

Project : IOT PARTY MODES Circuit diagram: Code: Arduino code: #include #define birthday D0 #define candle_light D1 #define festival D2 #define DJ D3 Servo servo; //Static IP address configuration IPAddress staticIP(192, 168, 225, 81); //ESP static ip IPAddress gateway(192, 168, 225, 1); //IP Address of your WiFi Router (Gateway) IPAddress subnet(255, 255, 255, 0); //Subnet mask //Define wifi configuration const char* ssid = "YOUR_SSID"; const char* password = "YOUR_WIFI_PASSWORD"; // Create an instance of the server WiFiServer server(80); void setup() { Serial.begin(9600); // prepare GPIO 4 servo.attach(4); //Motor in home position servo.write(90); servo.detach(); delay(100); // Connect to WiFi network Serial.println(); Serial.println(); Serial.print("Connecting to "); Serial.println(ssid); WiFi.begin(ssid, password); //Configuring Static IP WiFi.config(staticIP,gateway,subnet); while (WiF...

IOT : SOIL MOISTURE DETECTION SYSTEM

GLOBAL WARMING ISN'T A PREDICTION. IT'S HAPPENING .                                                                                                              ~ JAMES HANSON. Planting billions of trees around the world is the best way of taking CO2 out of the atmosphere and solve climate crisis. As they grow they absorb and store CO2 emissions that are driving global heating. IoT projects have gained immense popularity due to their ability to leverage the power of interconnected devices and data to create innovative solutions across various domains. An IoT platform is a software framework or infrastructure that enables the development, deployment, and managemen...

IOT : WATER OVERFLOW DETECTION SYSTEM

DON'T FLUSH OUR PLANET'S ONLY VALUABLE RESOURCE. - WATER IoT projects have gained immense popularity due to their ability to leverage the power of interconnected devices and data to create innovative solutions across various domains. IoT projects involve integrating sensors, actuators, and communication technologies to enable the seamless exchange of data between physical devices and the internet. These projects range from simple DIY experiments to complex industrial applications, each offering unique opportunities to transform our lives and improve efficiency. Whether it's creating a smart home automation system, monitoring environmental conditions, optimizing energy usage, or developing intelligent transportation systems, applications of IoT open up a world of possibilities for innovation and connectivity. By harnessing the potential of IoT, we can build intelligent and interconnected systems that revolutionize industries, enhance daily life, and pave the way for a mor...