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