Du willst eigentlich:

Code:
uint16_t distance = (highbyte<<8)+lowbyte;
// oder
uint16_t distance = (highbyte*256)+lowbyte;
hth
Kay