-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathAcaiaArduinoBLE.h
66 lines (57 loc) · 1.91 KB
/
AcaiaArduinoBLE.h
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
/*
AcaiaArduinoBLE.h - Library for connecting to
an Acaia Scale using the ArduinoBLE library.
Created by Tate Mazer, December 13, 2023.
Released into the public domain.
Pio Baettig: Adding Felicita Arc support
Known Bugs:
* Only supports Grams
*/
#ifndef AcaiaArduinoBLE_h
#define AcaiaArduinoBLE_h
#define WRITE_CHAR_OLD_VERSION "2a80"
#define READ_CHAR_OLD_VERSION "2a80"
#define WRITE_CHAR_NEW_VERSION "49535343-8841-43f4-a8d4-ecbe34729bb3"
#define READ_CHAR_NEW_VERSION "49535343-1e4d-4bd9-ba61-23c647249616"
#define WRITE_CHAR_GENERIC "ff12"
#define READ_CHAR_GENERIC "ff11"
#define HEARTBEAT_PERIOD_MS 2750
#define MAX_PACKET_PERIOD_MS 5000
#include "Arduino.h"
#include <ArduinoBLE.h>
enum scale_type{
OLD, // Lunar (pre-2021)
NEW, // Lunar (2021), Pyxis
GENERIC // Felicita Arc, etc
};
class AcaiaArduinoBLE{
public:
AcaiaArduinoBLE(bool debug);
bool init(String = "");
bool tare();
bool startTimer();
bool stopTimer();
bool resetTimer();
bool heartbeat();
float getWeight();
bool heartbeatRequired();
bool isConnected();
bool newWeightAvailable();
private:
bool isScaleName(String);
//debug functions
void exploreService(BLEService service);
void exploreCharacteristic(BLECharacteristic characteristic);
void exploreDescriptor(BLEDescriptor descriptor);
void printData(const unsigned char data[], int length);
float _currentWeight;
BLECharacteristic _write;
BLECharacteristic _read;
long _lastHeartBeat;
bool _connected;
scale_type _type;
bool _debug;
long _packetPeriod;
long _lastPacket;
};
#endif