Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 4788

Python • Re: How to handle bytearray from NFC Tag Reader

$
0
0
The data I actually want to work with is ...\x02enOmega\...

What would be a proper way to get this data value only from the Tag or at least to "convert" the bytearray to a list where I can access this value only?
There is no need to turn the bytearray into a list as it can already be treated as one, can be considered an 'array' for non-Python folk.

I would guess the data packet is formatted something like this -

Code:

         .-------------------------------.         |  _____________________________|_____________________________         | :                                                           :         | :       .----.         .------.                             :         | :       |  __|_        |  ____|____                         :      12 | :     1 | :    :     2 | :         :                        : .----.--^-.----.--^-.----.----.--^-.----.----.----.----.----.----.----.----.----. | 03 | 0c | d1 | 01 | 08 | 54 | 02 | e  | n  | O  | m  | e  | g  | a  | fe | 00 | `----^----^----^----^--.-^----^----^----^----^----^----^----^----^----^----^----'                      8 |      :_______________________________________:                        |                          |                        `--------------------------'
So perhaps something like ... ?

Code:

namLen = data[4]namPre = data[6]s = ""for n in range(7 + namPre, 7 + namLen - namPre + 1):    s += chr(data[n])print(s)

Statistics: Posted by hippy — Wed Dec 25, 2024 6:04 pm



Viewing all articles
Browse latest Browse all 4788

Trending Articles