From b116fd7bec0588ba4e4454da50f16f1c2c667701 Mon Sep 17 00:00:00 2001 From: Sanniti Date: Mon, 24 Sep 2018 14:02:52 -0400 Subject: [PATCH] fix(api): change tempdeck temperature resolution,fix temp in docs Closes #2358 --- api/docs/source/modules.rst | 2 +- api/opentrons/drivers/temp_deck/driver.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/docs/source/modules.rst b/api/docs/source/modules.rst index a366abc79069..09cbdcec6c42 100644 --- a/api/docs/source/modules.rst +++ b/api/docs/source/modules.rst @@ -73,7 +73,7 @@ Temperature Module ********** Our temperature module acts as both a cooling and heating device. The range -of temperatures this module can reach goes from -9 to 99 degrees celsius with a resolution of 3 decimal places. +of temperatures this module can reach goes from 4 to 95 degrees celsius with a resolution of 1 degree celcius. The temperature module has the following methods that can be accessed during a protocol. diff --git a/api/opentrons/drivers/temp_deck/driver.py b/api/opentrons/drivers/temp_deck/driver.py index 7d2aaa5f9378..ede6937c5c72 100644 --- a/api/opentrons/drivers/temp_deck/driver.py +++ b/api/opentrons/drivers/temp_deck/driver.py @@ -42,7 +42,7 @@ # Number of digits after the decimal point for temperatures being sent # to/from Temp-Deck -GCODE_ROUNDING_PRECISION = 3 +GCODE_ROUNDING_PRECISION = 0 class TempDeckError(Exception):