initial help page

This commit is contained in:
2025-10-27 13:08:52 -05:00
parent 5b7860355f
commit db60cf13de
3 changed files with 50 additions and 13 deletions

13
README
View File

@@ -1,13 +0,0 @@
▗▖ █
▐▌ ▀ ▐▌ ▐▌
▗▟██▖▐▌▟▛ ██ ▐███ ▐███ ▟█▙ █▟█▌
▐▙▄▖▘▐▙█ █ ▐▌ ▐▌ ▐▙▄▟▌ █▘
▀▀█▖▐▛█▖ █ ▐▌ ▐▌ ▐▛▀▀▘ █
▐▄▄▟▌▐▌▝▙ ▗▄█▄▖ ▐▙▄ ▐▙▄ ▝█▄▄▌ █
▀▀▀ ▝▘ ▀▘▝▀▀▀▘ ▀▀ ▀▀ ▝▀▀ ▀
Nothing here yet, but something here soon.
Tune in tomorrow, same bat-time, same bat-channel.

6
README.md Normal file
View File

@@ -0,0 +1,6 @@
# skitter
"skitter" *intransitive verb* "To pass or glide lightly or with quick touches at intervals; to skip; to skim."
*from the GNU version of the Collaborative International Dictionary of English.*

44
src/help.py Normal file
View File

@@ -0,0 +1,44 @@
#!/usr/bin/env python3
VERSION = "0.0.0"
BANNER = r'''
▗▖ █
▐▌ ▀ ▐▌ ▐▌
▗▟██▖▐▌▟▛ ██ ▐███ ▐███ ▟█▙ █▟█▌
▐▙▄▖▘▐▙█ █ ▐▌ ▐▌ ▐▙▄▟▌ █▘
▀▀█▖▐▛█▖ █ ▐▌ ▐▌ ▐▛▀▀▘ █
▐▄▄▟▌▐▌▝▙ ▗▄█▄▖ ▐▙▄ ▐▙▄ ▝█▄▄▌ █
▀▀▀ ▝▘ ▀▘▝▀▀▀▘ ▀▀ ▀▀ ▝▀▀ ▀
'''
USAGE = r'''
./skitter.py [--band|-b FREQ] [--squelch|-s LEVEL] [--rate|-r SPEED] [--output|-o DIR]
--band
-b
Desired frequencies (list) to scan.
Skitter will sweep through these frequencies at a set rate.
--squelch
-s
Level at which to start listening, in decibels (dB).
Anything below this level will be ignored.
--rate
-s
Rate at which to switch channels. Default: UNSET
Change this is your device is not able to change channels
quickly enough.
--output
-o
Output directory. Default: ./
Skitter will save its recordings in a single directory.
You might want to create a new directory for recordings.
'''
def help():
print(BANNER)
print(f"skitter v{VERSION}")
print(USAGE)
help()