Files
Blinds_XIAO/include/bmHTTP.hpp
pulipakaa24 5f64e5f395 1. Ensure that recalibration doesn't cause issues with failing to pause watchdog and clear flags
2. Ensure all credentials are purged on device deletion to avoid security issues

3. Clear calibration state (set to false) on device deletion.
2026-01-02 13:16:43 -06:00

12 lines
221 B
C++

#ifndef BMHTTP_H
#define BMHTTP_H
#include <string>
#include "cJSON.h"
extern std::string webToken;
bool httpGET(std::string endpoint, std::string token, cJSON* &JSONresponse);
void deleteWiFiAndTokenDetails();
#endif