Parag Achaliya
Parag Achaliya
  • Видео 154
  • Просмотров 818 890
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
Просмотров: 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
LED Blinking using Arduino Uno
Просмотров 8792 года назад
LED Blinking using Arduino Uno
Lightweight Cryptography, Challenges in Designing IoT Applications
Просмотров 6 тыс.2 года назад
Lightweight Cryptography, Challenges in Designing IoT Applications
Key Elements of IoT Security
Просмотров 2,4 тыс.2 года назад
Key Elements of IoT Security
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
Amazon Web Services (AWS) for IoT
Просмотров 11 тыс.2 года назад
Amazon Web Services (AWS) for IoT
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
IP Based Protocols - MQTT, 6LoWPAN
Просмотров 1,5 тыс.3 года назад
IP Based Protocols - MQTT, 6LoWPAN
Overview of Internshala Platform
Просмотров 483 года назад
Overview of Internshala Platform
ZigBee Protocol
Просмотров 4,7 тыс.3 года назад
ZigBee Protocol
Modbus Protocol
Просмотров 3 тыс.3 года назад
Modbus Protocol

Комментарии

  • @khtan5531
    @khtan5531 Месяц назад

    Hi, for normal EV charge points that communicate with a central server via web sockets, is that considered level 4 or level 6 deployment?

  • @JimmyGaldones-u7o
    @JimmyGaldones-u7o Месяц назад

    P

  • @sinforoso1972
    @sinforoso1972 Месяц назад

    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); } }

  • @pradhumnyakalsait1179
    @pradhumnyakalsait1179 2 месяца назад

    8:10ABS Doesnt work like that ...btw best teaching❤

  • @lyons2547
    @lyons2547 2 месяца назад

    Nice one❤ thank you

  • @KarthiKeyan-xl3mh
    @KarthiKeyan-xl3mh 2 месяца назад

    Thank you very much

  • @SwatiJadhav-m7y
    @SwatiJadhav-m7y 3 месяца назад

    Sir, KINDLY PROVIDE PPTs in mail

  • @karthikachinnu1879
    @karthikachinnu1879 3 месяца назад

    Thank you sir

  • @garrisonsanderson2147
    @garrisonsanderson2147 3 месяца назад

    // 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); }

  • @exvou
    @exvou 4 месяца назад

    can not hear

  • @ujjwalchib11
    @ujjwalchib11 5 месяцев назад

    bhai hindi hi bol leta puri agr nhi boli jaati angrezi,sharmaane ki kya baat?

  • @gmgaming749
    @gmgaming749 5 месяцев назад

    Worstt explanation only reading

  • @bvnadadawadaad
    @bvnadadawadaad 6 месяцев назад

    thanks for helping i am in sh

  • @TheOpinionManRG
    @TheOpinionManRG 6 месяцев назад

    useless video

  • @beenagairola8745
    @beenagairola8745 6 месяцев назад

    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); }

  • @AadeshingaleOfficial-zl5fd
    @AadeshingaleOfficial-zl5fd 6 месяцев назад

    Nice Sir ☺️

  • @A_to_Z-lt8jn
    @A_to_Z-lt8jn 6 месяцев назад

    thank you bro

  • @csquare4685
    @csquare4685 6 месяцев назад

    Plz send code

  • @erickgoldberg8153
    @erickgoldberg8153 7 месяцев назад

    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); }

  • @techyshiper
    @techyshiper 7 месяцев назад

    Tnx alot ❤

  • @jayashreejagdale
    @jayashreejagdale 7 месяцев назад

    Nice

  • @danieltrigo2928
    @danieltrigo2928 7 месяцев назад

    very informative

  • @shubhratripathi1055
    @shubhratripathi1055 7 месяцев назад

    can you share this ppt

  • @adithya.n7268
    @adithya.n7268 7 месяцев назад

    bro could have made this ppt shorter😭

  • @bestislamicshorts7291
    @bestislamicshorts7291 8 месяцев назад

    Explaining in any fluent lang is preferable bro,but still helped alto Thank-you

  • @abhangwani1
    @abhangwani1 8 месяцев назад

    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..

  • @nitees2965
    @nitees2965 8 месяцев назад

    Code plss

  • @서울소울
    @서울소울 8 месяцев назад

    why we have connected the resistor to the ground. can you tell me the reason because i am having a exam tmrw

  • @akm3168
    @akm3168 8 месяцев назад

    is generic block diagram and physical same?

  • @sb.bavani5
    @sb.bavani5 8 месяцев назад

    why do we need to Times 0.034

    • @lavikoss3540
      @lavikoss3540 4 месяца назад

      Because the speed of the ultrasonic waves that the sensor sends is 0.034 meters per something(speed times duration = distance)

  • @shivommishra6345
    @shivommishra6345 9 месяцев назад

    @Parag Achaliya plz send code link

  • @iniyaviji2796
    @iniyaviji2796 9 месяцев назад

    Super sir thank u so much

  • @itzkiller2849
    @itzkiller2849 9 месяцев назад

    Code?

  • @slayerop8156
    @slayerop8156 9 месяцев назад

    Bhai description me code dal deta

  • @carlanthonybron
    @carlanthonybron 9 месяцев назад

    Sir plss arduino soil moisture humidity and air plss

  • @SharmaAchal
    @SharmaAchal 9 месяцев назад

    Thank you sir

  • @zypeLLas
    @zypeLLas 9 месяцев назад

    float soil = (soil_value/539.00)*100;

  • @dhanushsriramula2888
    @dhanushsriramula2888 10 месяцев назад

    what are cloud storage models??

  • @allan4766
    @allan4766 10 месяцев назад

    why do you need to add resistor to the grounded cable/wiring?

  • @vilasbelsare335
    @vilasbelsare335 10 месяцев назад

    very good collection and comments

  • @unlessvidio4
    @unlessvidio4 10 месяцев назад

    Kucha samaj aye ase batao

  • @ALOKSINGH-d5g
    @ALOKSINGH-d5g 11 месяцев назад

    Thank you

  • @rashmikadeshan2710
    @rashmikadeshan2710 11 месяцев назад

    Thank you so much for explaining this theory.

  • @ZaaidRashid
    @ZaaidRashid Год назад

    can i get these slides as a word or pdf

  • @mahmoudhesham2396
    @mahmoudhesham2396 Год назад

    thanks alot but i did not understand why you switched "trigpin" from high to low severaltimes ?!

    • @physiologic187
      @physiologic187 10 месяцев назад

      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).

  • @tanmaya77
    @tanmaya77 Год назад

    -

  • @Sandeepkumar-gy1mm
    @Sandeepkumar-gy1mm Год назад

    Use language Hindi ❤

  • @MOURYAEDITZ
    @MOURYAEDITZ Год назад

    Classroom code or link

  • @pepo1051
    @pepo1051 Год назад

    can you plz share me this ppt.

  • @deanwilkerson5681
    @deanwilkerson5681 Год назад

    'Promo sm'