Initial commit: PI_mikrokontroler changes

This commit is contained in:
2026-05-09 17:52:28 +02:00
committed by Robert Duszkiewicz
parent d668467c81
commit 3dd3565a6e
550 changed files with 153891 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#ifndef APICLIENT_H
#define APICLIENT_H
#include <Arduino.h>
#include <WiFiClient.h>
#include <HTTPClient.h>
#include <FS.h>
#include <SD.h>
#include "Config.h"
#include "Watchdog.h"
class APIClient {
public:
APIClient();
bool uploadMeasurement(const String& filePath);
private:
const String boundary = "----ESP32Boundary123456789";
};
#endif