Hi everyone,
I've been struggling with figuring out how to make an automation/ configuration which lets me send a telnet command with a custom payload.
I've figured out I can send them via terminal with:
echo -e "test\r\n" | nc 192.168.0.200 23
however it seems | is not available in configration.yaml it seems.
I'ved used the telnet integration to do some basic stuff like:
switch:
- platform: telnet
switches:
nuvo_zone_1_mute:
resource: 192.168.0.200
port: 23
command_on: >
*Z1MUTE
command_off: >
*Z1MUTE
timeout: 0.9
However this isn't really great for other things I might want to do
Anyone got any ideas?