Files
filamentguard_esp32/include/FilamentGuardApiClient.h
Bjarne Pedersen e2b9f0dc9e Kan læse og sende til API
Egentligt initial commit.
Kan læse tag og sende til API
2026-07-15 16:32:34 +02:00

20 lines
403 B
C++

#pragma once
#include <Arduino.h>
class FilamentGuardApiClient
{
public:
bool sendTagRead(
const String& json) const;
bool sendTagEvent(
const String& json) const;
private:
static constexpr const char* TagReadEndpointUrl =
"http://filamentguard.maximuss.dk/";
static constexpr const char* TagEventEndpointUrl =
"http://filamentguard.maximuss.dk/";
};