A blue button is always a nice toy ...

Dependencies:   BLE_API X_NUCLEO_IDB0XA1 mbed

Fork of BLE_HeartRate_IDB0XA1 by ST

bricks/print.h

Committer:
hux
Date:
2017-01-06
Revision:
24:0f08f68579bd
Child:
27:32267cee7cb8

File content as of revision 24:0f08f68579bd:

// print.h - print value of a characteristic
//
// Synopsis:
//
//    See also: CHARACTERISTIC, GET, SET
//
#ifndef _PRINT_H_
#define _PRINT_H_

#include "ble/Gap.h"
#include "bricks/blob.h"

//==============================================================================
// Some Callbacks
//==============================================================================

   inline void print(Blob &blue, GattCharacteristic &chr, const char *name)
   {
      Serial out(USBTX, USBRX);           // serial port to PC terminal
       
      Buffer data;  uint8_t *p = data;
      blue.get(chr,data);

      out.printf("%s: %02x-%02x-%02x-%02x-%02x-",name,(int)(p[0]),(int)(p[1]),(int)(p[2]),(int)(p[3]),(int)(p[4]));
      out.printf("%02x-%02x-%02x-%02x-%02x\r\n",(int)(p[5]),(int)(p[6]),(int)(p[7]),(int)(p[8]),(int)(p[9]));
   }    

#endif // _SET_H_