BLE - Help converting array values to different formats

Hi all,

Trying to read some values from a bluetooth device and had some success, but now having issues actually DOING anything with the data

The device sends an byte structure as follows:

uint8_t ble_adr[6]; // device mac
uint16_t outputs; // output bitmask, LSB = Output1
uint16_t voltage; // voltage in 10mV steps
uint16_t current; // current in 10mA steps

I have successfully received the values [210, 234, 153, 26, 214, 184, 0, 0, 21, 5, 74, 0]

but am now at a complete loss as to how to actually convert these array values into what they should be. MAC Address should be b8:d6:1a:99:ea:d2.

I'd appreciate if anyone can give me a nudge in the right direction, I would be very appreciative.

Cheers,

Matt