And you have spelling issues too

Good you are getting values.
To convert two 8-bit values to a 16-bit value is quite easy.
Create a new unsigned integer e.g. Speed. This can have a value of 0 - 65,535
You have two bytes of data, lets call them B1 and B2. Say they are (in binary coz it's easier to understand the process) 0b11010101 and 0b00000001
Speed = 0 // this is in binary 0b0000000000000000
Speed = B1<<8 // Speed = the value of B1 shifted 8 places to the left. Speed now equals 0b1101010100000000
Speed = Speed + B2 // Add the value of B2 giving Speed = 0b1101010100000001
You can of course combine the above into a more simplistic calculation but the above shows the process.
Regards
PS
Really nice looking display.