Как слияние 2 байта в целое число
int number = buf[0] | buf[1] << 8;
Elegant Earthworm
int number = buf[0] | buf[1] << 8;