diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-12-28 12:01:51 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-12-28 12:01:51 (GMT) |
| commit | 0edee8067e179f13564184ec9e253d8c45e6d8a7 (patch) | |
| tree | f74465f719c4a02a9c22db593dd1f95f2c784385 /wasp | |
| parent | aef6466550097669740fe0fa9cc9c2c29d37802d (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.py | 2 |
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 |
