3

我想知道在充电时是否可以测量移动设备(IOS或Android)中有多少能量流动?以瓦特/小时或毫安/小时为例。

基本上我想测量我从充电中消耗了多少电量。是否有用于此的本机或低级 API?

谢谢你的帮助

4

2 回答 2

1

安卓

电池电量检查 Android

电池电量检查 Android 1

查看演示:电池演示 Android

iOS

是的,在 iOS 设备中,当您为设备充电时,您可以获得有关电池状态的信息。通知您batteryLevelChangedbatteryStateChanged

查看演示:电池演示 iOS

注意:在 iOS 设备中运行此演示。不是模拟器。

// Register for battery level and state change notifications.
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(batteryLevelChanged:)
                                                 name:UIDeviceBatteryLevelDidChangeNotification object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(batteryStateChanged:)
                                                 name:UIDeviceBatteryStateDidChangeNotification object:nil];

代码updateBatteryLevel

- (void)updateBatteryLevel
{
    float batteryLevel = [UIDevice currentDevice].batteryLevel;
    if (batteryLevel < 0.0) {
        // -1.0 means battery state is UIDeviceBatteryStateUnknown
        self.levelLabel.text = NSLocalizedString(@"Unknown", @"");
    }
    else {
        static NSNumberFormatter *numberFormatter = nil;
        if (numberFormatter == nil) {
            numberFormatter = [[NSNumberFormatter alloc] init];
            [numberFormatter setNumberStyle:NSNumberFormatterPercentStyle];
            [numberFormatter setMaximumFractionDigits:1];
        }

        NSNumber *levelObj = [NSNumber numberWithFloat:batteryLevel];
        self.levelLabel.text = [numberFormatter stringFromNumber:levelObj];
    }
}

- (void)updateBatteryState
{
    NSArray *batteryStateCells = @[self.unknownCell, self.unpluggedCell, self.chargingCell, self.fullCell];

    UIDeviceBatteryState currentState = [UIDevice currentDevice].batteryState;

    for (int i = 0; i < [batteryStateCells count]; i++) {
        UITableViewCell *cell = (UITableViewCell *) batteryStateCells[i];

        if (i + UIDeviceBatteryStateUnknown == currentState) {
            cell.accessoryType = UITableViewCellAccessoryCheckmark;
        }
        else {
            cell.accessoryType = UITableViewCellAccessoryNone;
        }
    }
}
于 2015-09-15T09:30:05.127 回答
0

他最简单的解决方案之一(也是最准确的)是使用电流表来记录通过墙上插头的电流。任何功率测量 API 都取决于板上的仪器。有时它是直接测量(准确),有时它是计算/推断的(可能准确,可能非常不准确)。

这些数据记录器的范围从工业(更昂贵,工作量更少)到 DIY(便宜,工作量更大)。您想要哪个取决于您有多少时间以及您打算使用它的频率。

于 2015-09-15T13:46:38.200 回答