From 0edee8067e179f13564184ec9e253d8c45e6d8a7 Mon Sep 17 00:00:00 2001 From: Daniel Thompson Date: Mon, 28 Dec 2020 12:01:51 +0000 Subject: [PATCH] simulator: Start with a higher initial voltage Starting with the battery full makes testing the battery meter easier... Signed-off-by: Daniel Thompson --- wasp/boards/simulator/watch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasp/boards/simulator/watch.py b/wasp/boards/simulator/watch.py index 5aead3f..000184a 100644 --- a/wasp/boards/simulator/watch.py +++ b/wasp/boards/simulator/watch.py @@ -64,7 +64,7 @@ class Backlight(object): class Battery(object): def __init__(self): - self.voltage = 3.9 + self.voltage = 4.1 self.step = -0.01 self.powered = False