homebridge-pioneer-avr-2025
v0.1.3
Published
Fast Pioneer AVR plugin for homebridge, ready for Node 22 or lower.
Downloads
947
Maintainers
Readme
homebridge-pioneer-avr-2025
A Homebridge plugin that allows you to declare your Pioneer AVR as a TV in HomeKit. This project is ready for Node 22 or lower, Homebridge 2 or lower and is forked from homebridge-pioneer-avr.
This plugin is specifically designed for Pioneer models that utilize the PRONTO protocol (e.g., VSX-922). It is not intended for newer models that use the ISCP protocol (e.g., VSX-LX304). For those newer models, we recommend using the homebridge-onkyo-pioneer plugin or checking the "Alternatively" section below.
Features
This plugin enables various controls for your AVR, including:
- Turn AVR On/Off
- Select active input in Home app
- Change Volume (as Lightbulb) in Home app
- Save visibility status for inputs in Home app
- Rename inputs in Home app
- Control AVR with Remote on iOS
- Remote-Key "Play/Pause" (iOS) to toggle between EXTENDED STEREO and PRO LOGIC 2 MOVIE
- Auto discover inputs
- No code modifications are necessary for the plugin to function correctly. Give it a try!
Installation
- Install Homebridge: Homebridge Installation Guide
- Install the homebridge-pioneer-avr-2025 plugin using Homebridge UI.
- Add the configuration as shown in the example below or in
sample-config.json
, adjusting the IP address and port as needed.
Alternatively:
- Install the Homebridge framework using
npm install -g homebridge
- Install homebridge-pioneer-avr-2025 using
npm i homebridge-pioneer-avr-2025
- Update your configuration file. See
sample-config.json
in this repository for a sample.
When switching from the homebridge-pioneer-avr plugin to homebridge-pioneer-avr-2025, it is recommended to remove the "homebridge-pioneer-avr" plugin and the existing accessories under "Accessories" in the Homebridge settings, or reset Homebridge entirely, as well as to reboot the iOS devices.
Accessory Configuration Example
Below is a sample configuration for your accessory:
"accessories": [
{
"accessory": "pioneerAvrAccessory",
"model": "VSX-922",
"name": "MyAVR",
"description": "AV Receiver",
"maxVolumeSet": 70,
"host": "192.168.178.99",
"port": 23
}
]
| Key | Value | | -----------: | :------------------------- | | accessory | don't change | | model | Custom input, can remain | | name | Custom input, can remain | | description | Custom input, can remain | | maxVolumeSet | Optional input, can remain | | minVolumeSet | Optional input, can remain | | host | needs to be accurate | | port | needs to be accurate |
port:
The port used for Telnet to connect to your receiver.
If port 23 does not work, try port 8102.
Alternatively, enable Web Interface (see user manual) and then try opening in your web browser something like:http://vsx-922.local/1000/port_number.asp
orhttp://192.168.178.99/1000/port_number.asp
... to find the port number.
maxVolumeSet:
A number between 0 and 100; for example, 60 means 60% of the max volume.
100 = -0dB (i.e., 185 = No Limit),
60 = -16dB,
0: disables the volume as brightness feature
Defaults to 80 if undefined.
A value of 60 has worked well for me.
Note: The difference between
maxVolumeSet
andminVolumeSet
should be at least 20.
Both only affects the volume as a brightness feature, not the remote.
minVolumeSet:
A number between 0 and 100; for example, 30 means 30% of the max volume.
Defaults to 20 if undefined.
This setting is only active in combination withmaxVolumeSet
.
A value of 35 has worked well for me.
Links
Alternatives
Release Notes
- v0.1.3: Improved communication of device status with HomeKit and fixed a bug with volume control in the iOS Remote.
- v0.1.2: Fixed an issue where "Web Interface enabled" unintentionally turned on the receiver.
- v0.1.1: Reduced npm dependencies and updated
package.json
, less info-logging. - v0.1.0: Some final improvements for stabilization.
- v0.0.9: Fixed an issue related to volume control on Apple Watch.
- v0.0.8: Volume as Lightbulb works even finer now!
- v0.0.7: Volume as Lightbulb works fine now.
- v0.0.6: The volume can now be adjusted within the Home icon of the receiver.
- v0.0.5: The unused Remote-Key "Play/Pause" can now be used to toggle Listening-Mode.
- v0.0.4: Plugin-Name in README fixed.
- v0.0.3: Input 46 -> AIRPLAY added.
- v0.0.2: Fixes.
- v0.0.1: Enhanced performance and responsiveness of the Pioneer AVR receiver.
- v0.0.0: Forked homebridge-pioneer-avr.