-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESPNow.h
72 lines (58 loc) · 2.51 KB
/
ESPNow.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
67
68
69
70
71
72
//
// A small ESPNow abstraction which makes code which uses ESPNow more readable
//
/*
#######################################################################################################################
#
# Copyright (c) 2021 framp at linux-tips-and-tricks dot de
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#######################################################################################################################
*/
// Latest code available on https://github.com/framps/ESP_stuff/tree/main/ESPNow_DHT22_BME280_Sensor
#pragma once
#include "Arduino.h"
#include "TempHumSensor.h"
class ESPNow {
// Defaults
const static int WIFI_CHANNEL = 1;
const static int SLEEP_TIME = 60e6;
const static int SEND_TIMEOUT = 10000;
public:
struct PowerDownConfig {
// uint8_t pin; does not work :-(
int vcc;
};
ESPNow(uint8_t* gatewayMac, int wifiChannel=WIFI_CHANNEL, int sleepTime=SLEEP_TIME, int sendTimeout=SEND_TIMEOUT, PowerDownConfig* powerDownConfig=NULL);
virtual ~ESPNow() { };
int start(); // rc 0 -> request failed
int send(Sensor &s); // rc 0 -> request failed
int waitForCompletion(); // rc 0 -> request failed
void shutdown(); // rc 0 -> request failed
void enableDebug() {this->debug = true; };
static ESPNow* instance;
private:
void sendData(uint8_t* mac, uint8_t status);
void powerDown(bool down); // true, powerDown, false powerUp
// bool isPowerDownEnabled() { return this->powerDownConfig != NULL && this->powerDownConfig->pin > 0 && this->powerDownConfig->vcc > 0; };
bool isPowerDownEnabled() { return this->powerDownConfig != NULL && this->powerDownConfig->vcc > 0; };
uint8_t* gatewayMac;
bool dataSent;
int sleepTime;
int wifiChannel;
int sendTimeout;
PowerDownConfig* powerDownConfig;
bool debug;
};