13#ifndef BLE_LORAWAN_SERVICE_H
14#define BLE_LORAWAN_SERVICE_H
40#define BT_UUID_LORAWAN_VAL BT_UUID_128_ENCODE(0x5a8cd4ac, 0x1520, 0x4c9d, 0xb488, 0x12942c26af40)
41#define BT_UUID_LORAWAN_ENABLED_VAL BT_UUID_128_ENCODE(0x5a8cd4ac, 0x1520, 0x4c9d, 0xb488, 0x12942c26af41)
42#define BT_UUID_LORAWAN_FREQUENCY_VAL BT_UUID_128_ENCODE(0x5a8cd4ac, 0x1520, 0x4c9d, 0xb488, 0x12942c26af42)
43#define BT_UUID_LORAWAN_DEV_EUI_VAL BT_UUID_128_ENCODE(0x5a8cd4ac, 0x1520, 0x4c9d, 0xb488, 0x12942c26af43)
44#define BT_UUID_LORAWAN_JOIN_EUI_VAL BT_UUID_128_ENCODE(0x5a8cd4ac, 0x1520, 0x4c9d, 0xb488, 0x12942c26af44)
45#define BT_UUID_LORAWAN_APP_KEY_VAL BT_UUID_128_ENCODE(0x5a8cd4ac, 0x1520, 0x4c9d, 0xb488, 0x12942c26af45)
47#define BT_UUID_LORAWAN BT_UUID_DECLARE_128(BT_UUID_LORAWAN_VAL)
48#define BT_UUID_LORAWAN_ENABLED BT_UUID_DECLARE_128(BT_UUID_LORAWAN_ENABLED_VAL)
49#define BT_UUID_LORAWAN_FREQUENCY BT_UUID_DECLARE_128(BT_UUID_LORAWAN_FREQUENCY_VAL)
50#define BT_UUID_LORAWAN_DEV_EUI BT_UUID_DECLARE_128(BT_UUID_LORAWAN_DEV_EUI_VAL)
51#define BT_UUID_LORAWAN_JOIN_EUI BT_UUID_DECLARE_128(BT_UUID_LORAWAN_JOIN_EUI_VAL)
52#define BT_UUID_LORAWAN_APP_KEY BT_UUID_DECLARE_128(BT_UUID_LORAWAN_APP_KEY_VAL)
int ble_lorawan_service_init(lorawan_setup_t *setup)
Connect LoRaWAN setup configuration to LoRaWAN BLE Service.
Definition ble_lorawan_service.c:246
This is a library to handle the LoRaWAN functionality for the sensor.
Structure to hold the LoRaWAN setup, used to join the network.
Definition sensor_lorawan.h:24