Advertisement
pleasedontcode

"SD Initialization+" rev_03

Mar 31st, 2024
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: "SD Initialization+"
  13.     - Source Code compiled for: ESP32 DevKit V1
  14.     - Source Code created on: 2024-03-31 23:22:13
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* Configure WiFi and timezone settings with web page */
  21.     /* available via both AP and STA */
  22. /****** END SYSTEM REQUIREMENTS *****/
  23.  
  24.  
  25. /********* User code review feedback **********
  26. #### Feedback 1 ####
  27. - complete the code with "Configure WiFi and timezone settings wit
  28. h web page available via both AP and STA"
  29. ********* User code review feedback **********/
  30.  
  31. /****** DEFINITION OF LIBRARIES *****/
  32. #include <SPI.h>
  33. #include <SdFat.h>    // https://github.com/greiman/SdFat
  34.  
  35. /****** FUNCTION PROTOTYPES *****/
  36. void setup(void);
  37. void loop(void);
  38.  
  39. /***** DEFINITION OF SPI PINS *****/
  40. const uint8_t sdcard_SDCardModule_SPI_PIN_MOSI_D23   = 23;
  41. const uint8_t sdcard_SDCardModule_SPI_PIN_MISO_D19   = 19;
  42. const uint8_t sdcard_SDCardModule_SPI_PIN_SCLK_D18   = 18;
  43. const uint8_t sdcard_SDCardModule_SPI_PIN_CS_D5      = 5;
  44.  
  45. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  46. SdFat sd;
  47.  
  48. void setup(void)
  49. {
  50.   // put your setup code here, to run once:
  51.  
  52.   // Set CS pin as OUTPUT
  53.   pinMode(sdcard_SDCardModule_SPI_PIN_CS_D5, OUTPUT);
  54.  
  55.   // Start the SPI library
  56.   SPI.begin();
  57.  
  58.   // Initialize the SdFat library object
  59.   if (!sd.begin(sdcard_SDCardModule_SPI_PIN_CS_D5, SD_SCK_MHZ(4))) {
  60.     Serial.println("SD card initialization failed!");
  61.     return;
  62.   }
  63.  
  64.   Serial.println("SD card initialized.");
  65.  
  66.   // Configure WiFi and timezone settings with web page
  67.   // available via both AP and STA
  68.  
  69.   // Add your code here to configure WiFi and timezone settings
  70.   configureWiFi();
  71.   configureTimezone();
  72. }
  73.  
  74. void loop(void)
  75. {
  76.   // put your main code here, to run repeatedly:
  77.  
  78.   // Add your code here for the main functionality of the sketch
  79.  
  80. }
  81.  
  82. void configureWiFi()
  83. {
  84.   // Add your code here to configure WiFi settings
  85. }
  86.  
  87. void configureTimezone()
  88. {
  89.   // Add your code here to configure timezone settings
  90. }
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement