From 326c805793b6b118d3802aa645dd9b65362def7f Mon Sep 17 00:00:00 2001 From: handynet Date: Sat, 20 May 2023 20:37:47 +0200 Subject: [PATCH] Parameteranpassungen an neuen Motor --- src/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 2421d3a..00c9765 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -26,13 +26,13 @@ Locomotive locomotiveTaurus(5, 22, 116, 180, regler1); Locomotive locomotive2043(6, 25, 129, 160, regler1); */ Locomotive locomotiveTaurus(2.2, 22, 53, 43, regler1); -Locomotive locomotive2043(2.2, 25, 75, 63, regler1); +Locomotive locomotive2043(1.8, 25, 77, 55, regler1); Fahrt fahrt[] = { - Fahrt(locomotiveTaurus, 135, motorForward, gleis1, 1.9, bahnhof2, 9.0), - Fahrt(locomotiveTaurus, 125, motorBackward, gleis1, 1.8, bahnhof1, 8.2) , - Fahrt(locomotive2043, 150, motorForward, gleis2, 2.2, bahnhof2, 9.0), - Fahrt(locomotive2043, 165, motorBackward, gleis2, 2.0, bahnhof1, 8.6) + Fahrt(locomotiveTaurus, 135, motorForward, gleis1, 1.8, bahnhof2, 9.0), + Fahrt(locomotiveTaurus, 120, motorBackward, gleis1, 1.8, bahnhof1, 8.2) , + Fahrt(locomotive2043, 135, motorForward, gleis2, 1.2, bahnhof2, 9.0), + Fahrt(locomotive2043, 150, motorBackward, gleis2, 1.2, bahnhof1, 8.7) }; int _currentFahrt;