-
-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
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
How to use the -tcp
mode?
#36
Comments
Actually I made it work with this command (the README.md lacks the
|
Here, the example for a loop, that disconnects the client after sending the command. read -r -d '' cmd <<-EOM
setup 1,8,3
init
rainbow
thread_start
do
rotate 1,1,2
render
delay 200
loop
thread_stop
EOM
echo -e "$cmd" | nc -w 0 127.0.0.1 9998 |
TCP version works better than using file or uname pipe. Thanks for referring me that. |
you're right the documentation was not up to date. I've updated that now also added 2 new effects: chaser and color_change. |
This is still wrong It should be like this unless you added a default port in the code. |
yes default port is 9999 |
First of all, the README.md shows
The command has the port missing, it should be like
Also
How could I use the
-tcp
mode with the command line.I am trying this:
It gives me
And the server closes, which is not good because someone can send some wrong command to just close the server.
Trying to send the same command from the README, like
The text was updated successfully, but these errors were encountered: