thestinger / termite

Termite is obsoleted by Alacritty. Termite was a keyboard-centric VTE-based terminal, aimed at use within a window manager with tiling and/or tabbing support.
https://github.com/alacritty/alacritty
2.73k stars 240 forks source link

Feature Request: Serial Console Client #676

Closed ifohancroft closed 5 years ago

ifohancroft commented 5 years ago

I'd like it if Termite had the ability to act as a serial console client. For example, being able to connect to the Arduino's Serial console so I can use Termite instead of the Arduino's software serial monitor. For example termite -o /dev/ttyACM0 115200 (specifying the device and the baud rate).

jelly commented 5 years ago

Won't be implemented, there are plenty of alternatives for serial console clients such as screen. screen /dev/ttyACM0 115200

ifohancroft commented 5 years ago

Thanks! I didn't know screen can do that.