From 5e92c64216bbdd1e12305a2e7ae08ac9cf938b6c Mon Sep 17 00:00:00 2001 From: Calvin Leng Date: Thu, 28 Aug 2025 16:43:14 -0700 Subject: [PATCH] Added enum for multiple device types including SciFi; using dummy name SciWave for now --- api/device.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/api/device.proto b/api/device.proto index 8883fe2..c314883 100644 --- a/api/device.proto +++ b/api/device.proto @@ -22,6 +22,10 @@ message Peripheral { } message DeviceInfo { + enum Type { + kScifi = 0; + kSciwave = 1; + } string name = 1; string serial = 2; uint32 synapse_version = 3; @@ -29,6 +33,7 @@ message DeviceInfo { Status status = 5; repeated Peripheral peripherals = 6; DeviceConfiguration configuration = 7; + Type device_type = 8; } message DeviceConfiguration {