(made public for all to learn and help - ABG)
What is wrong with my answer at
(made public for all to learn and help - ABG)
What is wrong with my answer at
Regarding the code you supplied,
I see something in it that can't be right:
Is length a variable?
If so, where is its type and its initial value declared?
If it is a function, what is its argument?
Where is the variable data_value declared, and how does it get its value?
I know where the problem is and it has been solved. Thank you.
请将你的解决方案发上来,可以帮助其他有类似问题的人,谢谢。
It's a shame I can't read Chinese.
I also don't know where that Modbus component came from.
How to display any hexadecimal data separately, one byte at a time (that is, two hexadecimal digits in a group or eight bits in a group)
for example:DFF Decomposition into 0D FF (with spaces in the middle)
AD Decomposition into 00 AD (with spaces in the middle)
My idea is to first convert the hexadecimal data into a standard two-byte hexadecimal number, and then display the converted two-byte data byte by byte by space.
But I don't know how to use APP INVENTOR to realize this process?
Look in the math blocks for data type conversion.
Beware, the binary conversion will give you a text string of 0's and 1's, not the compressed value you would expect.
However, you can take the text length of the binary representation, and pad on the left to 16 binary digits, then convert to hex 8 bits at a time.
This project has some of those techniques, even before MIT added bit manipulation blocks.
https://groups.google.com/g/mitappinventortest/c/Mnmk2wfTFK8/m/CkUsAbLtBgAJ
I can't access the link you sent
Modbus is my extension. It is built on the same library as SerialOTG and provides ModbusRTU and ModbusTCP communication over serial, BT and TCP/IP. The function to calculate CRC is included.
See: ModbusRTU extension - #12 by rkl099
Here an extension for CRC16
Here's a draggable block you can use in AI2:
The rest of the project:
Estou com o mesmo problema. Você conseguiu gerar o CRC16 correto?
crc16.aia (6.2 KB)
There are several CRC16 algorithm, this extension receives the data in ASCII and gives the result in CRC16/CCITT-FALSE
What CRC16 algorithm are you using?
Sorry but I searched a lot and I couldn't understand how generate the "crc16" of a text?
Example text:
00020126580014br.gov.bcb.pix0136123e4567-e12b-12d1-a456-426655440000
5204000053039865802BR5913Fulano de Tal6008BRASILIA62070503***6304
Generated CRC:
0x1D3D.
is used for calculating the CRC, the polynomial '1021' (hexa) and initial value 'FFFF' (hexa), which corresponds to the CRC "CRC-16-CCITT-FFFF”.
thanks.
You say you convert the text:
00020126580014br.gov.bcb.pix0136123e4567-e12b-12d1-a456-426655440000
5204000053039865802BR5913Fulano de Tal6008BRASILIA62070503***6304
and you get: 0x1D3D
using:
poly: 1021 and init: FFFF
But on this website we see that this text generates: 80BF