feat: 全量同步 254 个常用的 Arduino 扩展库文件
This commit is contained in:
@@ -0,0 +1,231 @@
|
||||
#ifndef BlynkSimpleEsp32_BT_h
|
||||
#define BlynkSimpleEsp32_BT_h
|
||||
|
||||
#ifndef BLYNK_INFO_CONNECTION
|
||||
#define BLYNK_INFO_CONNECTION "ESP32_BT"
|
||||
#endif
|
||||
|
||||
#define BLYNK_SEND_ATOMIC
|
||||
#define BLYNK_SEND_CHUNK 40
|
||||
|
||||
#include "sdkconfig.h"
|
||||
|
||||
#if defined(CONFIG_BT_ENABLED) && defined(CONFIG_BLUEDROID_ENABLED)
|
||||
|
||||
#ifdef ARDUINO_ARCH_ESP32
|
||||
#include "esp32-hal-log.h"
|
||||
#endif
|
||||
|
||||
#include "esp_bt.h"
|
||||
#include "esp_bt_main.h"
|
||||
#include "esp_gap_bt_api.h"
|
||||
#include "esp_bt_device.h"
|
||||
#include "esp_spp_api.h"
|
||||
|
||||
#include <BlynkApiArduino.h>
|
||||
#include <Blynk/BlynkProtocol.h>
|
||||
#include <utility/BlynkFifo.h>
|
||||
|
||||
class BlynkTransportEsp32_BT
|
||||
{
|
||||
public:
|
||||
BlynkTransportEsp32_BT()
|
||||
: mConn (false)
|
||||
, mName ("Blynk")
|
||||
{}
|
||||
|
||||
void setDeviceName(const char* name) {
|
||||
mName = name;
|
||||
}
|
||||
|
||||
// IP redirect not available
|
||||
void begin(char BLYNK_UNUSED *h, uint16_t BLYNK_UNUSED p) {}
|
||||
|
||||
void begin() {
|
||||
instance = this;
|
||||
|
||||
if (!btStarted() && !btStart()) {
|
||||
BLYNK_LOG1(BLYNK_F("btStart failed"));
|
||||
return;
|
||||
}
|
||||
|
||||
esp_bluedroid_status_t bt_state = esp_bluedroid_get_status();
|
||||
if (bt_state == ESP_BLUEDROID_STATUS_UNINITIALIZED) {
|
||||
if (esp_bluedroid_init()) {
|
||||
BLYNK_LOG1(BLYNK_F("esp_bluedroid_init failed"));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (bt_state != ESP_BLUEDROID_STATUS_ENABLED) {
|
||||
if (esp_bluedroid_enable()) {
|
||||
BLYNK_LOG1(BLYNK_F("esp_bluedroid_enable failed"));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (esp_spp_register_callback(esp_spp_cb) != ESP_OK) {
|
||||
BLYNK_LOG1(BLYNK_F("esp_spp_register_callback failed"));
|
||||
return;
|
||||
}
|
||||
|
||||
if (esp_spp_init(ESP_SPP_MODE_CB) != ESP_OK) {
|
||||
BLYNK_LOG1(BLYNK_F("esp_spp_init failed"));
|
||||
return;
|
||||
}
|
||||
|
||||
if (esp_bredr_tx_power_set(ESP_PWR_LVL_N2, ESP_PWR_LVL_P7) != ESP_OK)
|
||||
{
|
||||
BLYNK_LOG1(BLYNK_F("esp_bredr_tx_power_set failed"));
|
||||
};
|
||||
|
||||
if (esp_bt_dev_set_device_name(mName) != ESP_OK)
|
||||
{
|
||||
BLYNK_LOG1(BLYNK_F("esp_bt_dev_set_device_name failed"));
|
||||
}
|
||||
}
|
||||
|
||||
bool connect() {
|
||||
mBuffRX.clear();
|
||||
return mConn = true;
|
||||
}
|
||||
|
||||
void disconnect() {
|
||||
mConn = false;
|
||||
}
|
||||
|
||||
bool connected() {
|
||||
return mConn;
|
||||
}
|
||||
|
||||
size_t read(void* buf, size_t len) {
|
||||
millis_time_t start = BlynkMillis();
|
||||
while (BlynkMillis() - start < BLYNK_TIMEOUT_MS) {
|
||||
if (available() < len) {
|
||||
delay(1);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
size_t res = mBuffRX.get((uint8_t*)buf, len);
|
||||
return res;
|
||||
}
|
||||
|
||||
size_t write(const void* buf, size_t len) {
|
||||
if (!spp_handle) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
esp_err_t err = esp_spp_write(spp_handle, len, (uint8_t *)buf);
|
||||
return (err == ESP_OK) ? len : 0;
|
||||
}
|
||||
|
||||
size_t available() {
|
||||
size_t rxSize = mBuffRX.size();
|
||||
return rxSize;
|
||||
}
|
||||
|
||||
|
||||
static
|
||||
void putData(uint8_t* data, uint16_t len) {
|
||||
if (instance)
|
||||
{
|
||||
// BLYNK_DBG_DUMP(">> ", data, len);
|
||||
instance->mBuffRX.put(data, len);
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
static BlynkTransportEsp32_BT* instance;
|
||||
static uint32_t spp_handle;
|
||||
|
||||
static void onConnect();
|
||||
static void onDisconnect();
|
||||
|
||||
bool mConn;
|
||||
const char* mName;
|
||||
|
||||
BlynkFifo<uint8_t, BLYNK_MAX_READBYTES * 2> mBuffRX;
|
||||
|
||||
static void esp_spp_cb(esp_spp_cb_event_t event, esp_spp_cb_param_t *param)
|
||||
{
|
||||
switch (event)
|
||||
{
|
||||
case ESP_SPP_INIT_EVT: // Once the SPP callback has been registered, ESP_SPP_INIT_EVT is triggered
|
||||
esp_bt_gap_set_scan_mode(ESP_BT_SCAN_MODE_CONNECTABLE_DISCOVERABLE);
|
||||
esp_spp_start_srv(ESP_SPP_SEC_NONE, ESP_SPP_ROLE_SLAVE, 0, "SPP_SERVER");
|
||||
break;
|
||||
|
||||
case ESP_SPP_CLOSE_EVT:// After the SPP disconnection, ESP_SPP_CLOSE_EVT is triggered.
|
||||
spp_handle = 0;
|
||||
onDisconnect();
|
||||
break;
|
||||
|
||||
case ESP_SPP_DATA_IND_EVT:// Data received
|
||||
if (param->data_ind.len > 0)
|
||||
{
|
||||
instance->putData((uint8_t*)param->data_ind.data, param->data_ind.len);
|
||||
}
|
||||
else
|
||||
{
|
||||
BLYNK_LOG1(BLYNK_F("ESP_SPP_DATA_IND_EVT ERROR"));
|
||||
}
|
||||
break;
|
||||
|
||||
case ESP_SPP_CONG_EVT: // SPP connection congestion status changed
|
||||
BLYNK_LOG1(BLYNK_F("ESP_SPP_CONG_EVT"));
|
||||
break;
|
||||
|
||||
case ESP_SPP_SRV_OPEN_EVT://Server connection open
|
||||
spp_handle = param->open.handle;
|
||||
onConnect();
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
class BlynkEsp32_BT
|
||||
: public BlynkProtocol<BlynkTransportEsp32_BT>
|
||||
{
|
||||
typedef BlynkProtocol<BlynkTransportEsp32_BT> Base;
|
||||
public:
|
||||
BlynkEsp32_BT(BlynkTransportEsp32_BT& transp)
|
||||
: Base(transp)
|
||||
{}
|
||||
|
||||
void begin(const char* auth)
|
||||
{
|
||||
Base::begin(auth);
|
||||
state = DISCONNECTED;
|
||||
conn.begin();
|
||||
}
|
||||
|
||||
void setDeviceName(const char* name) {
|
||||
conn.setDeviceName(name);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
BlynkTransportEsp32_BT* BlynkTransportEsp32_BT::instance = NULL;
|
||||
uint32_t BlynkTransportEsp32_BT::spp_handle = 0;
|
||||
|
||||
static BlynkTransportEsp32_BT _blynkTransport;
|
||||
BlynkEsp32_BT Blynk(_blynkTransport);
|
||||
|
||||
void BlynkTransportEsp32_BT::onConnect() {
|
||||
BLYNK_LOG1(BLYNK_F("BT connect"));
|
||||
Blynk.startSession();
|
||||
};
|
||||
|
||||
void BlynkTransportEsp32_BT::onDisconnect() {
|
||||
BLYNK_LOG1(BLYNK_F("BT disconnect"));
|
||||
Blynk.disconnect();
|
||||
}
|
||||
|
||||
#include <BlynkWidgets.h>
|
||||
|
||||
#endif
|
||||
#endif
|
||||
Reference in New Issue
Block a user