From 5758e46a723ff1a9de80ede73362d9becb8aaeac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Sun, 28 Dec 2014 20:15:38 +0100 Subject: [PATCH] fix typo --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e141408..98c880f 100644 --- a/README.md +++ b/README.md @@ -166,12 +166,12 @@ I used a Saleae Logic 16 logic analyzer to monitor the traffic. The EEPROM contains the programmed/learned codes which will activate the relay. If the code 0xABCDEF is tranmitted, the microcontroller with read the byte at address 0x(B&7)ECD. The bits in this byte will tell which even value D is authorized (odd values are rounded down). -If the byte = 0x01, only D = 0x0 (and 0x1) is authorized. -If the byte = 0x02, only D = 0x2 (and 0x3) is authorized. +If the byte = 0x01, only F = 0x0 (and 0x1) is authorized. +If the byte = 0x02, only F = 0x2 (and 0x3) is authorized. ... -If the byte = 0x80, only D = 0xe (and 0xf) is authorized. -If the byte = 0x03, only D = 0x0, 0x1, 0x2, and 0x3 are authorized. -If the byte = 0x07, only D = 0x0, 0x1, 0x2, 0x3, 0x4, 0x5 are authorized. +If the byte = 0x80, only F = 0xe (and 0xf) is authorized. +If the byte = 0x03, only F = 0x0, 0x1, 0x2, and 0x3 are authorized. +If the byte = 0x07, only F = 0x0, 0x1, 0x2, 0x3, 0x4, 0x5 are authorized. This is quite clever as the ID is used as address. It saves space, although there is by for too much available.