-
Notifications
You must be signed in to change notification settings - Fork 7.5k
/
Copy pathBLEEddystoneURL.h.orig
66 lines (59 loc) · 1.69 KB
/
BLEEddystoneURL.h.orig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* BLEEddystoneURL.cpp
*
* Created on: Mar 12, 2018
* Author: pcbreflux
* Upgraded on: Feb 17, 2023
* By: Tomas Pilny
*
*/
#ifndef _BLEEddystoneURL_H_
#define _BLEEddystoneURL_H_
#include "BLEUUID.h"
#include <BLEAdvertisedDevice.h>
#include <Arduino.h>
#define EDDYSTONE_URL_FRAME_TYPE 0x10
extern String EDDYSTONE_URL_PREFIX[];
extern String EDDYSTONE_URL_SUFFIX[];
/**
* @brief Representation of a beacon.
* See:
* * https://github.com/google/eddystone
*/
class BLEEddystoneURL {
public:
BLEEddystoneURL();
BLEEddystoneURL(BLEAdvertisedDevice *advertisedDevice);
std::string getData();
String getFrame();
BLEUUID getUUID();
int8_t getPower();
std::string getURL();
String getPrefix();
String getSuffix();
std::string getDecodedURL();
void setData(std::string data);
void setUUID(BLEUUID l_uuid);
void setPower(int8_t advertisedTxPower);
void setURL(std::string url);
int setSmartURL(String url);
private:
<<<<<<< Updated upstream
uint16_t beaconUUID;
uint8_t lengthURL;
struct {
uint8_t frameType;
int8_t advertisedTxPower;
uint8_t url[18]; // 18 bytes: 1 byte for URL scheme + up to 17 bytes of URL
} __attribute__((packed)) m_eddystoneData;
=======
uint8_t lengthURL; // Describes length of URL part including prefix and suffix - max 18 B (excluding TX power, frame type and preceding header)
struct {
int8_t advertisedTxPower;
uint8_t url[18]; // Byte [0] is for prefix. Last byte **can** contain suffix
} __attribute__((packed)) m_eddystoneData;
void _initHeadder();
char BLEHeadder[12];
>>>>>>> Stashed changes
}; // BLEEddystoneURL
#endif /* _BLEEddystoneURL_H_ */