jeffgenexr
Results
1
comments of
jeffgenexr
for me the issue was the ids are caps vs non caps ``` if (CustomGatt) { if (string.Equals(obj.Device, DeviceAddress, StringComparison.OrdinalIgnoreCase) && string.Equals(obj.Service, Service, StringComparison.OrdinalIgnoreCase) && string.Equals(obj.Characteristic, Characteristic, StringComparison.OrdinalIgnoreCase)) { OnCharacteristicChanged?.Invoke(obj.GetByteMessage());...