Understanding High BYTEs LOW BYTEs etc

Camerart

Member
Hi,
In a program I'm working on, there is the section below:
I'm trying to understand how BYTEs work.

Is this correct?

t_raw.LB = b(2) _________XXXXXXXX
t_raw.HB = b(1) XXXXXXXX_________
t_raw.3B = b(0) __________________XXXXXXXX_________

Camerart
 

Camerart

Member
What language? And what are you trying to do?
Hi C,

I found my answer today:
This shows three of the four possible bytes and their positions. I'm using Oshonsoft Basic.
Thanks,
C.

t_raw.LB = b(2) _________________________XXXXXXXX
t_raw.HB = b(1) ________________XXXXXXXX_________
t_raw.3B = b(0) ________XXXXXXXX___________________
 
Top