Skip to content

Commit

Permalink
Bug fix for #23
Browse files Browse the repository at this point in the history
  • Loading branch information
furbrain committed Apr 2, 2024
1 parent f7cac8d commit 4113c97
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions firmware/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ An example of a good calibration protocol would be to:
* finally, for readings 17-24, repeat readings 9-16 but with a new target. Ideally around 90° from the previous
target.

When you press **B** after taking your 24 readings the screen will show the calibration process then it will display your
calibration accuracy. For accurate readings this number should be under 0.5. You can then choose to either save this
calibration to use for subsequent readings (press **A**) or you can discard the calibration (press **B**).
When you press **B** after taking your 24 readings the screen will show the calibration process then it will display
your calibration accuracy. For accurate readings this number should be under 0.5. You can then choose to either save
this calibration to use for subsequent readings (press **A**) or you can discard the calibration (press **B**).

Laser
*****
Expand Down
2 changes: 1 addition & 1 deletion firmware/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import binascii

__version__ = "1.3.1"
__version__ = "1.3.2"

from . import layouts

Expand Down
3 changes: 2 additions & 1 deletion firmware/versions/display128x64.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ def sleep(self, wake=False):
self.oled.sleep()

def deinit(self):
pass
if self._current_group:
self._icon_group.remove(self._current_group)


def get_laser_bitmap_group():
Expand Down

0 comments on commit 4113c97

Please sign in to comment.