initial commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace RTCSync.Utils;
|
||||
|
||||
public class BinaryUtils
|
||||
{
|
||||
public static byte ToBcd(int value) => (byte)(((value / 10) << 4) | (value % 10));
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user