Geoffrey Hunter
Geoffrey Hunter
UPDATE: Might be better to use Tuari, which would use Rust for the backend. Utilizes the OSes webview making for lighter apps.
@wmmiii are you aware that you can send break signals of arbitrary lengths using the `setSignals()` function (see https://developer.mozilla.org/en-US/docs/Web/API/SerialPort/setSignals)? Using this function you can set break to true, wait a...
@wmmiii you should be able to use `setSignals()` with an open port, at least I have been able to with no issues. I send the break signal in NinjaTerm in...
For my application, I reverted back to using Electron for better serial control compared to Web Serial. Web Serial is a great idea, but it does not seem like a...
Hmmmm, @qasidaleem the first thing that comes to mind is the device path. What is the device you are talking to, and what is it's path under `/dev/`? Can you...
@Vinzenz82 interesting! I didn't know there was a `serial_rs485` struct available that you can use to configure it specifically for RS-485. I'll have to look further into this and consider...
Thanks for the feature request, I like this one. Just out of interest, what is your use case for this?
Thanks for your input here too @AndreKR . This gives me a bit more motivation to do this soonish, I'll let you know if/when I add this.
Hi @tguneysu , thanks for the feedback. I'll see if I can recreate the problem and fix it.
Hi @tguneysu I did some testing. What I've noticed is that your byte sequence contains "27" which is the escape char and NinjaTerm thinks it's an escape sequence. You should...