15 lines
227 B
C++
15 lines
227 B
C++
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include "FilamentGuardDeviceInfo.h"
|
|
|
|
class DeviceIdentity
|
|
{
|
|
public:
|
|
FilamentGuardDeviceInfo create(
|
|
const String& hostname) const;
|
|
|
|
private:
|
|
String createDeviceId() const;
|
|
}; |