diff --git a/interface/src/project/SettingsApplication.tsx b/interface/src/project/SettingsApplication.tsx
index 72ebb7a84..6a1dd3d32 100644
--- a/interface/src/project/SettingsApplication.tsx
+++ b/interface/src/project/SettingsApplication.tsx
@@ -311,12 +311,17 @@ const SettingsApplication: FC = () => {
margin="normal"
select
>
+
-
-
+
+
+
+
+
+
@@ -344,9 +349,7 @@ const SettingsApplication: FC = () => {
-
+
{data.led_gpio !== 0 && (
diff --git a/src/console.cpp b/src/console.cpp
index 1cba1e74d..b9a3eaa46 100644
--- a/src/console.cpp
+++ b/src/console.cpp
@@ -151,11 +151,11 @@ void EMSESPShell::add_console_commands() {
},
"local");
} else {
- shell.println("Must be 0B, 0D, 0A, 0F or 12");
+ shell.println("Must be 0B, 0D, 0A, 0E, 0F, or 48 - 4D");
}
},
[](Shell & shell __attribute__((unused)), const std::vector & arguments __attribute__((unused))) -> const std::vector {
- return std::vector{"0B", "0D", "0A", "0F", "12"};
+ return std::vector{"0B", "0D", "0A", "0E", "0F", "48", "49", "4A", "4B", "4C", "4D"};
});
commands->add_command(ShellContext::MAIN,