From 52ad70867b38ee8832e43177db343208dc994efe Mon Sep 17 00:00:00 2001 From: Hubald Verzijl Date: Wed, 6 Aug 2025 11:22:11 +0200 Subject: [PATCH] Included unique ID. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index ef945e6..8acc21f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,7 +15,7 @@ endpoints! { | EndpointTy | RequestTy | ResponseTy | Path | | ---------- | --------- | ---------- | ---- | | PingEndpoint | u32 | u32 | "ping" | - | GetUniqueIdEndpoint | () | u64 | "get_id" | + | GetUniqueIdEndpoint | () | [u8; 12] | "get_id" | | SetSingleLedEndpoint | SingleLed | SingleLedSetResult | "led/set_one" | | SetAllLedEndpoint | AllLedArray | () | "led/set_all" | | StartAccelerationEndpoint | StartAccel | () | "accel/start" |