Advertisement
pleasedontcode

"SD Setup" rev_04

Mar 31st, 2024
89
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 Setup"
  13.     - Source Code compiled for: ESP32 DevKit V1
  14.     - Source Code created on: 2024-03-31 23:24:39
  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. #### Feedback 2 ####
  30. - add the code to manage requirements using #include <WiFi.h>
  31. #inc
  32. lude <WiFiClient.h>
  33. #include <WebServer.h>
  34. #include <NTPClient.h
  35. >
  36. #include <WiFiManager.h>
  37. ********* User code review feedback **********/
  38.  
  39. /****** DEFINITION OF LIBRARIES *****/
  40. #include <SPI.h>
  41. #include <SdFat.h>    // https://github.com/greiman/SdFat
  42. #include <WiFi.h>
  43. #include <WiFiClient.h>
  44. #include <WebServer.h>
  45. #include <NTPClient.h>
  46. #include <WiFiManager.h>
  47.  
  48. /****** FUNCTION PROTOTYPES *****/
  49. void setup(void);
  50. void loop(void);
  51. void configureWiFi();
  52. void configureTimezone();
  53.  
  54. /***** DEFINITION OF SPI PINS *****/
  55. const uint8_t sdcard_SDCardModule_SPI_PIN_MOSI_D23   = 23;
  56. const uint8_t sdcard_SDCardModule_SPI_PIN_MISO_D19   = 19;
  57. const uint8_t sdcard_SDCardModule_SPI_PIN_SCLK_D18   = 18;
  58. const uint8_t sdcard_SDCardModule_SPI_PIN_CS_D5      = 5;
  59.  
  60. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  61. SdFat sd;
  62.  
  63. void setup(void)
  64. {
  65.   // put your setup code here, to run once:
  66.  
  67.   // Set CS pin as OUTPUT
  68.   pinMode(sdcard_SDCardModule_SPI_PIN_CS_D5, OUTPUT);
  69.  
  70.   // Start the SPI library
  71.   SPI.begin();
  72.  
  73.   // Initialize the SdFat library object
  74.   if (!sd.begin(sdcard_SDCardModule_SPI_PIN_CS_D5, SD_SCK_MHZ(4))) {
  75.     Serial.println("SD card initialization failed!");
  76.     return;
  77.   }
  78.  
  79.   Serial.println("SD card initialized.");
  80.  
  81.   // Configure WiFi and timezone settings with web page
  82.   // available via both AP and STA
  83.   configureWiFi();
  84.   configureTimezone();
  85. }
  86.  
  87. void loop(void)
  88. {
  89.   // put your main code here, to run repeatedly:
  90.  
  91.   // Add your code here for the main functionality of the sketch
  92.  
  93. }
  94.  
  95. void configureWiFi()
  96. {
  97.   // Add your code here to configure WiFi settings
  98. }
  99.  
  100. void configureTimezone()
  101. {
  102.   // Add your code here to configure timezone settings
  103. }
  104.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement