All Projects → dalhundal → sky-remote

dalhundal / sky-remote

Licence: other
NodeJS module to send remote control commands to a Sky TV box

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to sky-remote

Openhab Ios
The repository of the iOS client
Stars: ✭ 141 (+166.04%)
Mutual labels:  home-automation, internet-of-things
Broadlink Mqtt
MQTT client to control BroadLink devices
Stars: ✭ 169 (+218.87%)
Mutual labels:  home-automation, internet-of-things
Entity Controller
Entity and lighting controller for managing devices via timers, scripts, and sun-based time restrictions.
Stars: ✭ 156 (+194.34%)
Mutual labels:  home-automation, internet-of-things
Core
🏡 Open source home automation that puts local control and privacy first.
Stars: ✭ 48,265 (+90966.04%)
Mutual labels:  home-automation, internet-of-things
Netdisco
🔎 Python library to scan local network for services and devices.
Stars: ✭ 240 (+352.83%)
Mutual labels:  home-automation, internet-of-things
Ha Floorplan
Floorplan for Home Assistant
Stars: ✭ 1,626 (+2967.92%)
Mutual labels:  home-automation, internet-of-things
Homeassistant
Example Home Assistant Configs
Stars: ✭ 168 (+216.98%)
Mutual labels:  home-automation, internet-of-things
Pysmartthings
A python library for interacting with the SmartThings cloud API build with asyncio and aiohttp.
Stars: ✭ 51 (-3.77%)
Mutual labels:  home-automation, internet-of-things
Homeassistant Config
Stars: ✭ 211 (+298.11%)
Mutual labels:  home-automation, internet-of-things
Blynk Server
Blynk is an Internet of Things Platform aimed to simplify building mobile and web applications for the Internet of Things. Easily connect 400+ hardware models like Arduino, ESP8266, ESP32, Raspberry Pi and similar MCUs and drag-n-drop IOT mobile apps for iOS and Android in 5 minutes
Stars: ✭ 8 (-84.91%)
Mutual labels:  home-automation, internet-of-things
Home Assistant Js Websocket
🚡 JavaScript websocket client for Home Assistant
Stars: ✭ 100 (+88.68%)
Mutual labels:  home-automation, internet-of-things
home-assistant-config
My configuration for Home Assistant
Stars: ✭ 63 (+18.87%)
Mutual labels:  home-automation, internet-of-things
Psmqtt
Utility reporting system health and status via MQTT
Stars: ✭ 95 (+79.25%)
Mutual labels:  home-automation, internet-of-things
Ha Tts Bluetooth Speaker
TTS Bluetooth Speaker for Home Assistant
Stars: ✭ 140 (+164.15%)
Mutual labels:  home-automation, internet-of-things
Rpieasy
Easy MultiSensor device based on Raspberry PI
Stars: ✭ 85 (+60.38%)
Mutual labels:  home-automation, internet-of-things
Home assistant files
Here are my Home Assistant configuration files
Stars: ✭ 159 (+200%)
Mutual labels:  home-automation, internet-of-things
Smarthome
Eclipse SmartHome™ project
Stars: ✭ 867 (+1535.85%)
Mutual labels:  home-automation, internet-of-things
Home Assistant Config
🏠 My Home Assistant configuration, a bit different that others :) Be sure to 🌟 this repository for updates!
Stars: ✭ 1,050 (+1881.13%)
Mutual labels:  home-automation, internet-of-things
Home Assistant
Home-Assistant-Config
Stars: ✭ 182 (+243.4%)
Mutual labels:  home-automation, internet-of-things
tion python
Python module for Tion
Stars: ✭ 51 (-3.77%)
Mutual labels:  home-automation, internet-of-things

#sky-remote

A NodeJS module for sending remote control commands to a Sky TV box. Works with Sky+HD and SkyQ.

Usage

Installation

npm install sky-remote

Simple example

var SkyRemote = require('sky-remote');

var remoteControl = new SkyRemote('192.168.0.40');

// Simple - just send a command
remoteControl.press('power');

// Cool - send sequences of commands
remoteControl.press(['channelup', 'record', 'select']);

// Nice - send commands with a callback
remoteControl.press('channelup', function(err) {
	if (err) {
		console.log("Woah! Something went wrong. Cry time.");
	} else {
		console.log("I just pressed the Channel Up command.");
	};
});

Sky Q (if firmware < 060)

var remoteControl = new SkyRemote('192.168.0.40', SkyRemote.SKY_Q_LEGACY);

Remote control commands

sky power

tvguide or home boxoffice services or search interactive or sidebar

up down left right select

channelup channeldown i

backup or dismiss text help

play pause rewind fastforward stop record

red green yellow blue

0 1 2 3 4 5 6 7 8 9

See also

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].