Skip to content

Releases: FunkeyFlo/ps5-mqtt

v1.3.3

07 Feb 21:08
Compare
Choose a tag to compare

What’s changed

v1.3.2

19 Nov 13:23
e7a60a9
Compare
Choose a tag to compare

What’s changed

v1.3.1

13 Dec 19:44
02c02e2
Compare
Choose a tag to compare

What’s changed

🐛 Bug fixes

⬆️ Dependency updates

v1.3.0

26 Nov 11:44
6091d6b
Compare
Choose a tag to compare

What’s changed

🚨 New functionality

VLAN support @FunkeyFlo (#140)

The new option device_discovery_broadcast_address allows you to manually set the broadcast address the addon will use to discover devices.

⬆️ Dependency updates

v1.2.2

18 Oct 21:42
Compare
Choose a tag to compare

What’s changed

🐛 Bug Fixes

  • Activity sensor working again thanks to the lovely folks @ psn-api

v1.2.1

18 Oct 20:00
Compare
Choose a tag to compare

What’s changed

🐛 Bug Fixes

  • Fixed psn api failure causing fatal error

v1.2.0

16 Oct 16:50
9c0736f
Compare
Choose a tag to compare

What’s changed

🚨 New functionality

"preferred" devices (#106)

Users can now specify the preferred console per account. This is useful when, for example, you have multiple PSN users in your home and multiple PS4's or multiple PS5's. This new option lets you define a preferred device per account.

- username: MyPsnUser
  npsso: '!secret my_npsso'
  preferred_ps5: 70C881D600B0      # ID of the PS5 that will be preferred when activity can be matched to multiple PS5's 
  preferred_ps4: 60E899D600B0      # ID of the PS4 that will be preferred when activity can be matched to multiple PS4's

You can find the ID of your PlayStation device by:

  1. Using the Web-UI

    image

  2. Examining the MQTT topic

    image

⬆️ Dependency updates

v1.1.0

15 Sep 21:10
Compare
Choose a tag to compare

What's changed?

  • Docker users can now use a json file to configure the add-on as well.

🐛 Bug fixes

⬆️ Dependency updates

  • Bump @reduxjs/toolkit from 1.8.3 to 1.8.5 in /ps5-mqtt @dependabot (#48)
  • Bump redux-saga from 1.1.3 to 1.2.1 in /ps5-mqtt @dependabot (#50)
  • Bump grommet-icons from 4.7.0 to 4.8.0 in /ps5-mqtt @dependabot (#60)
  • Bump async-mqtt from 2.6.2 to 2.6.3 in /ps5-mqtt @dependabot (#65)
  • Bump grommet from 2.25.1 to 2.25.3 in /ps5-mqtt @dependabot (#66)
  • and much more...

v1.0.1

19 Aug 08:42
fa3ca94
Compare
Choose a tag to compare

What’s changed

🐛 Bug fixes

  • Fix PS4 title activity not being matched to PS5 devices @FunkeyFlo (#29)

v1.0.0

11 Aug 19:46
1a5b5a7
Compare
Choose a tag to compare

What’s changed

🚨 New functionality

Matching PSN account activity to consoles is now supported.

The add-on will create a new sensor.my_playstation_activity sensor that tells you which app/game is being used on the console! Both entities, activity and power, will now include the following attributes:

Attribute Description
Players A list of players active on the device
Activity / sensor.state idle, playing or none; indicating the kind of activity on the device
Title Name A user-friendly name of the Playstation App / Game currently in use.
Title Image A url referring to the official box-art.
Title ID unique code for the Playstation App / Game currently in use.

Take a look at the documentation to see how to configure the add on for tracking PSN accounts and how to acquire the required information.

Examples

image
image

⚠ The MQTT implementation saw some changes that might cause you to have duplicate power entities in HA after upgrading. ⚠

  • The advised upgrade path is to remove your old devices from Home Assistant and let the add-on rediscover them for you.
  • Alternatively remove the old power entity and rename the new power entity (which will probably be called something like switch.my_ps5_power_2) to your old entity's name.

🚀 Enhancements

📚 Documentation