diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 080e70d0..b4c70ebc 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,10 +1,22 @@ { - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": [ - "platformio.platformio-ide" - ], - "unwantedRecommendations": [ - "ms-vscode.cpptools-extension-pack" - ] + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "ardenivanov.svelte-intellisense", + "bradlc.vscode-tailwindcss", + "dbaeumer.vscode-eslint", + "editorconfig.editorconfig", + "esbenp.prettier-vscode", + "esbenp.prettier-vscode", + "fivethree.vscode-svelte-snippets", + "lkrms.inifmt", + "ms-python.black-formatter", + "ms-vscode.cpptools", + "ms-vscode.cpptools-extension-pack", + "platformio.platformio-ide", + "svelte.svelte-vscode", + "svelte.svelte-vscode", + "xaver.clang-format" + ], + "unwantedRecommendations": ["ms-vscode.cpptools-extension-pack"] } diff --git a/src/VisualStateManager.cpp b/src/VisualStateManager.cpp index bdd9a3de..fcf216e8 100644 --- a/src/VisualStateManager.cpp +++ b/src/VisualStateManager.cpp @@ -132,11 +132,11 @@ void VisualStateManager::SetWiFiState(WiFiState state) { #ifndef OPENSHOCK_LED_IMPLEMENTATION void VisualStateManager::SetCriticalError() { - ESP_LOGW(TAG, "SetCriticalError: (But no LED implementation is selected)"); + ESP_LOGW(TAG, "SetCriticalError: (But no LED implementation is selected / Selected implementation doesn't exist)"); } void VisualStateManager::SetWiFiState(WiFiState state) { - ESP_LOGW(TAG, "SetWiFiState: %d (But no LED implementation is selected)", state); + ESP_LOGW(TAG, "SetWiFiState: %d (But no LED implementation is selected / Selected implementation doesn't exist)", state); } #endif // OPENSHOCK_LED_NONE