Hi all,
I didn't understand what is the final solution to set +18dBm. Can you explain me?
Thanks
Stevasway
Search found 4 matches
- Thu Apr 27, 2023 7:43 am
- Forum: ESP32 Arduino
- Topic: BLEDevice::setPower has no effect?
- Replies: 8
- Views: 13063
- Thu Mar 09, 2023 4:22 pm
- Forum: Hardware
- Topic: ESP8685-WROOM-03 flashing/programming
- Replies: 2
- Views: 1724
ESP8685-WROOM-03 flashing/programming
Hi all,
do you know how to flash the ESP8685-WROOM-03 without using testpad IO9?
JTAG signals are disabled and is not possible to program using ESP-PROG.
Thanks
Stevasway
do you know how to flash the ESP8685-WROOM-03 without using testpad IO9?
JTAG signals are disabled and is not possible to program using ESP-PROG.
Thanks
Stevasway
- Wed Mar 01, 2023 5:04 pm
- Forum: ESP32 Arduino
- Topic: How do you set the ESP32C3-WROOM to maximum BLE Power?
- Replies: 0
- Views: 846
How do you set the ESP32C3-WROOM to maximum BLE Power?
Hi all,
inside the datasheet is written 18dBm as maximum for bluetooth tx power.
esp_err_t errRc;
errRc = esp_ble_tx_power_set(ESP_BLE_PWR_TYPE_DEFAULT,ESP_PWR_LVL_P18);
it's enough to get max power?
Thanks all.
Stevasway
inside the datasheet is written 18dBm as maximum for bluetooth tx power.
esp_err_t errRc;
errRc = esp_ble_tx_power_set(ESP_BLE_PWR_TYPE_DEFAULT,ESP_PWR_LVL_P18);
it's enough to get max power?
Thanks all.
Stevasway
- Wed Mar 01, 2023 4:54 pm
- Forum: Hardware
- Topic: ESP32C3-WROOM BLE max power settings
- Replies: 0
- Views: 722
ESP32C3-WROOM BLE max power settings
Hi all, inside the ESP32C3-WROOM datasheet is written the max RF power control range : 18 dBm. Is it possible to set this maximum power range? Using Arduino Core, the code is esp_err_t errRc; errRc = esp_ble_tx_power_set(ESP_BLE_PWR_TYPE_DEFAULT,ESP_PWR_LVL_P18); is it correct? And more, the tx powe...