Based on the A2DP_SINK example.
I'm having some issues with the esp_avrc_ct_send_passthrough_cmd to control the bluetooth device's sound volume.
It works with play/stop commands, e.g:
Code: Select all
esp_avrc_ct_send_passthrough_cmd(1, ESP_AVRC_PT_CMD_STOP, ESP_AVRC_PT_CMD_STATE_PRESSED);
Code: Select all
esp_avrc_ct_send_passthrough_cmd(1, ESP_AVRC_PT_CMD_VOL_UP, ESP_AVRC_PT_CMD_STATE_PRESSED);
Also tried esp_avrc_ct_send_set_absolute_volume_cmd but it doesn't seem to work either....
Any ideas?
Thanks!