From cf64f52533c1f0b30a79d4aed00abaf99a7e924c Mon Sep 17 00:00:00 2001 From: Vingelar Date: Fri, 19 Nov 2021 12:55:01 +0100 Subject: [PATCH] Update README.md --- apps/TheBinWatch/README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/apps/TheBinWatch/README.md b/apps/TheBinWatch/README.md index 81d2b83ac..97b7b50f2 100644 --- a/apps/TheBinWatch/README.md +++ b/apps/TheBinWatch/README.md @@ -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 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) +