Index: shared/scripts/configuration/strings.py =================================================================== diff -u -reefd61a5d338590b9ea89ef87d3a2c181e045cf5 -rf7bfeef1136eab7daee4c21ec1e6ee97f3412503 --- shared/scripts/configuration/strings.py (.../strings.py) (revision eefd61a5d338590b9ea89ef87d3a2c181e045cf5) +++ shared/scripts/configuration/strings.py (.../strings.py) (revision f7bfeef1136eab7daee4c21ec1e6ee97f3412503) @@ -1,22 +1,34 @@ + ########################################################################### # # Copyright (c) 2019-2021 Diality Inc. - All Rights Reserved. # # THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN # WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # -# @file strings.py +# @file utils.py # -# @author (last) LTTS +# @author (last) Joseph varghese # @date (last) 18-Jan-2022 # ############################################################################ + +import os + +AUT_NAME = "denaliSquish" + +COMMON_PATH = os.environ['HOME']+"/Projects" + + +COLOR_CODES = {"Aqua": "#81ffff", "Blue": "#017dea", "Blue 2": "#1090d5", "Green": "#29fd2d", "Grey": "#d3d3d3", + "Lavender": "#db98f5", "Light Blue": "#acd7f1", "Light Teal": "#29f1da","Lime": "#b7fc36", + "Magenta":"#fd28fd", "Orange": "#f2721c", "Peach":"#f1979a", "Red": "#c53b33", "Rose":"#fc178d", + "Slate blue":"#7f7ffa", "Violet": "#6435c9", "White": "#ffffff", "Yellow": "#fcfc4d"} + +#standby mode +GOODMORNING_START_TIME_SEC = 0 +GOODEVENING_START_TIME_SEC = 43200 + BLOOD_PRIMING_TEXT = "Blood Priming" SALINE_UNIT = "mL" -BLOOD_PRIMING_UNIT = "mL" -BLOOD_PRIMING_VALUE_0 = "0" -BLOOD_PRIMING_DEFAULT_VALUE = BLOOD_PRIMING_VALUE_0 + " " + BLOOD_PRIMING_UNIT - -#ui_logs -ACK_REQ_STATUS = 'Ack Req' -ACK_BAK_STATUS = 'Ack Bak' \ No newline at end of file +BLOOD_PRIMING_DEFAULT_VALUE = "0 mL"