Implemented Chat app with ESP-NOW service. The Chat app was originally created by @maxbrito500 and adapted by me.
12 lines
159 B
C++
12 lines
159 B
C++
#pragma once
|
|
|
|
#include "Tactility/service/espnow/EspNow.h"
|
|
|
|
namespace tt::service::espnow {
|
|
|
|
bool initWifi(const EspNowConfig& config);
|
|
|
|
bool deinitWifi();
|
|
|
|
}
|