Add live battery stats

This commit is contained in:
Stephen Horvath
2025-08-15 19:34:11 +10:00
parent fa5442d5fd
commit e7b4e4d194
15 changed files with 643 additions and 675 deletions

View File

@@ -31,6 +31,7 @@ from .window import YafiWindow
from .thermals import ThermalsPage
from .leds import LedsPage
from .battery import BatteryPage
from .battery_limiter import BatteryLimiterPage
from .hardware import HardwarePage
from cros_ec_python import get_cros_ec
@@ -87,6 +88,7 @@ class YafiApplication(Adw.Application):
("Thermals", ThermalsPage()),
("LEDs", LedsPage()),
("Battery", BatteryPage()),
("Battery Limiter", BatteryLimiterPage()),
("Hardware", HardwarePage()),
("About", None),
)