Files
wt32sc01-dashboard/src/api/http_client.h
T
2026-08-04 19:01:20 +02:00

12 lines
265 B
C++

// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
#pragma once
#include <Arduino.h>
struct ApiResult {
bool success = false;
String body;
int httpCode = -1;
};
ApiResult httpGet(const String &url, uint32_t timeoutMs = 5000);