ESP32蓝牙重定向串行输出

时间:2019-10-23 19:24:28

标签: bluetooth esp32

我有一个ESP32开发板,上面连接了MMA8451加速度计,该加速度计通过串行输出。有没有一种简单的方法可以将数据输出到Android手机上的蓝牙串行接收器?在代码的一部分中,我正在使用Serial.print语句。有蓝牙等效项吗?

// Read the 'raw' data in 14-bit counts
  mma.read();
  Serial.print("X:\t"); Serial.print(mma.x); 
  Serial.print("\tY:\t"); Serial.print(mma.y); 
  Serial.print("\tZ:\t"); Serial.print(mma.z); 
  Serial.println();

1 个答案:

答案 0 :(得分:1)

我很快就找到了googling。或者,如果您想使用ESP32-idf

在我看来,有两种可能性。您可以使用Arduino BluetoothSerial库或the ESP-IDF SPP GATT CLIENT demo

Arduino解决方案看起来像this

#include "BluetoothSerial.h"

BluetoothSerial SerialBT;

void setup() {
  SerialBT.begin("ESP32");
}

void loop() {

  SerialBT.println("Hello World");
  delay(1000);
}

ESP-IDF版本是bit more complex,但这是使用蓝牙api发送定期心跳的代码:

#ifdef SUPPORT_HEARTBEAT
void spp_heart_beat_task(void * arg)
{
    uint16_t cmd_id;

    for(;;) {
        vTaskDelay(50 / portTICK_PERIOD_MS);
        if(xQueueReceive(cmd_heartbeat_queue, &cmd_id, portMAX_DELAY)) {
            while(1){
                if((is_connect == true) && (db != NULL) && ((db+SPP_IDX_SPP_HEARTBEAT_VAL)->properties & (ESP_GATT_CHAR_PROP_BIT_WRITE_NR | ESP_GATT_CHAR_PROP_BIT_WRITE))){
                    esp_ble_gattc_write_char( spp_gattc_if,
                                              spp_conn_id,
                                              (db+SPP_IDX_SPP_HEARTBEAT_VAL)->attribute_handle,
                                              sizeof(heartbeat_s),
                                              (uint8_t *)heartbeat_s,
                                              ESP_GATT_WRITE_TYPE_RSP,
                                              ESP_GATT_AUTH_REQ_NONE);
                    vTaskDelay(5000 / portTICK_PERIOD_MS);
                }else{
                    ESP_LOGI(GATTC_TAG,"disconnect\n");
                    break;
                }
            }
        }
    }
}
#endif