I backed the NEEO remote control a while ago, and they’re now shipping to people. They’ve released their API, so I wondered if anyone had looked at (or were planning to to look at) adding some kind of Home Assistant support/integration?
It would be really useful to be able to activate Home Assistant scripts, scenes etc. from the NEEO, and also activate NEEO recipes from Home Assistant
I also have received my NEEO remote control and it would be indeed very slick to have the NEEO as a remote control for Home Assistant. You have my vote!
If I had time I would explore the API, but alas; work and family and too little time for play .
apologies for the maybe basic answer - but how does one install this.
Just received my controller (currently have harmony hubs working with context pause, and floorplan buttons) - but not sure how to install this to test.
Alexa integration with harmony and HA is pretty good, but this device is incredibly usable, but trying to evaluate the pros / cons
any insights/help would be great
so i’ve managed to replace one harmony with a NEEO brain and remote - replicating behavior
[key to these remotes success is staying with a single synchronized input else once out of sync nothing works lol]
creating HA switches that change an input select, then add them to each remote recipe - so HA knows what mode remote is in
Created a recipe in NEEO that sends pause to all devices.
Alexa sees recipes as wemo switches - so voice commands work
RIght now no support for Amazon fire tv
no custom icons
Anyone know how you can send a command TO NEEO brain - ie if i have a switch on the floorplan that used to send a harmony command? right now i’m trying to have it turn on one of the wemo switches, but cant discover them - this would complete the loop and allow replacement of harmony.
Sweet - 1 step closer to full integration! Thanks for sharing.
It would be good to add them to the thread if we can, would like to understand if we can beef this up from separate switches to a:
Remote.Neeo
Where you could send a data_template that aligns with the NEEO rest api
Room
Device
Key
[EDIT]:
So on closer inspection the switches stay up to date on the activity. This means you an do a few things (similar to the harmony)
Change Input_select based on what is ‘on’ to display what is playing
Automations to pause based on the trigger (a pause switch) and a condition (the input_select option). So now i can say ‘Alexa pause the TV’ and it will send the specific pause command based on what you are using.
Hi folks,
So cant figure out how to create a Neeo equivalent for contextual pause, so welcome any input here. This was my harmony version:
harmony_bedroom_pause:
sequence:
- service: remote.send_command
data_template:
# using a data template to have if brances for relavant device
# Always the same entity_id - the harmony hub
entity_id: remote.bedroom_hub
# Always the same command - the Pause key
command: Pause
# select device based upon the activity being undertaken.
device: >
{% if is_state("input_select.living_room_tv_select", "Watch TV") %}
51276676
{% elif is_state("input_select.living_room_tv_select", "Watch Smart TV") %}
46596125
{% endif %}
- delay: 00:00:05
- service: input_boolean.turn_off
entity_id: input_boolean.bedroom_pause
(i used an input_boolean and surfaced it as a switch to Alexa)
in the Neeo world - every pause command is specific to the room/device/key. I have every rest_command needed to send the pause, but cant figure out how to send a specific rest_command based on the input_select
i’m not great at creating new code, and from other examples cant figure out how to envoke a data_template like this: