Skip to main content

Harmony Smart Control won't turn off Playstation (updated 26/07/15)

[See 2nd option at the bottom for the alternative fix]

If your Harmony remote won't turn off your PS3 using bluetooth (but turns on OK), modify the power settings for the Power Off so they like like mine below. Seems there is a bug in the Harmony software that mixes up the cross and circle depending on what region you're in.


This worked for me.

































Or, I tried the following steps today (about 10 mins to full reconfigure) and everything works out of the box. Obviously Harmony have the circle and cross switched around for NZ and Australia.
  1. Open the MyHarmony program on your PC/MAC
  2. Log in with your credentials
  3. Click 'My account' in the top-right corner
  4. Change your country to 'Japan' 
  5. Click OK and open your Remote from Gallery
  6. Delete Sony PlayStation 3 in your Account
Then, using the IOS or Android App
  1. Re-add the PS3 and complete the Bluetooth pairing process again
  2. Re-configure the Activities with the newly added device 
  3. Sync your Remote & Test the working of PlayStation 3
Furthermore, I added access to the triangle (Info button), Circle (Return button) and Cross (E button) using the following steps
  1. Enter the hamburger menu top left
  2. > Harmony Setup
  3. > Add/Edit Device Activities
  4. > Remote and Hub
  5. > Harmony Smart Control
  6. > Activity Control Buttons
  7. > Play PS3
Unassigned buttons will be highlighted yellow but you can also configure short press and long press actions for most of the other buttons. Just touch the button you wish to configure and follow the on-screen prompts.

I have mapped the PS and PSHold buttons to the DVR button so I can exit apps like Netflix with the Harmony remote which was not possible prior.

Comments

Popular posts from this blog

Using ESPEasy with Home Assistant via MQTT

Preface: I've just started playing around with Home Assistant on a Raspberry Pi and exploring the world of MQTT to control devices on the network. Learning curve is a bit steep but worth the effort as MQTT is very fast. The hardware and software tools I'm using are as follows: 2 x Sonoff relay units 2 x NodeMCU Boards ESPEasy firmware (must be version 121 or above as that contains the MQTT 'retain' flag option. Home Assistant software on Raspberry Pi2 MQTT Test Software: PC: MQTT.fx Android: MQTT Dashboard

My Notepad++ tricks when editing YAML files in Home Assistant

To comment out a whole section in one go: Highlight the text you want to comment out and use CTRL + Q. If you do this at the start of a line, it will only comment that line. CTRL + Q is toggle mode (comment on/off). CTRL + K will allow you to add multiple comments one after the other.

How to check what entities are filling up your Home Assistant database

If you use the Home Assistant MariaDB add-on, this tip will show you how to query the database so see what Home Assistant entity states are triggering the most, filling up your database. What were going to do: Install the phMyAdmin add-on for MariaDB. Query the MariaDB database. See what entity state changes have the most action. Paste the code below into the SQL query box:  select entity_id,count( * ) from states group by entity_id order by count ( * ) desc; And if you're using the internal home-assistant_v2.db instead, you can use the SQLite Web add-on to achieve the same thing.