Laboratorium BLE
Wczytywanie...
Szukanie...
Brak dopasowań
BLE_service.h
1#include <zephyr/types.h>
2#include <stddef.h>
3#include <string.h>
4#include <errno.h>
5#include <zephyr/sys/byteorder.h>
6#include <zephyr/kernel.h>
7#include <soc.h>
8#include <zephyr/bluetooth/bluetooth.h>
9#include <zephyr/bluetooth/hci.h>
10#include <zephyr/bluetooth/conn.h>
11#include <zephyr/bluetooth/addr.h>
12#include <zephyr/bluetooth/uuid.h>
13#include <zephyr/bluetooth/gatt.h>
14
15#define AIR_QUALITY_SERVICE_UUID 0x9c, 0xf9, 0xa8, 0x83, 0xdc, 0xa6, 0x93, 0xbe, \
16 0x53, 0x4c, 0xfb, 0x01, 0xbb, 0x8c, 0xc6, 0x7b
17
18#define PM25_UUID 0x60, 0xe1, 0x8e, 0x64, 0x19, 0xbc, 0x8b, 0xbc, 0x3e, 0x4b, \
19 0x28, 0x3b, 0xd3, 0xcd, 0xdd, 0xab
20
21#define PM10_UUID 0x79, 0xc4, 0xee, 0xac, 0x52, 0x08, 0xac, 0x9e, 0x3b, 0x4e, \
22 0x07, 0x78, 0xcb, 0xc0, 0x73, 0xdd
23
24#define AQS_MGMT_SERVICE_UUID 0xeb, 0xb4, 0xe3, 0x78, 0x90, 0x81, 0x41, 0xbf, 0xbd, \
25 0x49, 0xc6, 0x9d, 0x81, 0x32, 0x75, 0x2b
26
27#define INTERVAL_UUID 0x45, 0x41, 0xbf, 0xf6, 0x25, 0x68, 0x43, 0x9f, 0x1e, \
28 0x42, 0xe8, 0x6b, 0xb6, 0x06, 0xc3, 0x57
29
30#define SLEEP_STATUS_UUID 0x05, 0x08, 0x6c, 0xd3, 0x76, 0xd1, 0x4e, 0x59, 0x90, \
31 0x20, 0x42, 0xef, 0x27, 0x24, 0x52, 0xfc
32
33#define REPORTING_STATUS_UUID 0x2b, 0x8a, 0x13, 0x89, 0x45, 0xd2, 0x46, 0x09, 0x80, \
34 0xcf, 0x06, 0x2f, 0xc6, 0x3c, 0xe3, 0x4d
35
36#define ID_UUID 0x6d, 0x50, 0xfa, 0xc7, 0xdb, 0xfd, 0x40, 0x90, 0xa8, \
37 0xf2, 0x06, 0x33, 0xe3, 0xe2, 0xfa, 0x89
38
39#define WORKING_PERIOD_UUID 0xe1, 0x12, 0xd1, 0x8d, 0x18, 0xd8, 0x43, 0x70, 0x8d, \
40 0xcd, 0x20, 0x18, 0x83, 0x2c, 0x9c, 0x26
41
42#define QUERY_DATA_UUID 0x11, 0x0c, 0x5f, 0x47, 0xf6, 0x3a, 0x4b, 0x83, 0xa1, \
43 0xe2, 0x36, 0xe1, 0x55, 0x48, 0x5a, 0x23
44
45int BLE_init();
46void air_quality_send(struct bt_conn* conn, const uint16_t *pm25, const uint16_t *pm10, uint16_t len);
47
48extern struct k_sem wait_for_read;
void air_quality_send(struct bt_conn *conn, const uint16_t *pm25, const uint16_t *pm10, uint16_t len)
Funkcja wysyłająca powiadomienie o zmianie wartości odczytów stanu jakości powietrza....
Definicja BLE_service.c:394
float pm25
Definicja sensor_uart.c:27