Skip to content

Commit

Permalink
0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
yhur committed Dec 6, 2023
1 parent 9a2fca8 commit ff73bf2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = arduplot
version = 0.2.8
version = 0.2.9
author = Yoonseok Hur
author_email = yoonseok@gmail.com
description = This tool listens the serial port and draws the data to matplotlib.
Expand Down
3 changes: 2 additions & 1 deletion src/arduplot/plotserialdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ def value_by_key(j, key, value):
return value

# BEGIN MAIN FUNCTION
@click.command(context_settings=dict(help_option_names=["-h", "--help"]))
@click.command(context_settings=dict(help_option_names=["-h", "--help"]),
help="arduplot(ver:0.2.9) plots serial data from the serial port, TCP socket or standard input")
@click.option("--width", "-w", type=int, help="Plotter Width")
@click.option("--ymin", "-i", type=int, help="Plotter Y axis Min")
@click.option("--ymax", "-x", type=int, help="Plotter Y axis Max")
Expand Down

0 comments on commit ff73bf2

Please sign in to comment.