We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I was trying to run this awesome tool from a bash inotifywait script.
and got:
nodemcu-tool/lib/SerialTerminal.js:53 process.stdin.setRawMode(true); ^ TypeError: process.stdin.setRawMode is not a function
I added this in line ~53
if(process.stdin.isTTY) { process.stdin.setRawMode(true); }
The text was updated successfully, but these errors were encountered:
Dear stephan,
thanks for your report. i will fix it asap.
btw. what is your use case for the terminal command in combination with a bash script ? i've never intended to use the terminal mode in this way ;)
terminal
best regards, Andi
Sorry, something went wrong.
Terminal in non-TTY mode caused fatal error on connect #23
4e5de35
thank you! i used it with a "file-changed"-watcher to auto upload after saving.
AndiDittrich
No branches or pull requests
Hi,
I was trying to run this awesome tool from a bash inotifywait script.
and got:
I added this in line ~53
The text was updated successfully, but these errors were encountered: