* simple_secure_chat now with a proper CLI

* new: BaseChatMesh class, for abstract chat client
This commit is contained in:
Scott Powell 2025-01-25 22:03:25 +11:00
parent a3b7701bc0
commit 00a9e93754
8 changed files with 712 additions and 306 deletions

View file

@ -53,3 +53,8 @@ public:
double getLat() const { return ((double)_lat) / 1000000.0; }
double getLon() const { return ((double)_lon) / 1000000.0; }
};
class AdvertTimeHelper {
public:
static void formatRelativeTimeDiff(char dest[], int32_t seconds_from_now, bool short_fmt);
};