summaryrefslogtreecommitdiff
path: root/wasp
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-12-28 12:01:51 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-12-28 12:01:51 (GMT)
commit0edee8067e179f13564184ec9e253d8c45e6d8a7 (patch)
treef74465f719c4a02a9c22db593dd1f95f2c784385 /wasp
parentaef6466550097669740fe0fa9cc9c2c29d37802d (diff)
simulator: Start with a higher initial voltage
Starting with the battery full makes testing the battery meter easier... Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp')
-rw-r--r--wasp/boards/simulator/watch.py2
1 files changed, 1 insertions, 1 deletions
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