Fixed a few things, should be usable now

This commit is contained in:
Ace 2020-11-21 23:48:42 +01:00 committed by GitHub
parent 3e5e532998
commit 9517b303b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,6 +87,10 @@ class Inkycal:
# check if colours can be rendered # check if colours can be rendered
self.supports_colour = True if 'colour' in settings['model'] else False self.supports_colour = True if 'colour' in settings['model'] else False
# get calibration hours
self._calibration_hours = self.settings['calibration_hours']
# init calibration state # init calibration state
self._calibration_state = False self._calibration_state = False
@ -242,7 +246,7 @@ class Inkycal:
im_colour = Image.open(f"{self.image_folder}/canvas_colour.png") im_colour = Image.open(f"{self.image_folder}/canvas_colour.png")
# Flip the image by 180° if required # Flip the image by 180° if required
if self.settings['orientaton'] == 180: if self.settings['orientation'] == 180:
im_black = upside_down(im_black) im_black = upside_down(im_black)
im_colour = upside_down(im_colour) im_colour = upside_down(im_colour)
@ -255,7 +259,7 @@ class Inkycal:
im_black = self._merge_bands() im_black = self._merge_bands()
# Flip the image by 180° if required # Flip the image by 180° if required
if self.settings['orientaton'] == 180: if self.settings['orientation'] == 180:
im_black = upside_down(im_black) im_black = upside_down(im_black)
Display.render(im_black) Display.render(im_black)