2025-12-31 15:44:48 -06:00
|
|
|
#ifndef BMHTTP_H
|
|
|
|
|
#define BMHTTP_H
|
2025-12-18 22:08:07 -06:00
|
|
|
#include <string>
|
|
|
|
|
#include "cJSON.h"
|
|
|
|
|
|
|
|
|
|
extern std::string webToken;
|
|
|
|
|
|
|
|
|
|
bool httpGET(std::string endpoint, std::string token, cJSON* &JSONresponse);
|
|
|
|
|
|
2026-01-02 13:16:43 -06:00
|
|
|
void deleteWiFiAndTokenDetails();
|
|
|
|
|
|
2025-12-18 22:08:07 -06:00
|
|
|
#endif
|