Advertisement
pleasedontcode

"SD Setup" rev_05

Mar 31st, 2024
90
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:28:45
  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. #### Feedback 3 ####
  38. - add code into configureWiFi and configureTimezone
  39. ********* User code review feedback **********/
  40.  
  41. /****** DEFINITION OF LIBRARIES *****/
  42. #include <SPI.h>
  43. #include <SdFat.h>    // https://github.com/greiman/SdFat
  44. #include <WiFi.h>
  45. #include <WiFiClient.h>
  46. #include <WebServer.h>
  47. #include <NTPClient.h>
  48. #include <WiFiManager.h>
  49.  
  50. /****** FUNCTION PROTOTYPES *****/
  51. void setup(void);
  52. void loop(void);
  53. void configureWiFi();
  54. void configureTimezone();
  55.  
  56. /***** DEFINITION OF SPI PINS *****/
  57. const uint8_t sdcard_SDCardModule_SPI_PIN_MOSI_D23   = 23;
  58. const uint8_t sdcard_SDCardModule_SPI_PIN_MISO_D19   = 19;
  59. const uint8_t sdcard_SDCardModule_SPI_PIN_SCLK_D18   = 18;
  60. const uint8_t sdcard_SDCardModule_SPI_PIN_CS_D5      = 5;
  61.  
  62. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  63. SdFat sd;
  64.  
  65. void setup(void)
  66. {
  67.   // put your setup code here, to run once:
  68.  
  69.   // Set CS pin as OUTPUT
  70.   pinMode(sdcard_SDCardModule_SPI_PIN_CS_D5, OUTPUT);
  71.  
  72.   // Start the SPI library
  73.   SPI.begin();
  74.  
  75.   // Initialize the SdFat library object
  76.   if (!sd.begin(sdcard_SDCardModule_SPI_PIN_CS_D5, SD_SCK_MHZ(4))) {
  77.     Serial.println("SD card initialization failed!");
  78.     return;
  79.   }
  80.  
  81.   Serial.println("SD card initialized.");
  82.  
  83.   // Configure WiFi and timezone settings with web page
  84.   // available via both AP and STA
  85.   configureWiFi();
  86.   configureTimezone();
  87. }
  88.  
  89. void loop(void)
  90. {
  91.   // put your main code here, to run repeatedly:
  92.  
  93.   // Add your code here for the main functionality of the sketch
  94.  
  95. }
  96.  
  97. void configureWiFi()
  98. {
  99.   // Add your code here to configure WiFi settings
  100.   // Use the WiFiManager library to handle WiFi configuration
  101.   // Example:
  102.   // WiFiManager wifiManager;
  103.   // wifiManager.autoConnect("ESP32AP");
  104. }
  105.  
  106. void configureTimezone()
  107. {
  108.   // Add your code here to configure timezone settings
  109.   // Use the NTPClient library to synchronize time with an NTP server
  110.   // Example:
  111.   // WiFiUDP ntpUDP;
  112.   // NTPClient timeClient(ntpUDP);
  113.   // timeClient.begin();
  114.   // timeClient.setTimeOffset(3600);  // Set the timezone offset in seconds
  115. }
  116.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement