EEPROM in Arduino | Arduino Programming Tutorial in HINDI

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • in this video we will see the eeprom library in arduino. by using eeprom we can store the data permanently like the hard drive of our computer.
    complete arduino programming :- • Arduino programming tu...

Комментарии • 27

  • @Deep_Thoughts99
    @Deep_Thoughts99 День назад +1

    Very great.... Thanks

  • @RakeshKumar-hs8yz
    @RakeshKumar-hs8yz 2 года назад

    Apka cod super se bhi uper hai ku ki aapko explanation bohot achha hai

  • @JiMake
    @JiMake 2 года назад +1

    Superb Laga Brother,,,God bless you

  • @dvgelectrician1605
    @dvgelectrician1605 2 года назад +1

    hamesha ki tarha super.

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

    Thank you sir

  • @anandcp4927
    @anandcp4927 Год назад +1

    Thank you sir, This video help me a lot. One question I want ask you that how to store characters in eeprom?

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

      #include
      int eepromAddress = 0; // Start from the beginning of EEPROM
      char myString[] = "Hello, EEPROM!";
      void setup() {
      Serial.begin(9600);
      // Write the string to EEPROM
      for (int i = 0; i < strlen(myString); i++) {
      EEPROM.write(eepromAddress, myString[i]);
      eepromAddress++; // Move to the next EEPROM address
      }
      EEPROM.write(eepromAddress, '\0'); // Null-terminate the string
      eepromAddress = 0; // Reset the address to read from the beginning
      }
      void loop() {
      char readString[15]; // Make sure it's large enough to store your string
      // Read the string from EEPROM
      for (int i = 0; i < strlen(myString); i++) {
      readString[i] = EEPROM.read(eepromAddress);
      eepromAddress++; // Move to the next EEPROM address
      }
      readString[strlen(myString)] = '\0'; // Null-terminate the string
      Serial.println("Read from EEPROM: " + String(readString));
      while (true) {
      // Your main loop code here
      }
      }

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

      Thank you so much sir.. I'll try this

  • @g.p.7880
    @g.p.7880 Год назад +2

    Sir how to clear all EEPROM data from Arduino?

  • @Paltansvlog15
    @Paltansvlog15 Год назад +1

    Very nice sir ❣️

  • @latesttrendinworld
    @latesttrendinworld 2 года назад +1

    Supper method sir

  • @HarbansSingh-ce2tm
    @HarbansSingh-ce2tm Год назад +1

    Good job bro ...........❤

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

    Good sir thinku btane ke leye

  • @LedPixelAnimator
    @LedPixelAnimator 2 года назад

    Super sir apka class

  • @rizwanelectricelectronic1063
    @rizwanelectricelectronic1063 2 года назад +1

    Nice veadio

  • @npslucknow9235
    @npslucknow9235 2 года назад

    delay(1000);
    1000 ko hum kitna increase kar sakte hain sir ?

  • @kisanhelp1064
    @kisanhelp1064 2 года назад +1

    Hii i am arvind
    My Question HOW TO Write EEPROM in NODEMCU

  • @harishkamble6750
    @harishkamble6750 2 года назад

    Sir sd library ke examples,sd class ,file class ke bare me video banayi ye please

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

    Sir muje complete Arduino sikhna hai please sir help

  • @sandeepgupta6526
    @sandeepgupta6526 2 года назад

    Thanks, after 1 lakh, arduino works properly or not

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

    Bro maine socha subscribe karunga lekin badme dekha already karke rakha hu😅

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

    how to make EPROM stopwatch his how to coding
    memory saver stopwatch

  • @g.p.7880
    @g.p.7880 Год назад

    Bro aapne Arduino programing to sikha diya lekin iska practice kaise karen kyonki video dekhne ke baad mai chizon ko bhul jata hu. Aur fir se video ko dekhna padta hai please make a video on this

  • @kisanhelp1064
    @kisanhelp1064 2 года назад

    EEPROM 1byt store 0-255
    But i have need store 0 address in 1000 possible

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

    Good thanks, but not you done updated

  • @amitahirwal1007
    @amitahirwal1007 2 года назад

    Thank you sir