mirror of
https://github.com/skoelle/m5stack-dashboard.git
synced 2026-09-17 16:50:23 +00:00
12 lines
265 B
C++
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);
|