Update ToVeproperty function. cleaner way.Comment need to be deleted in the futur

This commit is contained in:
atef 2024-07-01 15:14:11 +02:00
parent 94c1324f06
commit a602fc5eac
1 changed files with 22 additions and 24 deletions

View File

@ -18,38 +18,36 @@ public record Signal(Func<Iem3KGridMeterRegisters, object> Source, ObjectPath Pa
using InnovEnergy.Lib.Devices.IEM3kGridMeter;
using InnovEnergy.Lib.Protocols.DBus.Protocol.DataTypes;
using InnovEnergy.Lib.Victron.VeDBus;
using System;
namespace InnovEnergy.App.SchneiderDriver
{
public record Signal(Func<Iem3KGridMeterRegisters, object> Source, ObjectPath Path, string Format = "")
public record Signal(Func<Iem3KGridMeterRegisters, Object> Source, ObjectPath Path, String Format = "")
{
// Converts the status object to a VeProperty, handling null status gracefully
public VeProperty ToVeProperty(Iem3KGridMeterRegisters status)
{
// Check if status is null and log a message
if (status == null)
{
Console.WriteLine($"Status is null for path: {Path}");
// Return a default VeProperty if status is null
return new VeProperty(Path, default(double), string.Format($"{{0:{Format}}}", default(double)));
}
// Retrieve the value using the provided source function
// if (status == null)
// {
// Console.WriteLine($"Status is null for path: {Path}");
// // Return a default VeProperty if status is null
// return new VeProperty(Path, default(double), string.Format($"{{0:{Format}}}", default(double)));
// }
//
// // Retrieve the value using the provided source function
var value = Source(status);
//
// // Handle the case where the value itself might be null
// if (value == null)
// {
// Console.WriteLine($"Value is null for path: {Path}");
// // Return a default VeProperty if value is null
// return new VeProperty(Path, default(double), string.Format($"{{0:{Format}}}", default(double)));
// }
// Handle the case where the value itself might be null
if (value == null)
if (value is Single floatValue)
{
Console.WriteLine($"Value is null for path: {Path}");
// Return a default VeProperty if value is null
return new VeProperty(Path, default(double), string.Format($"{{0:{Format}}}", default(double)));
}
if (value is float floatValue)
{
value = (double)floatValue;
value = (Double)floatValue;
}
// Create and return the VeProperty with the actual value and format