mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-14 07:27:47 +00:00
add features
* feat: autojoin toggle * feat: auto add devices * feat: proxy feature * feat: support puppeteer in docker * feat: toggle to activate cloud proxy * feat: relay device information * feat: relay logs to cloud * feat: migrate on start * feat: calculate battery state, wifi signal * feat: eye candy for configure view * feat: update via api
This commit is contained in:
parent
d4eb832186
commit
715e6a2562
53 changed files with 1459 additions and 460 deletions
12
resources/views/components/responsive-icons/wifi.blade.php
Normal file
12
resources/views/components/responsive-icons/wifi.blade.php
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
@props(['strength', 'rssi'])
|
||||
<flux:tooltip content="Wi-Fi RSSI Level: {{ $rssi }} db" position="bottom">
|
||||
@if ($strength === 3)
|
||||
<flux:icon.wifi class="dark:text-zinc-200"/>
|
||||
@elseif ($strength === 2)
|
||||
<flux:icon.wifi-high class="dark:text-zinc-200"/>
|
||||
@elseif ($strength === 1)
|
||||
<flux:icon.wifi-low class="dark:text-zinc-200"/>
|
||||
@else
|
||||
<flux:icon.wifi-zero class="dark:text-zinc-200"/>
|
||||
@endif
|
||||
</flux:tooltip>
|
||||
Loading…
Add table
Add a link
Reference in a new issue