Files
MEIZU-Battery-Healthy/lib/constants/charge_maps.dart
T
2026-07-03 22:01:54 +08:00

28 lines
519 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/// 充电功率映射表(有线 / 无线)
class ChargeMaps {
/// 无线充电档位 → 功率(W
static const Map<int, double> wirelessPower = {
1: 7.5,
2: 15,
3: 27,
4: 40,
5: 50,
6: 66,
};
/// 有线充电档位 → 功率(W
/// 新增 27W 档位(对应 9V/3A PPS
static const Map<int, double> wiredPower = {
0: 0,
1: 7.5,
2: 15,
3: 18,
4: 24,
5: 27, // 🟢 新增 27W9V/3A PPS
6: 30,
7: 45,
8: 65,
9: 80,
};
}