17 lines
224 B
C++
17 lines
224 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace avrcp {
|
|
void init();
|
|
bool is_playing();
|
|
|
|
void play_pause();
|
|
void forward();
|
|
void backward();
|
|
void seek_forward();
|
|
void seek_backward();
|
|
|
|
void set_volume(uint8_t volume);
|
|
}
|