I am getting data from sensor as below.
array (
'timestamp' => '2020-06-11T11:09:21.335Z',
'type' => 'Unknown',
'mac' => 'F64BB46181EF',
'bleName' => 'P RHT 900350',
'rssi' => -63,
'rawData' => '02010605166E2AC90A04166F2A240D09502052485420393030333530',
)
and i am trying to decode the RAW data with various PHP function
ORD , CHAR , UNPACK , PACK I have tried many things but i only get the device name from the parsed data
which is P RHT 900350. So how can i extract the temperature and humidity data from this RAW data.
The sensor support team pass me the document to understand the structure. but i dint get through it.