Category: How to use SD cards
Secure Digital, officially abbreviated as SD, is a proprietary non-volatile memory card format developed by the SD Association (SDA) for use in portable devices. How to connect and use.
We have already talked about the internal flash memories for rp2040 boards and other microcontrollers, which are very useful for storing pages or static files. However, they are not suitable for logging or similar applications, so we will learn how to connect and use an SD card which can have a lot of space, a very small form factor, and low power consumption.
It’s fundamental for data logging the interfacing with SD cards. STM32 doesn’t support well native SD library, so we will use the SdFat library, which has an Adafruit fork also that we’ll use for other purposes.
When you use a microcontroller an important features is store data, for logging or setting, for a web server or to show image. The better solution is an SD card, because It’s simple, small and low power device.
Now we are going to look how to connect and use with standard SD library with esp32.
When you use a microcontroller an important features is store data, for logging or setting, for a web server or to show image. The better solution is an SD card, because It’s simple, small and low power device.
Now we are going to look how to connect and use with standard SD library with Arduino and esp8266.