-
Notifications
You must be signed in to change notification settings - Fork 48
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
ttyplot does not read data #52
Comments
Oh actually it just takes a long time to update, maybe it need to read a minimum number of values before acting on them? |
@themightyoarfish Funny timing, I was playing with graphing WiFi signal RSSI yesterday, and realized that For now, as a workaround I just inverted the numbers so my data would plot:
|
yes ttyplot only works with positive values, I think support for negative values is a very good feature request as for slow speeds read about stdio buffering in unix, bottom of the readme, you will likely need to add some flush |
Yes I employed some flags and expect's unbuffer program, but that alone didn't help.
…On 15 November 2020 06:55:45 CET, Antoni Sawicki ***@***.***> wrote:
yes ttyplot only works with positive values, I think support for
negative values is a very good feature request
as for slow speeds read about stdio buffering in unix, bottom of the
readme, you will likely need to add some flush
--
You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub:
#52 (comment)
--
Sent from my Android device with K-9 Mail. Please excuse my brevity.
|
can you post an example where unbuffering didn't help? |
@themightyoarfish besides support for negative values (tracked by #53): is any of the rest still an issue with release |
So while the examples work, the command output I want to plot doesn't. I have a line such as
which runs and continuously outputs to stdout
However, piping this to
ttyplot
only showswaiting for data from stdin
.The text was updated successfully, but these errors were encountered: