namespace RTCSync.Utils; public class BinaryUtils { public static byte ToBcd(int value) => (byte)(((value / 10) << 4) | (value % 10)); }