You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
489 B
15 lines
489 B
#pragma once
|
|
|
|
|
|
void Bluetooth_Init(void);
|
|
void Bluetooth_Cyclic(void);
|
|
|
|
// AVRC commands, see https://github.com/pschatzmann/ESP32-A2DP/wiki/Controlling-your-Phone-with-AVRC-Commands
|
|
|
|
// Support for AVRC Commands starting from ESP32 Release 1.0.6
|
|
void Bluetooth_PlayPauseTrack(void);
|
|
void Bluetooth_NextTrack(void);
|
|
void Bluetooth_PreviousTrack(void);
|
|
|
|
// Support for AVRC Commands starting from ESP32 Release 2.0.0
|
|
void Bluetooth_SetVolume(const int32_t _newVolume, bool reAdjustRotary);
|