I do write SONAR proximity results in EEPROM. I use the WRITE command. It comes out in HEX with reversed words. Here is an example:

Address 00 contains BC
Address 01 contains 02
This reads as BC 02 when looking at the EEPROM readout.

These are HEX and they are reversed. They represent:
$02BC = 256x2 +16x11 + 12 = 512 + 176 + 12 = 700decimal

Take 2/3 of 700 and get about 48 inches. I do that with in my head or with scratch paper.

Your system of dividing 700 by 14.8 gets 47.29 inches. My brain can figure out "two thirds of" easier.

I want addresses 00 and 01 to look like 4729, or preferably rounded down to 0047 or up to 0048. Can PBP do that?

Ken