Skip to content
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.

Commit

Permalink
Updated the README to include examples from the application controller.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbart committed Dec 28, 2012
1 parent 7cf84bb commit c33aa4e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,3 +217,21 @@ Navigation Controller
$navigation->back();
$navigation->contextMenu();
$navigation->toggleOSD();

Application Controller

$application = $client->getApplicationController();

$episode = $section
->getShow('It\'s Always Sunny in Philadelphia')
->getSeason(5)
->getEpisode(4);

// Play episode from beginning
$application->playMedia($episode);

// Play epsiode from where it was last stopped
$application->playMedia($episode, $episode->getViewOffset());

// Set voume to half
$application->setVolume(50);

0 comments on commit c33aa4e

Please sign in to comment.