From c5091578d631be075ea2c10bb8635fae7e299ce9 Mon Sep 17 00:00:00 2001 From: csawatzky Date: Fri, 25 Jul 2025 16:19:29 -0600 Subject: [PATCH] adding versioning for detect i2c on v2 devices --- src/models/Device.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/models/Device.ts b/src/models/Device.ts index e45f7aa..31fb95f 100644 --- a/src/models/Device.ts +++ b/src/models/Device.ts @@ -38,15 +38,15 @@ const featureVersions: Map = new Map([ { photon: "N/A", electron: "N/A", - v2Wifi: "N/A", - v2Cell: "N/A", - v2WifiS3: "N/A", - v2CellS3: "N/A", - v2CellBlack: "N/A", - v2CellGreen: "N/A", - v2WifiBlue: "N/A", - v2CellBlue: "N/A", - v2EthBlue: "N/A" + v2Wifi: "2.1.6", + v2Cell: "2.1.6", + v2WifiS3: "2.1.6", + v2CellS3: "2.1.6", + v2CellBlack: "2.1.6", + v2CellGreen: "2.1.6", + v2WifiBlue: "2.1.6", + v2CellBlue: "2.1.6", + v2EthBlue: "2.1.6" } ] ]);