From 8d6233c888b49ae7b5ca3a5d85f7096ae924c823 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Wed, 4 Sep 2024 00:10:03 -0600 Subject: [PATCH] Adjust train speeds --- main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index e256fe9..6851735 100755 --- a/main.py +++ b/main.py @@ -1483,14 +1483,14 @@ I will be terse in my responses. res = '' if button == 'r': - res = mqtt_publish('train/control', -150) - logging.info('Setting train speed to: -150') + res = mqtt_publish('train/control', -140) + logging.info('Setting train speed to: -140') elif button == 't': res = mqtt_publish('train/control', 0) logging.info('Setting train speed to: 0') elif button == 'y': - res = mqtt_publish('train/control', 150) - logging.info('Setting train speed to: 150') + res = mqtt_publish('train/control', 160) + logging.info('Setting train speed to: 160') elif button == 'b' or c == KEY_ESCAPE: current_screen = 'home'