You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since I'm some ESP32 boards (Wemos Lolin D32 Pro for example) have a SD card port. It might be a good idea to use that port for reading WiFi and Spotify credentials, instead of setting those during build.
The main problem is that, on the Wemos Lolin D32 Pro the SD card port is connected to the SPI port. It's the same SPI port as the one by the RFID reader. That's not that big of a problem since... it's just a bus... it's possible handle both RFID reader and the SD card port with that one SPI.
The creds could be stored in files spotify.txt, wifi.txt. Nothing fancy. The sd_card_example_main.c file in the esp-idf directory shows how to implement reading from the card. Seems pretty simple.
The text was updated successfully, but these errors were encountered:
Since I'm some ESP32 boards (Wemos Lolin D32 Pro for example) have a SD card port. It might be a good idea to use that port for reading WiFi and Spotify credentials, instead of setting those during build.
The main problem is that, on the Wemos Lolin D32 Pro the SD card port is connected to the SPI port. It's the same SPI port as the one by the RFID reader. That's not that big of a problem since... it's just a bus... it's possible handle both RFID reader and the SD card port with that one SPI.
Pins listed below are used for SPI.
The creds could be stored in files
spotify.txt
,wifi.txt
. Nothing fancy. Thesd_card_example_main.c
file in theesp-idf
directory shows how to implement reading from the card. Seems pretty simple.The text was updated successfully, but these errors were encountered: