Updated for -U. Added urwid as an install dependency.
parent
083342d187
commit
b19e80cba7
|
|
@ -10,6 +10,7 @@ usage: loramon [-h] [-C] [-W directory] [--freq Hz] [--bw Hz] [--txp dBm]
|
|||
[--duration seconds] [-Q]
|
||||
[-R]
|
||||
[-P]
|
||||
[-U]
|
||||
[port]
|
||||
|
||||
LoRa packet sniffer for RNode hardware.
|
||||
|
|
@ -30,6 +31,7 @@ optional arguments:
|
|||
-Q Quite mode. Don't log any messages after start up
|
||||
-R Print out raw bytes of the frame
|
||||
-P Set promiscuous mode
|
||||
-U Use a text based UI
|
||||
```
|
||||
|
||||
## Installation
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
|||
|
||||
setuptools.setup(
|
||||
name="loramon",
|
||||
version="0.9.7",
|
||||
version="0.9.8",
|
||||
author="Mark Qvist",
|
||||
author_email="mark@unsigned.io",
|
||||
description="LoRa packet sniffer for RNode hardware",
|
||||
|
|
@ -21,6 +21,6 @@ setuptools.setup(
|
|||
entry_points= {
|
||||
'console_scripts': ['loramon=loramon:main']
|
||||
},
|
||||
install_requires=['pyserial'],
|
||||
install_requires=['pyserial', 'urwid'],
|
||||
python_requires='>=3.6',
|
||||
)
|
||||
Loading…
Reference in New Issue