SOMDATT JANGID
SOMDATT JANGID
  • 71
  • 2 610

Відео

Crops safety from Animals Prototype
Переглядів 42 години тому
Crops safety from Animals Prototype
Smart Urban Resource Optimizer
Переглядів 121 день тому
Smart Urban Resource Optimizer
Smart Crop Protection System to Stop Animals from Destroying Fields
21 день тому
Smart Crop Protection System to Stop Animals from Destroying Fields
Automatic Walking Bridge for Railway Platforms
Переглядів 321 день тому
Automatic Walking Bridge for Railway Platforms
Automatic Bike Side Light Signal
Переглядів 121 день тому
Automatic Bike Side Light Signal
Keypad 4X4 Module Interfacing with Arduino Uno
Переглядів 247Місяць тому
#include Keypad.h const byte ROWS = 4; /* four rows */ const byte COLS = 4; /* four columns */ /* define the symbols on the buttons of the keypads */ char hexaKeys[ROWS][COLS] = { {'1','2','3','A'}, {'4','5','6','B'}, {'7','8','9','C'}, {'*','0','#','D'} }; byte rowPins[ROWS] = {13, 12, 11, 10}; /* connect to the row pinouts of the keypad */ byte colPins[COLS] = {9, 8, 7, 6}; /* connect to the ...
LM35 Temperature Sensor Interfacing with Arduino Uno
Переглядів 117Місяць тому
const int lm35_pin = A1; /* LM35 O/P pin */ void setup() { Serial.begin(9600); } void loop() { int temp_adc_val; float temp_val; temp_adc_val = analogRead(lm35_pin); /* Read Temperature */ temp_val = (temp_adc_val * 4.88); /* Convert adc value to equivalent voltage */ temp_val = (temp_val/10); /* LM35 gives output of 10mv/°C */ Serial.print("Temperature = "); Serial.print(temp_val); Serial.prin...
Traffic Management System Prototype
Переглядів 77 місяців тому
Copyright Disclaimer: Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
Mobile Control Lamp
Переглядів 47 місяців тому
Copyright Disclaimer: Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
Flour and Sand Cleaner Prototype
Переглядів 167 місяців тому
Copyright Disclaimer: Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
Automatic Exhaust Fan
Переглядів 1657 місяців тому
Copyright Disclaimer: Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
Mobile Control Light
Переглядів 517 місяців тому
Copyright Disclaimer: Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
Recycle Bin
Переглядів 207 місяців тому
Copyright Disclaimer: Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
Nano Sweep Wiper
Переглядів 1097 місяців тому
Copyright Disclaimer: Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
Smart Study Lamp 🪔
Переглядів 67 місяців тому
Smart Study Lamp 🪔
Sewing 🪡🧵 Machine light 🚨
Переглядів 77 місяців тому
Sewing 🪡🧵 Machine light 🚨
Sand & Flour Filter Prototype
Переглядів 697 місяців тому
Sand & Flour Filter Prototype
Prototype Blind 🦯 Stick 🏒
Переглядів 487 місяців тому
Prototype Blind 🦯 Stick 🏒
Toy 🎲 Dice for Snakes Ladder 🪜 Ludo Games Prototype
Переглядів 37 місяців тому
Toy 🎲 Dice for Snakes Ladder 🪜 Ludo Games Prototype
Electronics Dice
Переглядів 107 місяців тому
Electronics Dice
Sewing Light Machine
Переглядів 147 місяців тому
Sewing Light Machine
Food Gravey Check Tester
Переглядів 57 місяців тому
Food Gravey Check Tester
Electrician Safety Probes
Переглядів 77 місяців тому
Electrician Safety Probes
Blind & Deef People help by Vibrator Stick Prototype
Переглядів 137 місяців тому
Blind & Deef People help by Vibrator Stick Prototype
Crowd Counter Control Device
Переглядів 258 місяців тому
Crowd Counter Control Device
Automatic Door Bell
Переглядів 68 місяців тому
Automatic Door Bell
Intelligent Study Lamp
Переглядів 58 місяців тому
Intelligent Study Lamp
Solar Clean Robot
Переглядів 78 місяців тому
Solar Clean Robot
Magic Eyes
Переглядів 128 місяців тому
Magic Eyes

КОМЕНТАРІ

  • @somdattjangid1911
    @somdattjangid1911 Місяць тому

    const int lm35_pin = A1; /* LM35 O/P pin */ void setup() { Serial.begin(9600); } void loop() { int temp_adc_val; float temp_val; temp_adc_val = analogRead(lm35_pin); /* Read Temperature */ temp_val = (temp_adc_val * 4.88); /* Convert adc value to equivalent voltage */ temp_val = (temp_val/10); /* LM35 gives output of 10mv/°C */ Serial.print("Temperature = "); Serial.print(temp_val); Serial.print(" Degree Celsius "); delay(1000); }

  • @somdattjangid1911
    @somdattjangid1911 Місяць тому

    #include <Keypad.h> const byte ROWS = 4; /* four rows */ const byte COLS = 4; /* four columns */ /* define the symbols on the buttons of the keypads */ char hexaKeys[ROWS][COLS] = { {'1','2','3','A'}, {'4','5','6','B'}, {'7','8','9','C'}, {'*','0','#','D'} }; byte rowPins[ROWS] = {13, 12, 11, 10}; /* connect to the row pinouts of the keypad */ byte colPins[COLS] = {9, 8, 7, 6}; /* connect to the column pinouts of the keypad */ /* initialize an instance of class NewKeypad */ Keypad customKeypad = Keypad( makeKeymap(hexaKeys), rowPins, colPins, ROWS, COLS); void setup(){ Serial.begin(9600); } void loop(){ char customKey = customKeypad.getKey(); if (customKey){ Serial.println(customKey); } }

  • @PN-KESHAV-AK
    @PN-KESHAV-AK Місяць тому

    FGAHAJAKQKPOQQKQ ah ah ha haha

  • @sunilmamnani7735
    @sunilmamnani7735 9 місяців тому

    Somji kidhar? No. Send kro, koi Samachar nhi kite saal ho gae