using InnovEnergy.Lib.Devices.EmuMeter; using InnovEnergy.Lib.Protocols.DBus.Protocol.DataTypes; using InnovEnergy.Lib.Victron.VeDBus; namespace InnovEnergy.App.EmuMeterDriver; // TODO: Does not compile public record Signal(Func Source, ObjectPath Path, String Format = "") { public VeProperty ToVeProperty(EmuMeterStatus status) { var value = Source(status); return new VeProperty(Path, value, String.Format($"{{0:{Format}}}", value)); } }