• Stars
    star
    164
  • Rank 230,032 (Top 5 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 5 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Homebridge plugin for Microsoft Game Console, publish as independent external platform accessory.

Xbox and controller

Homebridge Xbox TV

verified-by-homebridge npm npm npm GitHub pull requests GitHub issues

Homebridge plugin for Microsoft game Consoles. Tested with Xbox One X/S and Xbox Series X.

Package Requirements

Package Installation Role Required
Homebridge Homebridge Wiki HomeKit Bridge Required
Config UI X Config UI X Wiki Homebridge Web User Interface Recommended
Xbox TV Plug-In Wiki Homebridge Plug-In Required

About The Plugin

  • Power ON/OFF short press tile in HomeKit app.
  • Reboot Console with additional button, rquired webApiControl enabled.
  • RC/Media control is possible after you go to the RC app on iPhone/iPad.
  • Speaker control is possible after you go to RC app on iPhone/iPad Speaker Service.
  • Legacy Volume and Mute control is possible throught extra lightbulb/fan (slider).
  • Apps, Inputs, Games can be switched if webApiControl is enabled and console is authorized.
  • Siri can be used for all functions, some times need create legacy buttons/switches/sensors.
  • Automations can be used for all functions, some times need create legacy buttons/switches/sensors.
  • Record Game DVR with additional button.
  • MQTT publisch topic Info, State, Consoles List, Profile, Apps, Storages, Status as payload JSON data.

Accessory tile in the HomeKit app Changing the accessory input Arrow pointing to the remote control icon in the control center Remote control interface

Authorization Manager

  • First of all please use built in Authorization Manager.
    • Start new authorization need remove old token first, to clear token use Authorization Manager GUI.
    • Make sure Your web browser do not block pop-up window, if Yes allow pop-up window for this app.

Authentication Manager

Configuration

  • Device must have Instant-on power mode enabled
    • Profile & System > Settings > General > Power mode & startup
    • Console need to allow connect from any 3rd app. Allow Connections from any device should be enabled.
    • Profile & System > Settings > Devices & Connections > Remote features > Xbox app preferences.
  • Run this plugin as a Child Bridge (Highly Recommended), this prevent crash Homebridge if plugin crashes.
  • Install and use Homebridge Config UI X to configure this plugin.
  • See the sample-config.json file or copy the example making the apporpriate changes before saving it.
  • Be sure to always make a backup copy of your config.json file before making any changes to it.

Key Description
name Here set the accessory Name to be displayed in Homebridge/HomeKit.
host Here set the Hsostname or Address IP of Console.
xboxLiveId On your console select Profile > Settings > System > Console info, listed as Xbox network device ID. You can only find the Xbox network device ID in Settings on your console, this is different from your console serial number.
webApiControl This enable control Xbox over Web Api. Additional functions are available in Advanced Settings section.
getInputsFromDevice If enabled, apps will be loaded from device, only available if webApiControl enabled.
filterGames If enabled, Games will be hidden and not displayed in the inputs list, only available if webApiControl enabled.
filterApps If enabled, Apps will be hidden and not displayed in the inputs list, only available if webApiControl enabled.
filterSystemApps If enabled, System Apps (Accessory, Microsoft Store, Television) will be hidden and not displayed in the inputs list, only available if webApiControl enabled.
filterDlc If enabled, Dlc will be hidden and not displayed in the inputs list, only available if webApiControl enabled.
inputs.name Here set Input Name which You want expose to the Homebridge/HomeKit, Screensaver, Television, TV Settings, Dashboard, Accessory, Settings, Network Troubleshooter, Microsoft Store, Xbox Guide are created by default.
inputs.reference Required to identify current running app.
inputs.oneStoreProductId Required to switch apps.
inputs.contentType Here select from available content types.
buttons.name Here set Button Name which You want expose to the Homebridge/HomeKit.
buttons.command Here select button control mode or command, Reboot and Switch App/Game- only possible if webApiControl enabled.
buttons.oneStoreProductId Here set Input oneStoreProductId, only possible if webApiControl enabled.
buttons.displayType Here select display type in HomeKit app, possible None/Disabled, Outlet, Switch.
sensorPower If enabled, then the Power will be exposed as a Motion Sensor (active on Power ON) to use with automations.
sensorInput If enabled, then the Input will be exposed as a Motion Sensor (active on every Input change) to use with automations.
sensorScreenSaver If enabled, then the Screen Saver will be exposed as a Motion Sensor (active on change to Screen Saver) to use with automations.
sensorInputs.name Here set own Name which You want expose to the Homebridge/HomeKit for this sensor.
sensorInputs.reference Here set Reference like Xbox.Dashboard_8wekyb3d8bbwe!Xbox.Dashboard.Application to be exposed as sensor (active on switch to this Input).
sensorInputs.displayType Here select sensor type to be exposed in HomeKit app, possible None/Disabled, Motion Sensor, Occupancy Sensor, Contact Sensor.
webApiPowerOnOff This enable power ON/OFF control over Web Api.
xboxWebApiToken Required if webApiControl enabled.
clientId If You create app on Azure AD then You can use your own Client Id.
clientSecret If You create app on Azure AD then You can use own Client Secret.
userToken Alternate authorization method.
userHash Alternate authorization method.
enableDebugMode If enabled, deep log will be present in homebridge console.
disableLogInfo If enabled, disable log info, all values and state will not be displayed in Homebridge log console.
disableLogDeviceInfo If enabled, add ability to disable log device info by every connections device to the network.
infoButtonCommand Here select the function of I button in RC app.
volumeControl Here choice what a additional volume control mode You want to use (None/Disabled, Lightbulb, Fan), not working yet.
enableMqtt If enabled, MQTT Broker will start automatically and publish all awailable PV installation data.
mqttHost Here set the IP Address or Hostname for MQTT Broker.
mqttPort Here set the Port for MQTT Broker, default 1883.
mqttPrefix Here set the Prefix for Topic or leave empty.
mqttAuth If enabled, MQTT Broker will use authorization credentials.
mqttUser Here set the MQTT Broker user.
mqttPasswd Here set the MQTT Broker password.
mqttDebug If enabled, deep log will be present in homebridge console for MQTT.
reference, oneStoreProductId If web Api enabled then all available in ./homebridge/xboxTv/inputs_xxxxxx file.
Volume Control -1 - None/Disabled, 0 - Slider, 1 - Fan.
Display Type Inputs/Buttons -1 - None/Disabled, 0 - Outlet, 1 - Switch.
Display Type Sensors -1 - None/Disabled, 0 - Motion Sensor, 1 - Occupancy Sensor, 2 - Contact Sensor.

Create app on Azure AD

  • Go to Azure Portal
  • Register new app + New registration
    • Enter a name for your app
    • Set Supported account types to Personal Microsoft accounts only
    • Click register
    • Choose Redirect URIs -> Add a Redirect URI
    • Click "Add a platform" -> "Mobile and desktop applications"
    • Enter custom redirect URI http://localhost:8888/auth/callback
  • From the overview of your app page, copy Application (client) ID to clientId
  • Zave restart plugin and authorize console again and have fun.