Я работаю на микроконтроллере ESP 32-Wroom-32D и использую встроенный класс c Bluetooth для подключения к устройству android. В настоящее время радиус действия микроконтроллера составляет около 70 метров, и я хочу уменьшить его до 5-6 метров. Есть ли какой-нибудь возможный способ уменьшить радиус действия Bluetooth. Пожалуйста, найдите фрагмент кода.
#include "DHT.h"
#include "BluetoothSerial.h"
#include "BLEDevice.h"
#include <esp_bt.h>
#if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED)
#error Bluetooth is not enabled! Please run `make menuconfig` to and enable it
#endif
#define DHTPIN 23
#define DHTTYPE DHT22 // DHT 22
DHT dht(DHTPIN, DHTTYPE);
BluetoothSerial SerialBT;
void setup() {
Serial.begin(115200);
SerialBT.begin("ESP32"); //Bluetooth device name
Serial.println("The device started, now you can pair it with bluetooth!");
dht.begin();
//esp_power_level_t(ESP_PWR_LVL_N12);
}
void loop() {
if (SerialBT.available() == 0);
esp_power_level_t(ESP_PWR_LVL_N12);
Serial.println(ESP_PWR_LVL_N12);
delay(2000);
float f = dht.readTemperature(true);
// Check if any reads failed and exit early (to try again).
if (isnan(f)) {
Serial.println(F("Failed to read from DHT sensor!"));
return;
}
SerialBT.print(f);
//Serial.println(f);
delay(2000);
}