From 00974bb41017d0a86a771045cd311836b37ba0a2 Mon Sep 17 00:00:00 2001 From: Dean Sellers Date: Mon, 26 Jul 2010 22:18:45 +1000 Subject: [PATCH] Added the three options for the time display to the python script for the config.h file. --- tools/config.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tools/config.py b/tools/config.py index 1108d38..9d5a7f5 100755 --- a/tools/config.py +++ b/tools/config.py @@ -24,11 +24,20 @@ DATA["CONFIG_FREQUENCY"] = { "type": "choices", "values": [902, 869, 433]} +DATA["OPTION_TIME_DISPLAY"] = { + "name": "Time display options", + "depends": [], + "default": 0, + "type": "choices", + "values": [0, 1, 2], + "help": "Select how time should be displayed, in order of code size options are- 0 = 24hr, 1=12hr (AM/PM) or 2=selectable" +} + DATA["CONFIG_METRIC_ONLY"] = { "name": "Metric only code", "depends": [], "default": False, - "help": "Only add code for Metric units (24 hours/meter/celsius) to reduce image size", + "help": "Only add code for Metric units (meter/celsius) to reduce image size", } DATA["THIS_DEVICE_ADDRESS"] = {