Adafruit Bluefruit with KL25Z sending MMA8451Q acceleration data over BLE UART to Nordic oder Adafruit app

Dependencies:   BLE_nRF8001 MMA8451Q mbed

Fork of BLE_KL25_nRF8001 by Ian Kilburn

Revision:
2:e6d7390d4429
Parent:
1:b394935d1db1
Child:
3:b5dc2454dfc3
--- a/main.cpp	Thu Mar 09 22:14:23 2017 +0000
+++ b/main.cpp	Thu Mar 09 22:39:56 2017 +0000
@@ -46,11 +46,11 @@
 BLEPeripheral            blePeripheral        = BLEPeripheral(&BLE_REQ, &BLE_RDY, &BLE_RESET);
 
 // create service
-BLEService               uartService          = BLEService("713d0000503e4c75ba943148f18d941e");
+BLEService               uartService          = BLEService("6e400001b5a3f393e0a9e50e24dcca9e");
 
 // create characteristic
-BLECharacteristic    txCharacteristic = BLECharacteristic("713d0002503e4c75ba943148f18d941e", BLENotify, 20);
-BLECharacteristic    rxCharacteristic = BLECharacteristic("713d0003503e4c75ba943148f18d941e", BLEWriteWithoutResponse, 20);
+BLECharacteristic    txCharacteristic = BLECharacteristic("6e400001b5a3f393e0a9e50e24dcca9e", BLENotify, 20);
+BLECharacteristic    rxCharacteristic = BLECharacteristic("6e400001b5a3f393e0a9e50e24dcca9e", BLEWriteWithoutResponse, 20);
 /*--------------------------------------------------------------------------------------------*/
 
 unsigned int interval = 0;