mirror of
https://github.com/esphome/esphome.git
synced 2024-11-15 11:38:11 +01:00
some fixes
This commit is contained in:
parent
57d3d8319b
commit
bccb306fff
2 changed files with 5 additions and 14 deletions
|
@ -31,7 +31,7 @@ static void application_task(void *param) {
|
|||
}
|
||||
|
||||
#if ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(5, 0, 1)
|
||||
using struct {
|
||||
struct {
|
||||
uint16_t frame_head;
|
||||
uint16_t duration;
|
||||
uint8_t destination_address[6];
|
||||
|
|
|
@ -26,7 +26,7 @@ class ESPNowProtocol : public Parented<ESPNowComponent> {
|
|||
public:
|
||||
ESPNowProtocol(){};
|
||||
|
||||
void setup() override;
|
||||
void setup();
|
||||
|
||||
virtual void on_receive(ESPNowPacket packet) { return; };
|
||||
virtual void on_sent(ESPNowPacket packet, bool status) { return; };
|
||||
|
@ -45,18 +45,9 @@ class ESPNowProtocol : public Parented<ESPNowComponent> {
|
|||
|
||||
class ESPNowDefaultProtocol : public ESPNowProtocol {
|
||||
public:
|
||||
void on_receive(ESPNowPacket packet) {
|
||||
this->on_receive_.call(packet);
|
||||
return true;
|
||||
};
|
||||
void on_sent(ESPNowPacket packet, bool status) {
|
||||
this->on_sent_.call(packet, status);
|
||||
return true;
|
||||
};
|
||||
void on_new_peer(ESPNowPacket packet) {
|
||||
this->on_new_peer_.call(packet);
|
||||
return true;
|
||||
};
|
||||
void on_receive(ESPNowPacket packet) { this->on_receive_.call(packet); };
|
||||
void on_sent(ESPNowPacket packet, bool status) { this->on_sent_.call(packet, status); };
|
||||
void on_new_peer(ESPNowPacket packet) { this->on_new_peer_.call(packet); };
|
||||
|
||||
uint32_t get_app_id() override { return ESPNOW_DEFAULT_APP_ID; };
|
||||
|
||||
|
|
Loading…
Reference in a new issue