Advertisement
pleasedontcode

Initialize Hardware rev_10

Apr 21st, 2024
84
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: Initialize Hardware
  13.     - Source Code NOT compiled for: ESP32 DevKit V1
  14.     - Source Code created on: 2024-04-21 21:57:05
  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. /****** DEFINITION OF LIBRARIES *****/
  25. #include <SPI.h>
  26. #include <SdFat.h>
  27.  
  28. /****** FUNCTION PROTOTYPES *****/
  29. void setup(void);
  30. void loop(void);
  31.  
  32. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  33. const uint8_t test_PIN_D4 = 4;
  34.  
  35. /***** DEFINITION OF SPI PINS *****/
  36. const uint8_t sdcard_SDCardModule_SPI_PIN_MOSI_D23 = 23;
  37. const uint8_t sdcard_SDCardModule_SPI_PIN_MISO_D19 = 19;
  38. const uint8_t sdcard_SDCardModule_SPI_PIN_SCLK_D18 = 18;
  39. const uint8_t sdcard_SDCardModule_SPI_PIN_CS_D5 = 5;
  40.  
  41. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  42. SdFs sd; // Create an instance of the SdFs class
  43.  
  44. void setup(void) {
  45.   // put your setup code here, to run once:
  46.   pinMode(test_PIN_D4, INPUT_PULLUP);
  47.   pinMode(sdcard_SDCardModule_SPI_PIN_CS_D5, OUTPUT);
  48.  
  49.   // Start the SPI library
  50.   SPI.begin();
  51.  
  52.   // Initialize the SD card and file system
  53.   if (!sd.begin(sdcard_SDCardModule_SPI_PIN_CS_D5)) {
  54.     Serial.println("SD initialization failed.");
  55.     // Add error handling code here
  56.   }
  57.  
  58.   // Configure WiFi and timezone settings with web page
  59.   // available via both AP and STA
  60. }
  61.  
  62. void loop(void) {
  63.   // put your main code here, to run repeatedly:
  64. }
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement