Skip to content

Commit

Permalink
Fix typo in SovolSO1 object
Browse files Browse the repository at this point in the history
  • Loading branch information
cwoodall committed Aug 19, 2021
1 parent 63b2018 commit c24ce79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,7 +1,7 @@
[tool]
[tool.poetry]
name = "sovol_xy"
version = "0.1.1"
version = "0.1.2"
homepage = "https://github.com/cwoodall/sovol_xy"
description = "Library for controlling the Sovol-SO1 xy plotter using the Marlin Firmware."
authors = ["Christopher Woodall <chris@cwoodall.com>"]
Expand Down
2 changes: 1 addition & 1 deletion sovol_xy/sovol_xy.py
Expand Up @@ -54,7 +54,7 @@ def __init__(
# It would be good to figure out how to make this a little more robust
time.sleep(startup_timeout)
startup_text = self.serial.read_all()
logger.debug(startup.decode("ascii"))
logger.debug(startup_text.decode("ascii"))
self.write("G90") # Set to absolute mode
self.write("G21") # Set to mm

Expand Down

0 comments on commit c24ce79

Please sign in to comment.