We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bf0f31 commit c466b3eCopy full SHA for c466b3e
src/BluetoothA2DPSink.cpp
@@ -1120,13 +1120,13 @@ void BluetoothA2DPSink::activate_pin_code(bool active){
1120
1121
void BluetoothA2DPSink::confirm_pin_code()
1122
{
1123
- ESP_LOGI(BT_AV_TAG, "confirm_pin_code %s", pin_code_int);
+ ESP_LOGI(BT_AV_TAG, "confirm_pin_code %d", pin_code_int);
1124
esp_bt_gap_ssp_passkey_reply(peer_bd_addr, true, pin_code_int);
1125
}
1126
1127
void BluetoothA2DPSink::confirm_pin_code(int code)
1128
1129
- ESP_LOGI(BT_AV_TAG, "confirm_pin_code %s", code);
+ ESP_LOGI(BT_AV_TAG, "confirm_pin_code %d", code);
1130
esp_bt_gap_ssp_passkey_reply(peer_bd_addr, true, code);
1131
1132
0 commit comments