IOT Craftsman
IOT Craftsman
  • Видео 26
  • Просмотров 7 512
Arduino based Smart Blind shoes for Visually Impaired
Introducing Smart Blind Shoes, our pioneering project designed to provide real-time feedback for individuals with visual impairments. Equipped with advanced sensors, these shoes offer immediate alerts about obstacles, enhancing safety and confidence in everyday navigation. Join us on our journey to empower the visually impaired community with innovative technology. #SmartBlindShoes #Accessibility #AssistiveTech #Innovation #VisuallyImpaired
.
.
.
.
.
.
Click the below link to get the project:
wa.me/p/7634687369902003/917200842679
Просмотров: 266

Видео

Smart IoT Ball Sorter: Sorting by Color and Size with Precision!
Просмотров 413 месяца назад
Smart IoT Ball Sorter: Sorting by Color and Size with Precision!
LiFi based Communication System using Arduino
Просмотров 843 месяца назад
Get ready to witness the future of communication in action! Join us for a captivating demonstration of our LiFi communication system built using Arduino microcontrollers. Experience the lightning-fast data transfer speeds and enhanced security firsthand as we showcase the incredible capabilities of LiFi technology. In this hands-on demo, we'll walk you through the functionality of our Arduino-b...
Underground Cable Fault Detector System using Arduino Uno
Просмотров 444 месяца назад
🚀 Ready to supercharge your tech journey? Join the IoT Craftsman community and level up your DIY skills with our latest project: the Underground Cable Fault Detector using Arduino! 🛠️⚡️ Whether you're a seasoned maker or just getting started, our channel is your go-to destination for inspiring projects, practical tutorials, and in-depth insights into the world of IoT. Hit that subscribe button ...
Smart Shopping Cart using RFID tags and Arduino Nano
Просмотров 376 месяцев назад
🪄 Transform your grocery shopping experience with our DIY SMART SHOPPING CART tutorial! Say goodbye to paper lists and hello to the future of shopping. Learn how to effortlessly scan products with RFID tags, track your cart's contents, and calculate the total price in real-time on an LCD display. With easy-to-follow Arduino code, you'll level up your tech skills while customizing your shopping ...
Robotic Arm with PS2 controller using Arduino!
Просмотров 379 месяцев назад
Building a robotic arm with a #PS2Controller using #Arduino is an engaging project that combines mechanical and electronic elements to create a functional, remotely operated robotic arm. The primary components involved in this project are the robotic arm itself, servo motors, an Arduino board, a PS2 controller module, and a suitable power supply. The robotic arm is the core physical structure t...
Indoor Air Quality Monitor System using Arduino #airqualityindex #arduinoproject #arduinonano #diy
Просмотров 4,1 тыс.Год назад
Indoor Air Quality Monitor System using Arduino #airqualityindex #arduinoproject #arduinonano #diy

Комментарии

  • @Ayush.7841
    @Ayush.7841 5 дней назад

    Is it important to put ice on top

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

    can you keep the links of components to purchase ,they are not available on online

  • @user-hk4wd1do6k
    @user-hk4wd1do6k 4 месяца назад

    How can I contact

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

    i really need it send the cod

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

      Please check the attached link

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

    can you send the cod please

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

    Code is not there bro🙃

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

      Please check AQI. ino file

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

      @@iot_craftsman AQI. ino file showing error in file

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

      @@gouthamkumar7477 what is the error?

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

    Where is the code I downloaded it but I can’t find it

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

      It should be in your downloads

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

    Hi! I can't find any LCD breakout board, it's sad but thankfully i have available LCD display Keyestuido. But the question is, can i use the Keyestudio IIC/I2C 162 1602 16X2 LCD Module Display Screen? Is it compatible if i use this kind of LCD display to make this Air Quality Monitoring System? If i can, do you have a code with this kind of lcd display? Help me please for my research study :)

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

      : )

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

      Hey! You can use Keyestudio lcd moduel, Only the libraries might change, use library liquidcrystal_i2c, it might work

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

      hi! what is the code if i use this library? :))@@iot_craftsman

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

      Hi! please help me, the code is not compatible on the lcd display 16x2 keyestuido, because the LCD display keyestuido only has four pins. what should i change in the code? if the lcd display keyestuido only has four pins. please help

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

      @@iot_craftsman #include <LiquidCrystal_I2C.h> #include <Wire.h> int sensorValue; LiquidCrystal_I2C lcd(0x27,16,2); void setup() { // put your setup code here, to run once: pinMode(A0,INPUT); lcd.init(); lcd.backlight(); Serial.begin(9600); // sets the serial port to 9600 lcd.begin(16, 2); lcd.print("Air Quality"); lcd.setCursor(1, 0); lcd.print(" System"); pinMode(A0, INPUT); } void loop() { // put your main code here, to run repeatedly: sensorValue = analogRead(A0); // read analog input pin 0 lcd.clear(); lcd.setCursor(0,0); lcd.print("AQI: "); // lcd.setCursor(0,8); lcd.print(sensorValue); Serial.print(sensorValue); if (sensorValue <= 180) { lcd.setCursor(1,1); lcd.print("Good "); } else if (sensorValue >= 181 && sensorValue < 350){ lcd.setCursor(1,1); lcd.print("Poor "); } else { lcd.setCursor(1,1); lcd.print("Toxic "); } delay(3000); } can you check this? is this correct? :))

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

    Awesome bro 🤩

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

    Bro how much

  • @tahifrewcc-zl4hi
    @tahifrewcc-zl4hi Год назад

    Great one! Keep going!

  • @KhushiJainM-bs1fk
    @KhushiJainM-bs1fk Год назад

    Wohhooooo🎉🎉

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

    Woohoo lesgoo🎉