This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

max30205 + nRF52 DK How to read more than 1 byte?

I have established a connection with max30205, but I get only the first byte of temperature, how to read the second one? to get the tenths of a degree.

Now it works like:
start / address / reading / stop 

ret_code_t err_code1 = nrf_drv_twi_rx(&m_twi, max30205_address , &m_sample, sizeof(m_sample));
APP_ERROR_CHECK(err_code1);
while (m_xfer_done == false)


I necessary need :
start / address / reading / reading / stop 

What function should be used for this?



Parents Reply Children