![]() |
|
linux command line / bash scripting - Printable Version +- Smart Home Automation Forum (https://www.kincony.com/forum) +-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=72) +--- Forum: TA (https://www.kincony.com/forum/forumdisplay.php?fid=76) +--- Thread: linux command line / bash scripting (/showthread.php?tid=8899) |
linux command line / bash scripting - almman - 01-11-2026 Hello, I currently use AD2USB to communicate with my Honeywell Vista alarm system. Together with ser2sock (serial to socket), in bash/Linux, I use: if exec 3</dev/tcp/localhost/444555 ; then cat <&3 | while read -t12 msg ; do # Print last keypad/console message. # Example: ****DISARMED**** Ready to Arm echo "$msg" sleep 1 done fi There are also functions to send commands to the alarm as if it were typed on the keypad. How does one send/receive to/from the TA ESP32-S3 via command line/bash scripts? Thanks RE: linux command line / bash scripting - admin - 01-11-2026 after download KCS v3 firmware to TA esp32 module. TA support HTTP, MQTT, RS485 modbus different protocol. the protocol documents see here: https://www.kincony.com/forum/forumdisplay.php?fid=75 RE: linux command line / bash scripting - almman - 01-11-2026 Wow! There appears to be lot's of flexibility as there are many protocols to choose from. I'm excited and will definitely buy one of these. Thank you! |