Skip to content

Commit

Permalink
fix: explain connection quality
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Jun 29, 2023
1 parent 860abed commit 65b2e88
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/components/SignalQuality.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,19 @@ export const SignalQualityDescription = ({
}: {
eest: EnergyEstimate
}) => (
<p>
<small class="text-muted">{EnergyEstimateDescription[eest]}</small>
</p>
<>
<p class="text-muted mb-0">{EnergyEstimateDescription[eest]}</p>
<p>
<small class="text-muted">
Signal quality is reported by the modem using the{' '}
<a
href="https://infocenter.nordicsemi.com/topic/nwp_043/WP/nwp_043/intro.html"
target="_blank"
>
Nordic-proprietary <code>%CONEVAL</code> AT command
</a>
.
</small>
</p>
</>
)

0 comments on commit 65b2e88

Please sign in to comment.