conversion_ABC - Indexing a specific Bit from a returned Byte?


Conversion examples
conversion=“V/10”

  • result is incoming value / 10

conversion=“B0+15*(B1-43)”

  • result is first byte + 15 * (second byte - 43)

Is there a way to index the n-th bit of a returned byte e.g. {A:7} …

… units = 'bit" conversion=“(V>>8)” ?

Thanks, A.

Yes, use:

units="bit" conversion="B0>>7"