diff --git a/src/Platform.h b/src/Platform.h index 3130ab3..451b7f3 100644 --- a/src/Platform.h +++ b/src/Platform.h @@ -27,6 +27,10 @@ class Platform : public Task { static String devName = model() + " " + Platform::deviceID(); return devName; } + static const String deviceHostname() { + static String devName = String("renderbug-") + Platform::deviceID(); + return devName; + } static void preSetup(); static void bootSplash(); static void setup();