My two-way integration project to a RTI processor and remote. It’s quite custom to my own system, but hopefully people can take the foundation and examples here and apply it to their own projects.
This is awesome. Thanks for sharing!
Have Got a RTI XP6 have got the RS232 port 2 attached the GATEMAN DDL N Protocol 2 Way RF Link which works fine for Opening the YALE 4109A Lock using RF but want to have it integrated with Home Assistant so that i can use the RS232 Port of the RTI to trigger for Opening and Closing the Locks via Home Assistant Only kindly guide
Hi, anyone here who can help me to integrate the integration in HASS? I tried it, but no accceptance of the system.
I put this in the configuration.yaml:
#=======RTI Remote=======
remote:
- platform: rtiremote
name: Wohnzimmer_RTI # Name der Fernbedienung
host: 192.168.8.160
port: 5000 # Standardmäßig 5000Weitere Optionen:
device_code: <Gerätecode> # Falls erforderlich
activities: # Definition von Aktivitäten
- name: <Name der Aktivität>
commands:
- <Befehl 1>
- <Befehl 2>
All files from the download are here:
custom_components/rtiremote
I didnt get no entry under “integrations”
Thanks for help…
regards, ingo
That’s doable.
- Setup a Rx driver in Integration Designer using the RTI two-way-strings driver and make two listeners.
RX String 2 Name | door lock
RX String 2 | door
RX String Variable Type | Boolean (enter string to make the boolean true)
RX String 2 Prefix | door:
RX String 2 Suffix | :cmd
Rx String 2 True Result | lock
RX String 2 Name | door unlock
RX String 2 | door
RX String Variable Type | Boolean (enter string to make the boolean true)
RX String 2 Prefix | door:
RX String 2 Suffix | :cmd
Rx String 2 True Result | open
-
Send strings from Home Assistant to the TCP port you setup on the RTI two-way-strings driver using the method of your choice (YAML, NondeRed, Pyscript, etc) The string for lock would be “door:lock:cmd” and the string for unlock would be “door”:open:cmd".
-
In Integration Designer Two-Way Strings “Driver Events”, just make event macros using your existing RTI driver that listen for these two events.
This project does not use the ‘custom components’ feature of HA. The programming on the HA side and the RTI processor need to be very tightly coupled in a very specific way, so a generic custom component just didn’t make sense to me at the time.
As stated in the Readme, there’s no way to make the two systems automatically talk to eachother out of the box, at least without access to the RTI SDK, which is only avaialbe to approaved developers in the RTI ecosystem.
I’d love to collaborate with someone who is RTI Driver Development Program certified and has access to the SDK to discuss making this dream a reality.