├── WyzeSenseBlazor ├── Pages │ ├── Index.razor │ ├── Error.cshtml.cs │ ├── _Host.cshtml │ ├── Error.cshtml │ ├── MQTTTemplates.razor │ └── WyzeSensors.razor ├── wwwroot │ ├── favicon.ico │ └── css │ │ ├── open-iconic │ │ ├── font │ │ │ ├── fonts │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.ttf │ │ │ │ └── open-iconic.woff │ │ │ └── css │ │ │ │ └── open-iconic-bootstrap.min.css │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── FONT-LICENSE │ │ └── site.css ├── .config │ └── dotnet-tools.json ├── appsettings.Development.json ├── DataServices │ ├── IMQTTTemplateService.cs │ ├── IMqttClientService.cs │ ├── MqttClientServiceProvider.cs │ ├── MQTTTemplateService.cs │ ├── IWyzeSenseService.cs │ ├── WyzeSenseService.cs │ └── MqttClientService.cs ├── Settings │ ├── WyzeSettings.cs │ ├── DatabaseSettings.cs │ ├── BrokerHostSettings.cs │ ├── ClientSettings.cs │ └── AppSettingsProvider.cs ├── DataStorage │ ├── IDataStoreOptions.cs │ ├── DataStoreOptions.cs │ ├── IDataStoreService.cs │ ├── DataStore.cs │ ├── Models │ │ ├── MQTT │ │ │ ├── Topics.cs │ │ │ ├── PayloadPackage.cs │ │ │ └── Template.cs │ │ └── WyzeSensorModel.cs │ └── DataStoreService.cs ├── App.razor ├── _Imports.razor ├── Shared │ ├── MainLayout.razor │ ├── NavMenu.razor.css │ ├── MainLayout.razor.css │ └── NavMenu.razor ├── Component │ └── WyzeSensor.razor ├── Mqtt │ └── Options │ │ └── AspCoreMqttClientOptionBuilder.cs ├── appsettings.json ├── WyzeSenseBlazor.csproj ├── datastore.json ├── Properties │ └── launchSettings.json ├── Program.cs ├── Views │ └── Shared │ │ └── _ValidationScriptsPartial.cshtml ├── WyzeLogger.cs ├── ServiceCollectionExtensions.cs └── Startup.cs ├── WyzeSenseUpgrade ├── firmware │ └── hms_cc1310.bin ├── WyzeSenseUpgrade.csproj └── Program.cs ├── WyzeSenseCore ├── WyzeSenseCore.csproj ├── Enums │ ├── WyzeEventType.cs │ ├── WyzeKeyPadState.cs │ └── WyzeSensorType.cs ├── WyzeSensor.cs ├── IWyzeSenseLogger.cs ├── TaskExtension.cs ├── WyzeSenseEvent.cs ├── WyzeDongleState.cs ├── IWyzeDongle.cs ├── DataProcessor.cs ├── ByteBuffer.cs ├── Packet.cs └── WyzeDongle.cs ├── WyzeSenseApp ├── WyzeSenseApp.csproj ├── Logger.cs └── Program.cs ├── README.md ├── WyzeSense.sln ├── .gitattributes └── .gitignore /WyzeSenseBlazor/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |
Sorry, there's nothing at this address.
8 |
24 | Request ID: @Model.RequestId
25 |
30 | Swapping to the Development environment displays detailed information about the error that occurred. 31 |
32 |33 | The Development environment shouldn't be enabled for deployed applications. 34 | It can result in displaying sensitive information from exceptions to end users. 35 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 36 | and restarting the app. 37 |
38 |