- Видео 154
- Просмотров 818 890
Parag Achaliya
Индия
Добавлен 14 май 2011
Assistant Professor at SNJB's Late Sau. K. B. Jain College of Engineering (Jain Gurukul) Neminagar, Chandwad - 423101, Dist. Nashik, Maharashtra, India.
Course Instructor at Udemy.
Course Instructor at Udemy.
Mod 2 - Lect 4: Interfacing Sensors and Actuators
In this video, we will discuss about how to interface different sensors and actuators with the IOT boards as well as some commonly used sensors and actuators.
#PMKVY
#PMKVY
Просмотров: 28
Видео
Mod 2 - Lect 3: Difference between C and Embedded C, Arduino Boards
Просмотров 2921 день назад
In this video, we will discuss about Difference between C and Embedded C, various Arduino Boards. #PMKVY
Mod 2 - Lect 2: IOT Development Boards, 4 Layer IOT Architecture, IOT Building Blocks
Просмотров 462 месяца назад
In this video, we will discuss about various IOT Development Boards, 4 Layer IOT Architecture, IOT Building Blocks. #PMKVY
Mod 2 - Lect 1: Microcontroller and Microprocessor
Просмотров 593 месяца назад
This video contains introduction, examples and types of Microcontroller and Microprocessor. #PMKVY
Geotag and Non-geotag photo in Single Click
Просмотров 2577 месяцев назад
This video will guide you on how to click a geo-tag and Non-geotag photo in single click using the Timestamp Camera app.
Tour itinerary Creator | roamaround io
Просмотров 192Год назад
This roamaround.io portal is useful to create an itinerary for your family or business tour. The URL of the portal is www.roamaround.io/ where your need to give destination and select the dates. After that it will create complete itinerary for you.
4x4 Keypad and Arduino using Tinkercad
Просмотров 2,8 тыс.Год назад
In this video, we will see how to interface the 4x4 keypad with Arduino using Tinkercad. #ardunio #tinkercad #keypad
Force Sensor & Arduino using Tinkercad
Просмотров 4 тыс.Год назад
In this video, we will see the interfacing of the Force Sensor and Arduino using Tinkercad. #forcesensor #arduino #tinkercad
Tilt Sensor & Arduino using Tinkercad
Просмотров 3,6 тыс.2 года назад
In this video, we will see the interfacing of the Tilt Sensor and Arduino using Tinkercad. #tiltsensor #arduino #tinkercad
Gas Sensor and Arduino using Tinkercad
Просмотров 19 тыс.2 года назад
In this video, we will interface the Gas Sensor with Arduino in Tinkercad to detect the amount of Gas present in the environment. #gassensor #arduino #tinkercad
LDR Sensor & Arduino using Tinkercad
Просмотров 22 тыс.2 года назад
In this video, we will see the interfacing of Light Dependent Resistor (LDR) Sensor or Photo-resistor with Arduino in Tinkercad. #ldrsensor #arduino #tinkercad #photoresistor
Soil Moisture Sensor & Arduino using Tinkercad
Просмотров 21 тыс.2 года назад
In this video, we will interface the Soil Moisture Sensor with Arduino in Tinkercad to detect the percentage of moisture available in the soil. #soilmoisturesensor #arduino #tinkercad
Piezo Buzzer & Arduino using Tinkercad
Просмотров 14 тыс.2 года назад
In this video, we will interface the Piezo Buzzer and LED with Arduino in Tinkercad. #piezobuzzer #arduino #tinkercad
Ultrasonic Distance Sensor & Arduino using Tinkercad
Просмотров 18 тыс.2 года назад
In this video, the virtual interfacing between the Ultrasonic Distance Sensor & the Arduino is shown using the Tinkercad platform. #UltrasonicDistanceSensor #Arduino #Tinkercad
PIR Sensor and Arduino Interfacing in Tinkercad
Просмотров 3,4 тыс.2 года назад
In this video, you will learn how to interface PIR Sensor & Arduino in Tinkercad. #PIRSensor #Arduino #Tinkercad
Temperature Sensor TMP36 & Arduino interfacing in Tinkercad
Просмотров 6 тыс.2 года назад
Temperature Sensor TMP36 & Arduino interfacing in Tinkercad
LED - Arduino Programming using Tinkercad
Просмотров 6822 года назад
LED - Arduino Programming using Tinkercad
Lightweight Cryptography, Challenges in Designing IoT Applications
Просмотров 6 тыс.2 года назад
Lightweight Cryptography, Challenges in Designing IoT Applications
Security Requirements in IoT, Challenges for Secure IoT
Просмотров 4,9 тыс.2 года назад
Security Requirements in IoT, Challenges for Secure IoT
Introduction to Security in IoT, Vulnerabilities of IoT
Просмотров 9 тыс.2 года назад
Introduction to Security in IoT, Vulnerabilities of IoT
Sky Net IoT Messaging Platform, gRPC, SOAP
Просмотров 2,9 тыс.2 года назад
Sky Net IoT Messaging Platform, gRPC, SOAP
Cloud Storage Models, WAMP - AutoBahn for IoT, Xively Cloud for IoT, Django
Просмотров 20 тыс.2 года назад
Cloud Storage Models, WAMP - AutoBahn for IoT, Xively Cloud for IoT, Django
Software-Defined Networking, SDN Architecture, How SDN Works, Benefits, Challenges, Use Cases
Просмотров 6 тыс.2 года назад
Software-Defined Networking, SDN Architecture, How SDN Works, Benefits, Challenges, Use Cases
Hi, for normal EV charge points that communicate with a central server via web sockets, is that considered level 4 or level 6 deployment?
P
Excellent video, helped a lot! Heres the code he uses: const int LEDPin = 13; const int LDRPin = A0; void setup() { Serial.begin(9600); pinMode(LEDPin, OUTPUT); pinMode(LDRPin, INPUT); } void loop() { int LDRStatus = analogRead(LDRPin); if (LDRStatus <= 500) { digitalWrite(LEDPin, HIGH); Serial.println(LDRStatus); } else { Serial.println(LDRStatus); digitalWrite(LEDPin, LOW); } }
8:10ABS Doesnt work like that ...btw best teaching❤
Nice one❤ thank you
Thank you very much
Sir, KINDLY PROVIDE PPTs in mail
Thank you sir
// heres the code int buttonState = 0 ; void setup() { pinMode(2, INPUT); pinMode(LED_BUILTIN, OUTPUT); } void loop() { buttonState = digitalRead(2); if (buttonState == HIGH) { digitalWrite(LED_BUILTIN, HIGH); } else { digitalWrite(LED_BUILTIN, LOW); } delay(10); }
can not hear
bhai hindi hi bol leta puri agr nhi boli jaati angrezi,sharmaane ki kya baat?
Worstt explanation only reading
thanks for helping i am in sh
useless video
code of the program : int moistureValue; float moisture_percentage; void setup() { Serial.begin(9600); } void loop() { moistureValue = analogRead(A0); moisture_percentage = ((moistureValue/539.00)*100); Serial.print(" Moisture Value : "); Serial.print(moisture_percentage); Serial.print("%"); delay(1000); }
Nice Sir ☺️
thank you bro
Plz send code
int LED = 13; int MQ2pin = A0; void setup() { Serial.begin(9600); } void loop() { float sensorValue; sensorValue = analogRead(MQ2pin); if(sensorValue >= 250) { digitalWrite(LED, HIGH); Serial.print(sensorValue); Serial.print(" "); } else { digitalWrite(LED, LOW); Serial.print(" "); Serial.print(sensorValue); } delay(1000); }
Tnx alot ❤
Nice
very informative
can you share this ppt
bro could have made this ppt shorter😭
Explaining in any fluent lang is preferable bro,but still helped alto Thank-you
Internet is not mandatory in Iot network.. For example smarth watch..sense BP, Oxygen level, etc , data collected internally and stored locally.. then data is analysed and processed, then it is displayed in graphical form via application software.. Now tell me, where is internet used here as no cloud service is required..
Code plss
why we have connected the resistor to the ground. can you tell me the reason because i am having a exam tmrw
All the best for your exam 🤗
is generic block diagram and physical same?
why do we need to Times 0.034
Because the speed of the ultrasonic waves that the sensor sends is 0.034 meters per something(speed times duration = distance)
@Parag Achaliya plz send code link
Super sir thank u so much
Code?
Bhai description me code dal deta
Sir plss arduino soil moisture humidity and air plss
Thank you sir
float soil = (soil_value/539.00)*100;
what are cloud storage models??
why do you need to add resistor to the grounded cable/wiring?
very good collection and comments
Kucha samaj aye ase batao
Thank you
Thank you so much for explaining this theory.
can i get these slides as a word or pdf
thanks alot but i did not understand why you switched "trigpin" from high to low severaltimes ?!
I think we need a small and short pulse of electricity only for triggering the release of a sound wave, and this is read by the each sensor (once the sound wave reflects).
-
Use language Hindi ❤
Classroom code or link
can you plz share me this ppt.
'Promo sm'