1
0
Fork 0

Update README.md

master
Vingelar 2021-11-19 12:55:01 +01:00 committed by GitHub
parent 0ddf395213
commit cf64f52533
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 1 deletions

View File

@ -28,5 +28,14 @@ The upper row represents the hours with 4 bit (16 possible values in total, 12 a
Same holds for the thrid row: 0-59 seconds Same holds for the thrid row: 0-59 seconds
To read the values of a row we summ up the vaules of set bits (black bars). To read the values of a row we summ up the vaules of set bits (black bars).
E.g. 1010 is 1 * 8 + 0 * 4 + 1 * 2 + 0 * 1 = 10 E.g. the picture above, 3rd row (seconds):
101001
is 1 * 32 + 0 * 16 + 1 * 8 + 0 * 4 + 0 * 2 + 1 * 1
is (only the '1' bit): 32 + 8 + 1 = 41
for the minutes we do the same: 32 + 1 = 33
and the hours: 8 + 2 = 10
So the time is 10:33:41 (that's all)