A cute tiny piece of code implementing an IoT NAND device, demonstrating how to setup and advertise a cute GATT (NAND) service. The code has been tested on a Nordic nRF51822-DK.

Dependencies:   BLE_API mbed nRF51822

Fork of BLE_HeartRate_IDB0XA1 by ST

bricks/set.h

Committer:
hux
Date:
2017-01-08
Revision:
23:2e73c391bb12

File content as of revision 23:2e73c391bb12:

// set.h - set data from a characteristics
//
// Synopsis:
//
//    Set data from a 'characteristic' based on 'data' variable
//
//       set(characteristic,data)
//
//    The 'set' function (overloaded function family) is implemented for all
//    types defined in "bricks/types.h".
//
//    See also: CHARACTERISTIC, GET
//
#ifndef _SET_H_
#define _SET_H_

#include "ble/BLE.h"
#include "ble/Gap.h"
#include "ble/GattServer.h"
#include "bricks/o.h"
#include "bricks/types.h"
#include "bricks/characteristic.h"

   inline void set(O&o, Characteristic<Bool> &chr, const Bool &data)
   {
      uint16_t size = sizeof(Bool)/sizeof(uint8_t);
      o.gattServer().write(chr.getValueHandle(), (uint8_t*)&data,size);
   }

   inline void set(O&o, Characteristic<ObjectId> &chr, const ObjectId &data)
   {
      uint16_t size = sizeof(ObjectId)/sizeof(uint8_t);
      o.gattServer().write(chr.getValueHandle(), (uint8_t*)&data,size);
   }

#endif // _SET_H_