New Arduino IDE 2.1.1 | Top 10 Features

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ก.ย. 2024
  • in this video we will learn the new features of Arduino IDE 2.1.1 in complete detail.
    complete C++ in one video: - • C++ Full Course in One...
    complete Arduino programming: - • Complete Arduino progr...
    complete Arduino playlist: - • Arduino programming tu...
    subscribe sbs online classes to get more video.

ความคิดเห็น • 29

  • @vijayasundaramgounder2171
    @vijayasundaramgounder2171 9 หลายเดือนก่อน +1

    Very nice your.teaching methods

  • @DaleepKumar-lt8uf
    @DaleepKumar-lt8uf 6 หลายเดือนก่อน +1

    Very nice 👌

  • @gulsherahmad6198
    @gulsherahmad6198 10 หลายเดือนก่อน +1

    Knowledgeable video sir . please make a video on "Debugging" option is also .

  • @HarbansSingh-ce2tm
    @HarbansSingh-ce2tm ปีที่แล้ว +2

    Nice explain bro...Android mobile phone me bhi chale ga arduino ide 2.1.1 old arduino ide jesa

  • @rupsrana77
    @rupsrana77 ปีที่แล้ว +2

    Nice explain sir
    Always fine.....

  • @cobragaming-6355
    @cobragaming-6355 ปีที่แล้ว

    Sir microcontroller ko arduino se program kese karte he ye topic me video bano please

  • @Swaraaz-ru9fc
    @Swaraaz-ru9fc ปีที่แล้ว +1

    Sir mana Arduino ide 2.2.1 install Kia ha or mujha "windows defender farewell has blocked some features of this"massage show ho Raha hai kya muja isko use korna chia.... please help 🙏🙏

  • @HarbansSingh-ce2tm
    @HarbansSingh-ce2tm 8 หลายเดือนก่อน

    Good video bro..❤ Arduino new ide 2.2.1 version same ha bro. Install kar le window 10 ka leyea

  • @warrior7740
    @warrior7740 ปีที่แล้ว +1

    Very interesting 👌👍

  • @shivshakti158
    @shivshakti158 ปีที่แล้ว +1

    thanks

  • @Ind_tech4793
    @Ind_tech4793 ปีที่แล้ว +2

    Thank ❤❤

  • @doomhammer6724
    @doomhammer6724 9 หลายเดือนก่อน

    I have no coloring for the functions, keywords, etc... it's all black text and super hard to read. I tried redownloading it but it didn't work. What should I do?

  • @technicalsubham2818
    @technicalsubham2818 ปีที่แล้ว

    Bhai Bro me jab aurdino me code upload kar rha hu ... Ye error dikha rha he kya Karu bro....................... Plz help🥺🤝🤝🤝Exit 1 status error dikha rha he

  • @SamirKhan-mq6ib
    @SamirKhan-mq6ib ปีที่แล้ว +1

    Great brother

  • @baraiyavineshkumar2736
    @baraiyavineshkumar2736 ปีที่แล้ว

    Sir, gsm module se relay operating ka video banaiye with programming

  • @spiderman-ws5ei
    @spiderman-ws5ei ปีที่แล้ว +1

    Reason why channel is underated.
    Product is good but presentation is not.
    Jo dikhta h vo bikta h

  • @pankajKumar-jc3xo
    @pankajKumar-jc3xo 3 หลายเดือนก่อน

    Bhai Mere computer mein Arduino ide open nahi ho raha help me

  • @pareshumap4334
    @pareshumap4334 ปีที่แล้ว

    Nice information sir please one more video on avr micro controller coding in ardiuno

  • @shriradhekrishnakrishna9085
    @shriradhekrishnakrishna9085 ปีที่แล้ว

    🌷👍🌼🙏 भईयाजी मैं तो 7th तक ही पड़ा हुआ हूँ ! इसमें इंटरेस्ट लूँ तो भविष्य सफलता मिल सकती है मुझे 👍 मार्गदर्शन करें कहाँ से शुरू करूँ ❗️हिंदी माध्यम से कोई गाइडेंस बुक आती है क्या 🌼🙏 जय श्री राधे राधे भैया

  • @SamirKhan-mq6ib
    @SamirKhan-mq6ib ปีที่แล้ว

    Kindly make a video for basic PID

  • @keshavcricketshorts
    @keshavcricketshorts ปีที่แล้ว

    Hi sir me jab bhi program kar raha hoon arduino aur blue tooth module ko coecte karke to wo serial monitor me to kam karta hai lekin jab me phone se koi comand du jaise f forward kr liye to wo moter ko forward nahi krta na hi kuch aur but computer se chalta hai to please give me reply

    • @sbsonlineclasses5963
      @sbsonlineclasses5963  ปีที่แล้ว

      1.Motor driver ka connection check kro
      2. Code me moter driver se connected pin me value sahi write ho raha na
      3. Proper supply de rahe na motor driver ko
      4. Software serial ka use kr k ek bar check krna

    • @keshavcricketshorts
      @keshavcricketshorts ปีที่แล้ว

      @@sbsonlineclasses5963 #include
      // Motor Driver Shield pins
      const int motor1Pin1 = 2; // Motor 1, Input 1
      const int motor1Pin2 = 3; // Motor 1, Input 2
      const int motor2Pin1 = 4; // Motor 2, Input 1
      const int motor2Pin2 = 5; // Motor 2, Input 2
      SoftwareSerial bluetooth(0, 1); // RX, TX
      void setup() {
      // Motor pins as outputs
      pinMode(motor1Pin1, OUTPUT);
      pinMode(motor1Pin2, OUTPUT);
      pinMode(motor2Pin1, OUTPUT);
      pinMode(motor2Pin2, OUTPUT);
      // Bluetooth module setup
      bluetooth.begin(9600);
      }
      void loop() {
      if (bluetooth.available() > 0) {
      char command = bluetooth.read();
      executeCommand(command);
      }
      }
      void executeCommand(char command) {
      switch (command) {
      case 'F': // Forward
      digitalWrite(motor1Pin1, HIGH);
      digitalWrite(motor1Pin2, LOW);
      digitalWrite(motor2Pin1, HIGH);
      digitalWrite(motor2Pin2, LOW);
      break;
      case 'B': // Backward
      digitalWrite(motor1Pin1, LOW);
      digitalWrite(motor1Pin2, HIGH);
      digitalWrite(motor2Pin1, LOW);
      digitalWrite(motor2Pin2, HIGH);
      break;
      case 'L': // Left
      digitalWrite(motor1Pin1, LOW);
      digitalWrite(motor1Pin2, HIGH);
      digitalWrite(motor2Pin1, HIGH);
      digitalWrite(motor2Pin2, LOW);
      break;
      case 'R': // Right
      digitalWrite(motor1Pin1, HIGH);
      digitalWrite(motor1Pin2, LOW);
      digitalWrite(motor2Pin1, LOW);
      digitalWrite(motor2Pin2, HIGH);
      break;
      case 'S': // Stop
      digitalWrite(motor1Pin1, LOW);
      digitalWrite(motor1Pin2, LOW);
      digitalWrite(motor2Pin1, LOW);
      digitalWrite(motor2Pin2, LOW);
      break;
      }
      }
      Sir ye code dala tah me

  • @harshadparmar8361
    @harshadparmar8361 ปีที่แล้ว

    Bhai lcd Manu sub Manu sikhao

  • @anupkarmakar7474
    @anupkarmakar7474 ปีที่แล้ว

    app ka sath contact karne ke liye ki ha