SD Card Module with Arduino & ESP32, Arduino Data Logger, ESP32 Data Logger, Micro SD Card Adaptor

Поделиться
HTML-код
  • Опубликовано: 26 авг 2024
  • Download Circuit Diagrams and Programming:
    www.electronic...
    Subscribe to my New RUclips Channel, if you want to watch my videos in Hindi/Urdu
    / @letsgetstartedd
    Related videos:
    ESP32 Board manager installation
    • ESP32 Arduino IDE | ES...
    ESP32 Power Supply and PCB Designing:
    • ESP32 Power Supply PCB...
    ESP32 Complete Course for Beginners:
    Upgrading website... Your patience is highly appreciated...
    Support me on Patreon and get access to hundreds of projects:
    / electroniclinic
    sign up for a free account and download hardware designing and programming books:
    amzn.to/2WeBCw1
    ***********
    free Amazon Business Account:
    amzn.to/2MiPiBT
    ************
    Project Description:
    ********************
    In this tutorial, you will learn how to interface this low-cost and commonly used SD card Module with Arduino to make an efficient Arduino Data Logger. We will also use the Micro SD card Module with the ESP32 for logging or storing the Sensor Data in a text file.
    In this tutorial, I will also explain how to use this Micro SD card Adaptor with the ESP32 Wifi + Bluetooth module if in case you don’t have this SD card Module.
    As this is a very basic getting started tutorial on how to use the SD Card module and SD card adaptor with the Arduino and ESP32 so, I have tried my best to keep things simpler so that you guys can easily follow each and every step. I will use the potentiometer as the sensor for the data logging which of course you can replace with any other sensor as per your requirement.
    Without any further delay let’s get started!!!
    ********************
    Amazon Purchase links:
    *****************
    Arduino Nano USB-C Type ( recommended):
    amzn.to/4ahGLdk
    ESP32 WiFi + Bluetooth Module for iOT Projects (recommended), more IO pins, improved speed, and supports a Lipo Battery:
    amzn.to/3v40DkE
    Arduino SD Card Module
    amzn.to/3bhYBj7
    8GB Micro SD card
    amzn.to/3qDVSqE
    Micro SD Card Adaptor
    amzn.to/3aAq4gA
    Arduino Uno:
    amzn.to/37oaksm
    Other Must-Have Tools and Components:
    Arduino Uno, Nano, Mega, Micro "All types of Arduino Boards":
    amzn.to/3fk5OTi
    Top Arduino Sensors:
    amzn.to/3vZbnfM
    Super Starter kit for Beginners
    amzn.to/3cq56C5
    Top Oscilloscopes
    amzn.to/3ctF3d8
    Variable Supply:
    amzn.to/2PEAqE7
    Digital Multimeter:
    amzn.to/2QGRPg1
    Top Soldering iron kits: "best"
    amzn.to/39nqDtb
    Top Portable drill machines:
    amzn.to/3suQMh7
    Jumper Wires:
    amzn.to/2NYPEDA
    3D printers:
    amzn.to/3ruG1dt
    CNC Machines:
    amzn.to/3cuZWVv
    Electronics Accessories:
    amzn.to/3sueV7z
    Hardware Tools:
    amzn.to/3m9UhaN
    DISCLAIMER: This video and description contain affiliate links, which means that if you click on one of the product links, I will receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for your support!
    ****************
    Follow me on Facebook:
    / electronic-clinic-7697...
    Follow me on Instagram:
    / electroniclinic
    Email:
    stu_engineering@yahoo.com
    About the Electronic Clinic:
    Electronic Clinic helps the students and other professionals to learn electronics, designing, and programming. Electronic Clinic has tutorials on Arduino, Arduino Nano, Raspberry PI, image processing, gsm based projects, Bluetooth based projects, esp8266 projects, Nodemcu projects, robotics, desktop application designing and programming, PLC, SCADA, RC Planes, Electronics, Power Generation, HMI, and much more. Check my Playlists.
    Related Tags:
    #SdCardModule
    #ArduinoDataLogging
    #ESP32DataLogging
    SD CARD MODULE WITH ARDUINO
    SD CARD MODULE ARDUINO PROGRAMMING
    SD CARD MODULE INTERFACING WITH ARDUINO
    SD CARD MODULE INTERFACING WITH ESP32
    SD CARD MODULE ESP32 PROGRAMMING
    ARDUINO DATA LOGGING
    ESP32 DATA LOGGING
    SENSOR DATA IN TEXT FILE
    HOW TO USE SD CARD MODULE WITH ARDUINO
    HOW TO USE SD CARD MODULE WITH ESP32
    ARDUINO DATA LOGGER
    ESP32 DATA LOGGER
    ARDUINO ESP32
    ESP32 ARDUINO
    SENSOR DATA LOGGING WITH ARDUINO
    SENSOR DATA LOGGING WITH ESP32
    SD CARD MODULE BASICS
    SD CARD MODULE FEATURES
    SD CARD MODULE CONNECTION WITH ESP32
    HOW TO USE SD CARD MODULE

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

  • @Godshole
    @Godshole 3 года назад +1

    Insanely straight forward and SHORT! so helpful and it WORKS!!! being able to copy paste the code from your tutorial, genius! And generous, thank you.

  • @shoaibliaqat2223
    @shoaibliaqat2223 3 года назад +1

    your videos were so helpful for my FYP thanks man

    • @ElectroniClinic
      @ElectroniClinic  3 года назад

      Glad to hear it!

    • @shoaibliaqat2223
      @shoaibliaqat2223 3 года назад +1

      @@ElectroniClinic really bro your are very helping.... providing slightest details and for free 😁

    • @ElectroniClinic
      @ElectroniClinic  3 года назад

      @@shoaibliaqat2223 trying my best to help you guys

    • @shoaibliaqat2223
      @shoaibliaqat2223 3 года назад +1

      @@ElectroniClinic God bless u bro...may your chanel grow immensely 🤗

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

    thank you this video is really helpful.

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

    Be careful: The adapter description in the video at timecode 10:14 ist NOT CORRECT!!!
    You have to consider that it starts with MISO at PIN 2!! (NOT Pin 1). You can look also on different other examples where the correct pinout for connecting the Micro-SD-Adapter by soldering cables.
    Thank you for all the other information in the video.

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

    Great!; thank you. I needed to change the SPI pins, could not find anything on the net to use pins other than the default. I found if you edit the pins.h file for the "C:\Users\glenn\.platformio\packages\framework-arduinoespressif32\variants\esp32"; in my case. Commented out the default and added the pins I wanted to use.
    /* Commented out the default spi pins and added alturnaltives */
    /*
    static const uint8_t SS = 5;
    static const uint8_t MOSI = 23;
    static const uint8_t MISO = 19;
    static const uint8_t SCK = 18;
    */
    static const uint8_t SS = 25;
    static const uint8_t MOSI = 32;
    static const uint8_t MISO = 27;
    static const uint8_t SCK = 4;
    One could make a special variant; however, I never tried this.

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

    So helpful
    also have question
    now we see how is it possible to use SD card and Arduino as analog data logger, so is it possible to use SD card and Arduino as DGITAL data logger and then can they read data again and how?
    many thanks

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

    hey sir, why only last data can saved in mymemory

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

    Hi! I am trying to save data from a force sensor that is sent from one esp32 to another via Wi-Fi. How do I incorporate this code into my data logging esp32?

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

    Sir can I use micro SD card ?

  • @jegandranbalakrishnan6336
    @jegandranbalakrishnan6336 3 года назад +1

    hi sir, i tried your tutorial, when i connect my sd card module with node mc esp32 board, there is no output in my serial monitor. Can you please help me on this.

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

      add a serial.begin at the start of the setup

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

    and how if sending the stored file to phone via bluetooth? have an idea my friend?

  • @dsfromsomewhere
    @dsfromsomewhere 3 года назад

    Dear Sir. Can you help me, please?
    I need to know, how to open(read) a file without need to wrote the file name on the skecthe (eg."myText.txt").
    For example, in my SD card, I have a txt file with any name. I want to open this file, regardless of the filename, only by the file extension, as long as it is a text file. I am trying to build a hardware, that writes binary files to an EEPROM chip. If I don't get this, I will have to keep renaming the files on the sketche for each different file I want to write to memory.

  • @electronic7979
    @electronic7979 3 года назад +1

    👍

  • @Sergio-ph4dv
    @Sergio-ph4dv 3 года назад

    Hi! This video is really helpful for me, thank you! I have a question: is it posible to create a new "Data" file, for example, each 10 minutes? I want to store data in text files and my idea is that they are created automatically by the arduino in an SD card, every ten minutes. I don't know if it is posible only using an arduino :/ Did I make myself clear? I hope so.. Thank you very much!!

    • @ElectroniClinic
      @ElectroniClinic  3 года назад +1

      ya you can create new files.

    • @Sergio-ph4dv
      @Sergio-ph4dv 3 года назад

      @@ElectroniClinic and do you know where can I find information on how to do it, code, etc.? Maybe you have a video explaining it? Thanks!

    • @ElectroniClinic
      @ElectroniClinic  3 года назад +1

      @@Sergio-ph4dv read my artcile, in the 2nd code example i have explained how to create a file.