diff --git a/LiveEditor/LiveEditor.sln b/LiveEditor/LiveEditor.sln index 7629c53..beb366f 100644 --- a/LiveEditor/LiveEditor.sln +++ b/LiveEditor/LiveEditor.sln @@ -5,8 +5,6 @@ VisualStudioVersion = 17.10.34825.169 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LiveEditor", "LiveEditor.csproj", "{E021DF21-424E-4EAB-9A16-46E8E8427835}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "KellerAg.Shared.IoT.Converters", "..\Source\KellerAg.Shared.IoT.Converters\KellerAg.Shared.IoT.Converters.csproj", "{CC6C14E1-D554-4683-AD50-12FBE9298B37}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -17,10 +15,6 @@ Global {E021DF21-424E-4EAB-9A16-46E8E8427835}.Debug|Any CPU.Build.0 = Debug|Any CPU {E021DF21-424E-4EAB-9A16-46E8E8427835}.Release|Any CPU.ActiveCfg = Release|Any CPU {E021DF21-424E-4EAB-9A16-46E8E8427835}.Release|Any CPU.Build.0 = Release|Any CPU - {CC6C14E1-D554-4683-AD50-12FBE9298B37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CC6C14E1-D554-4683-AD50-12FBE9298B37}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CC6C14E1-D554-4683-AD50-12FBE9298B37}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CC6C14E1-D554-4683-AD50-12FBE9298B37}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/LiveEditor/Pages/DemoLora.razor b/LiveEditor/Pages/DemoLora.razor index 25daecf..8e4a1f0 100644 --- a/LiveEditor/Pages/DemoLora.razor +++ b/LiveEditor/Pages/DemoLora.razor @@ -10,7 +10,7 @@ -
+
    PayloadInformation payLoadInfo = Converter.LoRaPayloadToLoRaMessage(payloadText, port);
       //The port number is stored in PayloadInformation but has no logic attached.
@@ -40,7 +40,6 @@
-
@@ -104,11 +103,11 @@ private string ExamplePayloadInfoJson { get; set; } void ConvertDeviceSettingsToLoRaPayloads(string value) { - /* - List payloads = Converter.DeviceConfigurationToLoRaPayloads(DeviceSettings deviceConfigurationDifference); // Properties that are not null/empty will be used for generating the payloads - // alternative: - List payloads = Converter.DeviceConfigurationToLoRaPayloads(string deviceConfigurationDifference); // JSON string with properties to change (not listed properties shall not be changed) - */ + /* + List payloads = Converter.DeviceConfigurationToLoRaPayloads(DeviceSettings deviceConfigurationDifference); // Properties that are not null/empty will be used for generating the payloads + // alternative: + List payloads = Converter.DeviceConfigurationToLoRaPayloads(string deviceConfigurationDifference); // JSON string with properties to change (not listed properties shall not be changed) + */ ConvertedPayloads = new List(); ConvertedPayloads.Add("TODO ( " + value + " )"); CombinedConvertedPayloads = string.Join($"{Environment.NewLine}", ConvertedPayloads);