Updated for -U. Added urwid as an install dependency.

pull/6/head
Alligitor 2025-04-20 14:31:13 +00:00
parent 083342d187
commit b19e80cba7
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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',
)