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: **Web Server**
- - Source Code NOT compiled for: ESP32 DevKit V1
- - Source Code created on: 2024-10-20 16:11:19
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* merge code. */
- /****** END SYSTEM REQUIREMENTS *****/
- /* START CODE */
- /****** DEFINITION OF LIBRARIES *****/
- #include <TinyGPSPlus.h>
- #include "ACS712.h"
- #include <WiFi.h>
- #include <ESPAsyncWebServer.h>
- #include <SPIFFS.h>
- #include <ArduinoJson.h>
- #include <EEPROM.h>
- #include <OneWire.h>
- #include <DallasTemperature.h>
- #include "X9C10X.h"
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- // Access Point credentials
- char ssid[] = "pleasedontcode.com"; // your network SSID (name)
- char pass[] = "prova1234"; // your network password (use for WPA, or use as key for WEP)
- // Create an instance of the web server
- AsyncWebServer server(80);
- // Instantiate library objects
- TinyGPSPlus gps;
- ACS712 ACS(current_pin, 3.3, 4095, 40); // pin for current sensor
- X9C10X pot(10000); // 10KΩ digital potentiometer
- OneWire oneWire1(ONE_WIRE_BUS_Temp1);
- OneWire oneWire2(ONE_WIRE_BUS_Temp2);
- DallasTemperature sensor1(&oneWire1);
- DallasTemperature sensor2(&oneWire2);
- /****** FUNCTION DEFINITIONS *****/
- void printWiFiStatus();
- void printWebPage();
- void checkClientRequest(String currentLine);
- bool ReplyWebPageContent = true;
- bool ReplyResetTime = false;
- bool postUpdateData = false;
- static const int GPSBaud = 9600;
- #define ss Serial2
- unsigned long TEMPO_ATTESA_VISUALIZZAZIONE_VELOCITA = 300;
- unsigned long SpeedShowTimer = 0;
- // Counter to track seconds
- unsigned long secondsCounter = 0;
- unsigned long previousMillis = millis(); // Variable to store the previous millis value
- unsigned long currentMillis = millis();
- unsigned long minutesCounter = 0;
- // Initialize SPIFFS for file storage
- void initSPIFFS() {
- if (!SPIFFS.begin(true)) {
- Serial.println("An error occurred while mounting SPIFFS");
- return;
- }
- Serial.println("SPIFFS mounted successfully");
- }
- void setup() {
- // Start Serial for debugging
- Serial.begin(115200);
- delay(1000);
- Serial.println("ciao");
- pot.begin(DIGPOT_INC, DIGPOT_UD, DIGPOT_CS); // pulse, direction, select
- //NON TOGLIERE - SERVE PER NON FAR SBARELLARE LA MACCHINA
- for(int i=0; i<10;i++) {
- setCurrentOutput(0);
- delay(20);
- setCurrentOutput(100);
- delay(20);
- }
- setCurrentOutput(PWM_output_percentage);
- readMinutesCounterFromEEPROM();
- ss.begin(GPSBaud);
- Serial.println("ciao2");
- sensor1.begin();
- sensor2.begin();
- smartDelay(1000);
- ACS.setMidPoint(ADC_Offset);
- Serial.println(F("Access Point Web Server"));
- // Initialize SPIFFS
- initSPIFFS();
- WiFi.mode(WIFI_AP); // Set the ESP32 to access point mode
- if (!WiFi.softAP(ssid, pass)) {
- Serial.println("Soft AP creation failed.");
- while(1);
- }
- // Print the IP address of the access point
- IPAddress IP = WiFi.softAPIP();
- Serial.print("Access Point IP Address: ");
- Serial.println(IP);
- // Serve the JPEG image
- server.on("/background.jpg", HTTP_GET, [](AsyncWebServerRequest *request){
- Serial.println("0");
- request->send(SPIFFS, "/background.jpg", "image/jpeg");
- });
- // Serve the HTML page
- server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){
- Serial.println("1");
- request->send(SPIFFS, "/index.html", "text/html");
- });
- server.on("/UPDATEDATA", HTTP_POST, [](AsyncWebServerRequest *request) {
- // Log post request handling
- //Serial.println("postUpdateData");
- // Allocate a temporary JsonDocument
- StaticJsonDocument<512> doc;
- // Gather data and populate JSON
- updateData(doc);
- // Convert the JSON document to string and send it in response
- String response;
- serializeJsonPretty(doc, response);
- request->send(200, "application/json", response);
- });
- // Start the server
- server.begin();
- }
- void loop() {
- // No logic in the loop; the server works asynchronously
- readGPSAndCheckSpeed();
- readCurrent();
- readVoltage();
- readWaterTank();
- readTemp1();
- readTemp2();
- updateMinutesCounter();
- checkRegeneration();
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement