mirror of
https://github.com/skoelle/m5stack-dashboard.git
synced 2026-09-17 16:50:23 +00:00
11 lines
189 B
C
11 lines
189 B
C
#pragma once
|
|
#include <Arduino.h>
|
|
|
|
struct ApiResult {
|
|
bool success = false;
|
|
String body;
|
|
int httpCode = -1;
|
|
};
|
|
|
|
ApiResult httpGet(const String &url, uint32_t timeoutMs = 5000);
|