tidy up
This commit is contained in:
parent
fa1acde77b
commit
345ec0925e
1 changed files with 3 additions and 0 deletions
|
|
@ -369,9 +369,12 @@ void setup() {
|
||||||
Serial.println("Error initializing ESP-NOW");
|
Serial.println("Error initializing ESP-NOW");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#if defined(ESP8266)
|
||||||
esp_now_set_self_role(ESP_NOW_ROLE_COMBO);
|
esp_now_set_self_role(ESP_NOW_ROLE_COMBO);
|
||||||
|
#endif
|
||||||
esp_now_register_send_cb(onDataSent);
|
esp_now_register_send_cb(onDataSent);
|
||||||
esp_now_register_recv_cb(onDataReceive);
|
esp_now_register_recv_cb(onDataReceive);
|
||||||
|
//
|
||||||
|
|
||||||
AddressBook * book = lib.getBookByTitle(ADDRESSBOOK_TITLE);
|
AddressBook * book = lib.getBookByTitle(ADDRESSBOOK_TITLE);
|
||||||
if (book == NULL) {
|
if (book == NULL) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue