|
|
|
@ -323,35 +323,65 @@ void ConsumerControl_::mute (void){
|
|
|
|
|
sendReport(0x01, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::volumeUp (void)
|
|
|
|
|
{ sendReport(0x02, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x02, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::volumeDown (void)
|
|
|
|
|
{ sendReport(0x03, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x03, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::playPause (void)
|
|
|
|
|
{ sendReport(0x04, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x04, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::stop (void)
|
|
|
|
|
{ sendReport(0x05, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x05, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::previousTrack (void)
|
|
|
|
|
{ sendReport(0x06, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x06, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::nextTrack (void)
|
|
|
|
|
{ sendReport(0x07, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x07, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::mail (void)
|
|
|
|
|
{ sendReport(0x08, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x08, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::calculator (void)
|
|
|
|
|
{ sendReport(0x09, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x09, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::wwwSearch (void)
|
|
|
|
|
{ sendReport(0x0a, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x0a, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::wwwHome (void)
|
|
|
|
|
{ sendReport(0x0b, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x0b, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::wwwFavorites (void)
|
|
|
|
|
{ sendReport(0x0c, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x0c, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::wwwRefresh (void)
|
|
|
|
|
{ sendReport(0x0d, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x0d, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::wwwStop (void)
|
|
|
|
|
{ sendReport(0x0e, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x0e, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::wwwForward (void)
|
|
|
|
|
{ sendReport(0x0f, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x0f, 0);
|
|
|
|
|
}
|
|
|
|
|
void ConsumerControl_::wwwBack (void)
|
|
|
|
|
{ sendReport(0x10, 0); }
|
|
|
|
|
{
|
|
|
|
|
sendReport(0x10, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
|
//================================================================================
|
|
|
|
|