From 39be42db5f5dfd87abdc480a47e8357e899cc7bf Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Thu, 26 Jan 2023 16:29:00 -0800 Subject: [PATCH] Comment out display type I don't have protos for yet --- Meshtastic/Enums/DisplayEnums.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Meshtastic/Enums/DisplayEnums.swift b/Meshtastic/Enums/DisplayEnums.swift index a65bd94b..d124af5d 100644 --- a/Meshtastic/Enums/DisplayEnums.swift +++ b/Meshtastic/Enums/DisplayEnums.swift @@ -104,7 +104,7 @@ enum OledTypes: Int, CaseIterable, Identifiable { case auto = 0 case ssd1306 = 1 case sh1106 = 2 - case sh1107 = 3 + //case sh1107 = 3 var id: Int { self.rawValue } var description: String { @@ -116,8 +116,8 @@ enum OledTypes: Int, CaseIterable, Identifiable { return "SSD 1306" case .sh1106: return "SH 1106" - case .sh1107: - return "SH 1107" + //case .sh1107: + // return "SH 1107" } } } @@ -130,8 +130,8 @@ enum OledTypes: Int, CaseIterable, Identifiable { return Config.DisplayConfig.OledType.oledSsd1306 case .sh1106: return Config.DisplayConfig.OledType.oledSh1106 - case .sh1107: - return Config.DisplayConfig.OledType.oledSh1106 + //case .sh1107: + // return Config.DisplayConfig.OledType.oledSh1107 } } }