You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 8, 2022. It is now read-only.
I am trying to use this code and the PN5180 to configure and then read commands from the MLX90129 Sensor Tag.
As per page 14 of this pdf I need to send specific commands to configure the sensors before reading first. Below is a screenshot of the first couple commands:
I am attempting at issuing just the first line right now as follows:
error: 'ISO15693ErrorCode PN5180ISO15693::issueISO15693Command(uint8_t*, uint8_t, uint8_t**)' is private
ISO15693ErrorCode issueISO15693Command(uint8_t *cmd, uint8_t cmdLen, uint8_t **resultPtr);
^
MLX_Comm:326: error: within this context
nfc.issueISO15693Command(cmd, sizeof(cmd), &readBuffer_0);
Is this not the way that that commands should be sent? If I put the data into the sendData function it compiles fine.
How would I go up about issuing the necessary commands for configuration and then reading from it as the pdf instructs using this code?