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.
@Godshole3 жыл бұрын
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.
@ninoremegio1818 Жыл бұрын
thank you this video is really helpful.
@shoaibliaqat22233 жыл бұрын
your videos were so helpful for my FYP thanks man
@ElectroniClinic3 жыл бұрын
Glad to hear it!
@shoaibliaqat22233 жыл бұрын
@@ElectroniClinic really bro your are very helping.... providing slightest details and for free 😁
@ElectroniClinic3 жыл бұрын
@@shoaibliaqat2223 trying my best to help you guys
@shoaibliaqat22233 жыл бұрын
@@ElectroniClinic God bless u bro...may your chanel grow immensely 🤗
@0124akash8 ай бұрын
Sir can I use micro SD card ?
@khashaa1012 жыл бұрын
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?
@magmagth43462 жыл бұрын
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
@glennnickelson6978 Жыл бұрын
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.
@12_fahrulabdulaziz919 ай бұрын
and how if sending the stored file to phone via bluetooth? have an idea my friend?
@bimmaulana2702 Жыл бұрын
hey sir, why only last data can saved in mymemory
@jegandranbalakrishnan63363 жыл бұрын
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.
@HassanMonaco3812 жыл бұрын
add a serial.begin at the start of the setup
@dsfromsomewhere3 жыл бұрын
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.
@electronic79793 жыл бұрын
👍
@Sergio-ph4dv3 жыл бұрын
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!!
@ElectroniClinic3 жыл бұрын
ya you can create new files.
@Sergio-ph4dv3 жыл бұрын
@@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!
@ElectroniClinic3 жыл бұрын
@@Sergio-ph4dv read my artcile, in the 2nd code example i have explained how to create a file.