2017 © Pedro Peláez
 

library php-sky-remote

Sky TCP remote for PHP

image

mice-soft/php-sky-remote

Sky TCP remote for PHP

  • Sunday, February 25, 2018
  • by karl-micesoft
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

php-sky-remote

Controll Sky HD/Q boxes over TCP/IP in PHP, (*1)

Usage

use PhpSkyRemote\PhpSkyRemote;

$remote = new PhpSkyRemote('192.168.0.X'); // Replace with sky box IP

// Send single command
$remote->press('home');

// Send single command using constants
$remote->press(PhpSkyRemote::COMMAND_HOME);

// Send multiple commands using a string...
$remote->press('home up select');

// ... or an array
$remote->press(['home', 'up', 'select']);

// ... or an array of constants
$remote->press([
  PhpSkyRemote::COMMAND_HOME,
  PhpSkyRemote::COMMAND_UP,
  PhpSkyRemote::COMMAND_SELECT,
]);

Credits

This project was completed by converting https://github.com/dalhundal/sky-remote into PHP. Many thanks to Dal Hundal for writing it. Without his work this would not have been easy..., (*2)

The Versions

25/02 2018

dev-master

9999999-dev

Sky TCP remote for PHP

  Sources   Download

Unlicense

The Requires

  • php >=5.3.0

 

by Karl Wagner