This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Battery level from Proxy raw data

Dear Nordic Team,

I am using nRF51422 development kit. I am work with example code for ble_pherpheral_proxy. I want to calculate the battery value from the BLE peripheral proximity raw data. Please explain the data packet(Raw data) also.

Raw Data: 0x03194002020105090302180F18041803180C094E6F726469635F50726F78

  • For a start it's not 'proxy' it's 'proximity', the example code is not for 'ble_pherpheral_proxy' it's for ble_peripheral_proximity. Can you at least spend the effort to proof read your question for silly errors.

    Secondly you don't bother to say where that random string of data comes from or how you found it.

    Fortunately the format is pretty easy to read and it looks to me like advertising data. And the battery value is not in it because things like battery value are usually not in the advertising data. However, since I was bored, I picked the data apart to see what is in it and it's exactly what you'd expect because .. that's what the code puts in the advertising packet.

    03
    	19	// appearance
     		4002	- Generic Keyring (572)
    02
    	01	// FLAGS
    		05	- BR/EDR not supported, LE mode
    09
    	03	// complete list of 16 bit UUIDs
    		0218 	- Immediate Alert    (0x1802)
    		0F18	- Battery Service    (0x180F)
    		0418	- Tx Power           (0x1804)
    		0318	- Link Loss          (0x1803)
    0C
    	09	// complete local name
        		4E6F726469635F50726F78 = Nordic_Prox
    
Related