24 lines
335 B
C
24 lines
335 B
C
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
enum class FilamentGuardTagEventType
|
|
{
|
|
TagPlaced,
|
|
TagRemoved
|
|
};
|
|
|
|
struct FilamentGuardTagEvent
|
|
{
|
|
String deviceId;
|
|
String hostname;
|
|
|
|
FilamentGuardTagEventType eventType;
|
|
|
|
String tagUid;
|
|
String instanceUuid;
|
|
|
|
String tagJson;
|
|
|
|
unsigned long uptimeMilliseconds = 0;
|
|
}; |