-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArduinoFirebaseFunctions.h
53 lines (53 loc) · 1.64 KB
/
ArduinoFirebaseFunctions.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
////Copyright 2019 Matthew Steinhardt
//
//#ifndef ARDUINO_FIREBASE_FUNCTIONS_H
//#define ARDUINO_FIREBASE_FUNCTIONS_H
//
//#include "FirebaseArduino.h" // https://github.com/FirebaseExtended/firebase-arduino
//#include "ArduinoJson.h" // https://github.com/bblanchon/ArduinoJson
//#include "IRrecv.h" // Used to send IR data from decode_results
//
//
//const String FIREBASE_HOST = "ir-home-hub.firebaseio.com";
//const String FIREBASE_AUTH = "OVupEOIVjxTW1brlm02WISnExnOWRBxc9yhJVyPy";
//
///* Database Object JSON Strings */
//const char JSON_Recorded_Signal[] = "{\"resultCode\": %d, \"encoding\": \"%s\", \"code\": \"0x%s\", \"timestamp\": \"%lu\", \"rawData\": \"%s\", \"rawLen\": %lu}";
//
//const size_t MAX_RESPONSE_SIZE = 1024;
//
///* -------------------- Result Codes -------------------- */
//const int RES_SEND_SIG = 700;
//const int ERR_UNKNOWN = 800;
//const int ERR_TIMEOUT = 801;
//const int ERR_OVERFLOW = 802;
//
//class ArduinoFirebaseFunctions {
//public:
// void setHubName(const String& name);
//
// void connect();
//
// void sendRecordedSignal(const decode_results* results);
//
// void sendError(const int errorType);
//
// void setDebug(bool debug);
//
// String ActionPath = "";
// String ResultPath = "";
// String BasePath = "";
// String SetupPath = "";
//
//private:
// String rawDataToString(const decode_results* results);
// String uint64ToString(uint64_t input, uint8_t base = 10);
// String resultToHexidecimal(const decode_results* result);
// uint16_t getCorrectedRawLength(const decode_results* results);
//
// char* responseBuffer = new char[MAX_RESPONSE_SIZE];
// bool bDEBUG = false;
// bool bConnected = false;
//};
//
//#endif