Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: "Card Setup"
- - Source Code compiled for: ESP32 DevKit V1
- - Source Code created on: 2024-03-31 23:08:31
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Configure WiFi and timezone settings with web page */
- /* available via both AP and STA */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <WiFi.h>
- #include <WebServer.h>
- #include <SD.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF SPI PINS *****/
- #define SD_MOSI 23
- #define SD_MISO 19
- #define SD_SCLK 18
- #define SD_CS 5
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- File file;
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(SD_CS, OUTPUT);
- // start the SPI library:
- SPI.begin(SD_SCLK, SD_MISO, SD_MOSI, SD_CS);
- // CODE FOR SYSTEM REQUIREMENT 1: Configure WiFi and timezone settings with web page
- // available via both AP and STA
- // ... Add your code here ...
- if (!SD.begin(SD_CS))
- {
- Serial.println("Initialization of SD card failed!");
- return;
- }
- // other optional initializations
- Serial.println("SD card initialized.");
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // ... Add your code here ...
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement