Files
smart-serow/pi/ui/lib/screens/dashboard_screen.dart

154 lines
4.7 KiB
Dart
Raw Normal View History

2026-01-25 18:47:35 +09:00
import 'dart:async';
import 'dart:math';
import 'package:flutter/material.dart';
2026-01-25 19:23:03 +09:00
import '../services/pi_io.dart';
import '../theme/app_theme.dart';
import '../widgets/navigator_widget.dart';
2026-01-25 18:47:35 +09:00
import '../widgets/stat_box.dart';
// test service for triggers
import '../services/test_flipflop_service.dart';
2026-01-25 19:23:03 +09:00
/// Main dashboard - displays Pi vitals and placeholder stats
2026-01-25 18:47:35 +09:00
class DashboardScreen extends StatefulWidget {
const DashboardScreen({super.key});
@override
State<DashboardScreen> createState() => _DashboardScreenState();
}
class _DashboardScreenState extends State<DashboardScreen> {
final _random = Random();
final _navigatorKey = GlobalKey<NavigatorWidgetState>();
2026-01-25 18:47:35 +09:00
Timer? _timer;
2026-01-25 19:23:03 +09:00
double? _piTemp;
2026-01-25 18:47:35 +09:00
int _rpm = 0;
double _voltage = 12.6;
int _temp = 25;
@override
void initState() {
super.initState();
2026-01-25 19:23:03 +09:00
// Update values periodically
2026-01-25 18:47:35 +09:00
_timer = Timer.periodic(const Duration(milliseconds: 500), (_) {
setState(() {
2026-01-25 19:23:03 +09:00
// Pi temp - sync read from cache, async refresh happens in background
_piTemp = PiIO.instance.getTemperature();
// Placeholder random data - will be replaced with real sensors
2026-01-25 18:47:35 +09:00
_rpm = 1000 + _random.nextInt(8000);
_voltage = 11.5 + _random.nextDouble() * 2;
_temp = 20 + _random.nextInt(60);
});
});
// DEBUG: flip-flop theme + navigator every 2s
TestFlipFlopService.instance.start(navigatorKey: _navigatorKey);
2026-01-25 18:47:35 +09:00
}
@override
void dispose() {
_timer?.cancel();
TestFlipFlopService.instance.stop();
2026-01-25 18:47:35 +09:00
super.dispose();
}
@override
Widget build(BuildContext context) {
final theme = AppTheme.of(context);
2026-01-25 18:47:35 +09:00
return Scaffold(
backgroundColor: theme.background,
2026-01-25 18:47:35 +09:00
body: Padding(
padding: const EdgeInsets.all(32),
child: Row(
2026-01-25 18:47:35 +09:00
children: [
// Left side: All dashboard widgets (flex: 2)
Expanded(
flex: 2,
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
2026-01-26 01:03:23 +09:00
// Header (voltage
Row(
2026-01-26 01:03:23 +09:00
mainAxisAlignment: MainAxisAlignment.end,
children: [
Text(
2026-01-26 01:03:23 +09:00
'CHASSIS VOLTAGE ',
style: Theme.of(context).textTheme.titleMedium?.copyWith(
2026-01-26 01:03:23 +09:00
fontSize: 80,
color: theme.subdued,
2026-01-26 01:03:23 +09:00
letterSpacing: 1,
),
),
Text(
'${_voltage.toStringAsFixed(1)}V',
style: Theme.of(context).textTheme.titleMedium?.copyWith(
2026-01-26 01:03:23 +09:00
fontSize: 80,
color: _voltage < 11.9 ? theme.highlight : theme.foreground,
),
),
],
2026-01-25 18:47:35 +09:00
),
const SizedBox(height: 20),
// Main Pi temperature display
Expanded(
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
_piTemp != null ? _piTemp!.toStringAsFixed(1) : '',
style: TextStyle(
fontSize: 250,
fontWeight: FontWeight.w200,
color: theme.foreground,
height: 1,
),
),
Text(
'Pi Temp',
style: Theme.of(context).textTheme.headlineSmall?.copyWith(
2026-01-26 01:03:23 +09:00
fontSize: 80,
color: theme.subdued,
),
),
],
),
),
2026-01-25 18:47:35 +09:00
),
// Bottom stats row
Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
StatBox(label: 'RPM', value: _rpm.toString()),
StatBox(label: 'ENG', value: '$_temp°C'),
StatBox(label: 'GEAR', value: ''),
],
),
],
),
2026-01-25 18:47:35 +09:00
),
const SizedBox(width: 32),
2026-01-25 18:47:35 +09:00
// Right side: Image display (flex: 1)
2026-01-25 18:47:35 +09:00
Expanded(
flex: 1,
2026-01-25 18:47:35 +09:00
child: Center(
child: NavigatorWidget(key: _navigatorKey),
2026-01-25 18:47:35 +09:00
),
),
],
),
),
);
}
}