Skip to content
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

Add hardware link #673

Merged
merged 1 commit into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions hw_diag/templates/wingbits.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ <h3 class="text-center mb-4">Wingbits Configuration</h3>
&nbsp;&nbsp;
<a href="/wingbits/graphs1090" class="btn btn-secondary" style="width:20%;" />Statistics</a>
&nbsp;&nbsp;
<a href="https://wingbits.com/dashboard/antennas" target="_blank" class="btn btn-secondary" style="width:20%;" />Wingbits Dashboard</a>
<a href="https://wingbits.com/dashboard/antennas" target="_blank" rel="noopener" class="btn btn-secondary" style="width:20%;" />Wingbits Dashboard</a>
</center>
<br />
</div>
Expand All @@ -57,11 +57,15 @@ <h3 class="text-center mb-4">Wingbits Configuration</h3>
<div class="card table-responsive">
<table class="table dt-responsive nowrap m-md-2 w-auto">
<tr>
<td class="border-0"><span class="uil uil-wifi-router icon"></span> SDR Operational</td>
{% if sdr_present %}
<td class="border-0"><span class="uil uil-wifi-router icon"></span> SDR Operational</td>
<td class="border-0 text-right"><span class="uil uil-check-circle text-success"></span></td>
{% else %}
<td class="border-0 text-right"><span class="uil uil-times-circle text-danger"></span></td>
<td><span class="uil uil-wifi-router icon"></span> SDR Operational</td>
<td class="text-right"><span class="uil uil-times-circle text-danger"></span></td>
</tr>
<tr>
<td class="border-0"><span class="uil uil-info-circle icon text-warning"></span> In order to feed data to the Wingbits network you will need a RTL-SDR based ADS-B radio dongle and 1090MHz antenna. You may also need a USB hub or splitter depending on your miner type. You can read more about the necessary hardware on <a href="https://docs.wingbits.com/get-started/hardware-suggestions" target="_blank" rel="noopener">the Wingbits docs</a>.</td>
{% endif %}
</tr>
</table>
Expand Down
28 changes: 12 additions & 16 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ Flask-APScheduler = "~1.12.4"
Flask-Caching = "~2.0.2"
grpcio = "~1.56.0"
gunicorn = "~22.0.0"
hm-pyhelper = "0.14.32"
hm-pyhelper = "0.14.34"
icmplib = "~3.0.3"
ipaddress = "~1.0.23"
password-strength = "~0.0.3.post2"
persist-queue = "~0.8.1"
psutil = "~5.9.5"
pydantic = "~1.10.13"
python-gnupg = "~0.5.0"
requests = "~2.31.0"
requests = "~2.32.2"
retry = "~0.9.2"
sentry-sdk = { version = "~1.27.1", extras = ["Flask"] }
SQLAlchemy = "2.0.18"
Expand Down
Loading