Skip to content

Commit 682f54e

Browse files
committed
attempt six to fix the markdown of the readme.
1 parent 2874ada commit 682f54e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,13 @@ Enter the address, or the character 'P'.
2626
__The Arduino wire library works with 7-bit I²C adresses.__
2727

2828
The Arduino Serial library can easily parse decimal values, not hex codes. Therefore the default T24C02A address 0xA0 is rendered thus:
29+
2930
1. Right-shift one bit to get 7-bit address: 0xA0 >> 1 → 0x50
3031
2. Convert to decimal: 0x50 → 5×16 + 0 = 80
3132

3233
_If you have a T24C04A, T24C08A or T24C16A, you can change addresses later to write to other memory pages._
3334

34-
##Polling:
35+
##Polling the I²C bus:
3536
If you entered the character 'P', the Arduino will poll all 128 possible addresses on the I²C bus.
3637
It wil show you the address the devices that answered, and their answers.
3738

@@ -59,7 +60,6 @@ S is useful if you set the I2C address wrong, have multiple EEPROMs or have a T2
5960
3. Enter the string to be written.
6061
- Escape numerical ASCII representations of characters by prefixing them with an '@'.
6162
- @64 is the @ character itself, in case you want to write an actual @.
62-
6363
4. The device will print each character submitted to the device.
6464
5. The device will print a human readable error message for each unsuccessful write.
6565
- The device will retransmit (including reprint of) the character up to NUM_TRIES times.
@@ -73,7 +73,7 @@ S is useful if you set the I2C address wrong, have multiple EEPROMs or have a T2
7373
##Setting the I²C address:
7474
The same procedure as detailed in the section "Getting Started", see above.
7575

76-
##Polling:
76+
##Polling the I²C bus:
7777
The same procedure as detailed in the section "Getting Started", see above.
7878

7979
_This polling is not done as part of a change of address. Therefore, the device will give information on the polled devices, and return to the menu immediately afterwards._

0 commit comments

Comments
 (0)