Is it possible to connect to named pipe such as \\.\pipe\mypipe?
Is it possible to connect to named pipe such as \.\pipe\mypipe?
It's not currently possible, as SimplySerial is built around the SerialPort class and deals with hardware interfaces. I'm not really familiar with named pipes, but my understanding is that they're generally used for inter-process (software-to-software) communications. Do you have a use case you're able to share?
Yes, I have a use case.
I have a hyper-v virtual machine, I want to connect to the vm with serial console.
Putty's plink can do the work like this:
But I prefer SimplySerial.
I would not recommend this change to SimplySerial. This software was intended for Arduino CircuitPython devices but works well with any Arduino, ESP32, or other similar devices and only serial protocols. Extending to handle pipes, then IP, then Bluetooth....It would bloat up too much.
I recommend closing this issue as beyond the scope of the app. Anyone is free to clone this and compile their own variation.