forked from TheDIYGuy999/Micro_RC_Receiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvehicleConfig.h
2855 lines (2221 loc) · 69.6 KB
/
vehicleConfig.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#ifndef vehicleConfig_h
#define vehicleConfig_h
#include "Arduino.h"
#define CONFIG_ACTROS // <- Select the correct vehicle configuration here before uploading!
#define SBUS_SERIAL // serial connection uses SBUS protocol instead of normal protocol, if not commented out
//
// =======================================================================================================
// VEHICLE SPECIFIC CONFIGURATIONS
// =======================================================================================================
//
/*
// Battery type
boolean liPo; // If "true", the vehicle can't be reactivated once the cutoff voltage is reached
float cutoffVoltage; // Min. battery discharge voltage, or min. VCC, if board rev. < 1.2 (3.6V for LiPo, 1.1 per NiMh cell)
// Board type (see: https://www.youtube.com/watch?v=-vbmHhCvspg&t=18s)
float boardVersion; // Board revision (MUST MATCH WITH YOUR BOARD REVISION!!)
boolean HP; // HP = "High Power" version (both TB6612FNG channels wired in parallel) -> No motor 1, motor 2 is the driving motor
// Vehicle address
int vehicleNumber; // This number must be unique for each vehicle!
// Vehicle type
byte vehicleType;
0 = car (see: https://www.youtube.com/watch?v=A0SoK7KJxyc). Use this mode, if you want to use indicators. No MPU-6050 MRSC support.
1 = semi caterpillar, 2 = caterpillar (see: https://www.youtube.com/watch?v=Tjikm6hJ8hQ)
3 = forklift (see: https://www.youtube.com/watch?v=3iXL9WvE4ro)
4 = balancing (see: https://www.youtube.com/watch?v=zse9-l2Yo3Y)
5 = car with MRSC (Micro RC Stability Control). Similar with ABS, ESP, Traxxas Stability Management TSM. Potentiometer on A6 input of
your transmitter required! (see: https://www.youtube.com/watch?v=IPve7QpdLBc&t=5s) Indicators can't be used in this mode (locked)!
6 = simple dual motor plane with differential thrust steering. No rudders.
// MRSC
#define MRSC_FIXED // Only use this definition, if you want to use an MRSC vehicle without a gain adjustment pot on your transmitter
byte mrscGain = 25; // 25%
// Lights (see: https://www.youtube.com/watch?v=qbhPqHdBz3o , https://www.youtube.com/watch?v=wBTfsIk4vkU&t=84s)
boolean tailLights; // Caution: the taillights are wired to the servo pin 2! -> Servo 2 not usable, if "true"
boolean headLights; // Caution: the headlights are wired to the RXI pin! -> Serial not usable, if "true"
boolean indicators; // Caution: the indicators are wired to the SDA / SCL pins! -> not usable, if vehicleType is 4 or 5 (locked)
boolean beacons; // Caution: the beacons are wired to the servo pin 4! -> Servo 4 not usable, if "true"
// Servo limits (45 - 135 means - 45° to 45° from the servo middle position)
byte lim1L, lim1R; // Servo 1
byte lim2L, lim2C, lim2R; // Lim2C for THREE_SPEED_GEARBOX option (center position)
byte lim3L, lim3R;
byte lim3Llow = 75, lim3Rlow = 105; // limited top speed angles for external ESC
byte lim4L, lim4R; // Servo 4, also used for tractor trailer unlocking servo (TRACTOR_TRAILER_UNLOCK option)
#define TWO_SPEED_GEARBOX // Vehicle has a mechanical 2 speed shifting gearbox, switched by servo CH2. Not usable in combination with the "tailLights" option
#define THREE_SPEED_GEARBOX // Vehicle has a mechanical 3 speed shifting gearbox, switched by servo CH2. Not usable in combination with the "tailLights" option
// Motor configuration
int maxPWMfull; // (100% PWM is 255)
int maxPWMlimited;
int minPWM; // backlash compensation for self balancing applications
byte maxAccelerationFull;// (ms per 1 step input signal change)
byte maxAccelerationLimited;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = -0.2; // -0.2° (+ = leans more backwards!) Vary a bit, if you have slow oscillation with big amplitude
// Steering configuration (100% torque is 255)
byte steeringTorque;
// Motor 2 PWM frequency: 32 = 984Hz (default), 8 = 3936Hz, 1 = 31488Hz (only with board version. 1.3 or newer)
byte pwmPrescaler2; // Motor 2 = steering motor (or driving motor in "HP" High Power board version)
// Additional Channels
boolean TXO_momentary1; // The TXO output is linked to the momentary1 channel! -> Serial not usable, if "true"
boolean TXO_toggle1; // The TXO output is linked to the toggle1 channel! -> Serial not usable, if "true"
boolean potentiometer1; // The potentiometer knob on the transmitter is linked to the servo output CH4
// Engine sound (see: https://www.youtube.com/watch?v=pPlrx9yVI6E)
boolean engineSound; // true = a "TheDIYGuy999" engine simulator is wired to servo channel 3 (allows to switch off RC signal, deprecated)
// Tone sound (see: https://www.youtube.com/watch?v=fe5_1mMtcLQ&t=3s)
boolean toneOut; // true = a BC337 amplifier for tone() is connected instead of servo 3
*/
// Generic configuration, board v1.0-------------------------------------------------------------------------
#ifdef CONFIG_GENERIC_V10
// Battery type
boolean liPo = false;
float cutoffVoltage = 3.1; // trigger, as soon as VCC drops! (no battery sensing)
// Board type
float boardVersion = 1.0;
boolean HP = false;
// Vehicle address
int vehicleNumber = 1;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = true;
boolean indicators = true;
boolean beacons = false;
// Servo limits
byte lim1L = 45, lim1R = 135;
byte lim2L = 45, lim2R = 135;
byte lim3L = 45, lim3R = 135;
byte lim3Llow = 75, lim3Rlow = 105; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 3;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 32;
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// Generic configuration, board v1.3-------------------------------------------------------------------
#ifdef CONFIG_GENERIC_V13
// Battery type
boolean liPo = true;
float cutoffVoltage = 3.6;
// Board type
float boardVersion = 1.3;
boolean HP = false;
// Vehicle address
int vehicleNumber = 1;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = true;
boolean indicators = true;
boolean beacons = false;
// Servo limits
byte lim1L = 45, lim1R = 135;
byte lim2L = 45, lim2R = 135;
byte lim3L = 45, lim3R = 135;
byte lim3Llow = 75, lim3Rlow = 105; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 8; // 3936Hz
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// Generic configuration, board v1.3 HP----------------------------------------------------------------------------
#ifdef CONFIG_GENERIC_V13_HP
// Battery type
boolean liPo = true;
float cutoffVoltage = 3.6;
// Board type
float boardVersion = 1.3;
boolean HP = true; // High Power Board!
// Vehicle address
int vehicleNumber = 1;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean escBrakeLights = true;
boolean tailLights = false;
boolean headLights = true;
boolean indicators = false;
boolean beacons = false;
// Servo limits
byte lim1L = 45, lim1R = 135;
byte lim2L = 45, lim2R = 135;
byte lim3L = 45, lim3R = 135;
byte lim3Llow = 75, lim3Rlow = 105; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 8; // 3936Hz
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// Tamiya NEO Fighter Buggy -------------------------------------------------------------------
#ifdef CONFIG_TAMIYA_FIGHTER
// Battery type
boolean liPo = false; // ESC provides protection
float cutoffVoltage = 4.9; // Regulated 6.0V supply from the ESC
// Board type
float boardVersion = 1.4;
boolean HP = false;
// Vehicle address
int vehicleNumber = 1;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = false;
boolean indicators = false;
boolean beacons = false;
// Servo limits
byte lim1L = 41, lim1R = 131; // R 41, L131
byte lim2L = 45, lim2R = 135;
byte lim3L = 150, lim3R = 35; // ESC output signal reversed
byte lim3Llow = 125, lim3Rlow = 60; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 8; // 3936Hz
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = true;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// WlToys K 1:28 Rally Fiesta----------------------------------------------------------------------------
#ifdef CONFIG_FIESTA
// Battery type
boolean liPo = true;
float cutoffVoltage = 4.9; // Regulated 5.0V supply from the ESC
// Board type
float boardVersion = 1.3;
boolean HP = true; // High Power Board!
// Vehicle address
int vehicleNumber = 1;
// Vehicle type
byte vehicleType = 5; // MRSC vehicle!
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = true;
boolean indicators = false;
boolean beacons = false;
// Servo limits
byte lim1L = 55, lim1R = 150; // R55, L150
byte lim2L = 45, lim2R = 135;
byte lim3L = 45, lim3R = 140;
byte lim3Llow = 75, lim3Rlow = 110; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 8; // 3936Hz
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// Disney Lightning McQueen 95----------------------------------------------------------------------
#ifdef CONFIG_MC_QUEEN
// Battery type
boolean liPo = false;
float cutoffVoltage = 3.1; // trigger, as soon as VCC drops! (no battery sensing)
// Board type
float boardVersion = 1.0;
boolean HP = false;
// Vehicle address
int vehicleNumber = 1;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = false;
boolean indicators = false;
boolean beacons = false;
// Servo limits
byte lim1L = 61, lim1R = 104;
byte lim2L = 45, lim2R = 135;
byte lim3L = 45, lim3R = 135;
byte lim3Llow = 75, lim3Rlow = 105; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 3;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 32;
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// Tamiya VW GOLF Mk. 1 Racing Group 2 -------------------------------------------------------------------
#ifdef CONFIG_TAMIYA_GOLF
// Battery type
boolean liPo = false; // ESC provides protection
float cutoffVoltage = 4.9; // Regulated 6.0V supply from the ESC
// Board type
float boardVersion = 1.4;
boolean HP = false;
// Vehicle address
int vehicleNumber = 2;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = true;
boolean indicators = false;
boolean beacons = false;
// Servo limits
byte lim1L = 110, lim1R = 60; // R 115, L62
byte lim2L = 45, lim2R = 135;
byte lim3L = 35, lim3R = 150; // ESC output signal not reversed
byte lim3Llow = 60, lim3Rlow = 125; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 8; // 3936Hz
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = true;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// WLtoys 18429 Desert Buggy---------------------------------------------------------------------------
#ifdef CONFIG_18429
// Battery type
boolean liPo = true;
float cutoffVoltage = 3.45; // Regulated 5.0V supply from the ESC
// Board type
float boardVersion = 1.4;
boolean HP = false;
// Vehicle address
int vehicleNumber = 2;
// Vehicle type
byte vehicleType = 5;
// Lights
boolean escBrakeLights = true;
boolean tailLights = true;
boolean headLights = true;
boolean indicators = false;
boolean beacons = false;
// Servo limits
byte lim1L = 130, lim1R = 75; // R125, L70 Steering reversed
byte lim2L = 45, lim2R = 135;
byte lim3L = 150, lim3R = 35; // ESC output signal reversed
byte lim3Llow = 115, lim3Rlow = 70; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 8; // 3936Hz
// Additional Channels
boolean TXO_momentary1 = false;
boolean TXO_toggle1 = true;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// Disney 95 "DINOCO"--------------------------------------------------------------------------------
#ifdef CONFIG_DINOCO
// Battery type
boolean liPo = false;
float cutoffVoltage = 3.1; // trigger, as soon as VCC drops! (no battery sensing)
// Board type
float boardVersion = 1.0;
boolean HP = false;
// Vehicle address
int vehicleNumber = 2;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = true;
boolean indicators = false;
boolean beacons = false;
// Servo limits
byte lim1L = 45, lim1R = 135;
byte lim2L = 45, lim2R = 135;
byte lim3L = 45, lim3R = 135;
byte lim3Llow = 75, lim3Rlow = 105; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 32;
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// HG P407 Tamiya Bruiser Clone-------------------------------------------------------------------
#ifdef CONFIG_HG_P407
// Battery type
boolean liPo = true;
float cutoffVoltage = 3.6;
// Board type
float boardVersion = 1.5;
boolean HP = false;
// Vehicle address
int vehicleNumber = 3;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = true;
boolean indicators = true;
boolean beacons = false;
// Servo limits
byte lim1L = 155, lim1R = 65; // Steering R 155, L 65
byte lim2L = 71, lim2C = 106, lim2R = 146; // 3 speed gearbox shifting servo 71 = 3. gear, 106 2. gear, 146 = 1. gear.
byte lim3L = 135, lim3R = 45;
byte lim3Llow = 105, lim3Rlow = 75; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
#define THREE_SPEED_GEARBOX // Vehicle has a mechanical 3 speed shifting gearbox, switched by servo CH2.
// Not usable in combination with the "tailLights" option
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 8; // 3936Hz
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// JJRC Q46 Buggy -------------------------------------------------------------------
#ifdef CONFIG_JJRC_Q46
// Battery type
boolean liPo = false; // ESC provides protection
float cutoffVoltage = 4.9; // Regulated 6.0V supply from the ESC
// Board type
float boardVersion = 1.3;
boolean HP = false;
// Vehicle address
int vehicleNumber = 3;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = false;
boolean indicators = false;
boolean beacons = false;
// Servo limits
byte lim1L = 125, lim1R = 55; // R125, L70 Steering reversed
byte lim2L = 45, lim2R = 135;
byte lim3L = 150, lim3R = 35; // ESC output signal reversed
byte lim3Llow = 125, lim3Rlow = 60; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 8; // 3936Hz
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = true;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// MECCANO 6952 "Tuning Radio Control"--------------------------------------------------------
#ifdef CONFIG_MECCANO_6953
// Battery type
boolean liPo = false;
float cutoffVoltage = 3.3;
// Board type
float boardVersion = 1.3;
boolean HP = false;
// Vehicle address
int vehicleNumber = 3;
// Vehicle type
byte vehicleType = 5; // MRSC stability control
// MRSC
#define MRSC_FIXED
byte mrscGain = 35; // 35%
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = false;
boolean indicators = false;
boolean beacons = false;
// Servo limits
byte lim1L = 45, lim1R = 135;
byte lim2L = 45, lim2R = 135;
byte lim3L = 45, lim3R = 135;
byte lim3Llow = 75, lim3Rlow = 105; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 3;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 32;
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// Maisto Mustang GT Fastback---------------------------------------------------------------------------
#ifdef CONFIG_MUSTANG
// Battery type
boolean liPo = true;
float cutoffVoltage = 3.45;
// Board type
float boardVersion = 1.3;
boolean HP = true;
// Vehicle address
int vehicleNumber = 3;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = true;
boolean indicators = false;
boolean beacons = false;
// Servo limits
byte lim1L = 60, lim1R = 129;
byte lim2L = 45, lim2R = 135;
byte lim3L = 45, lim3R = 135;
byte lim3Llow = 75, lim3Rlow = 105; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 1; // This a show car and we don't want PWM switching noise! So, 31.5KHz frequency.
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = true;
// Tone sound
boolean toneOut = false;
#endif
// Maisto Dodge Challenger----------------------------------------------------------------------------
#ifdef CONFIG_CHALLENGER
// Battery type
boolean liPo = true;
float cutoffVoltage = 3.6;
// Board type
float boardVersion = 1.3;
boolean HP = true; // High Power Board!
// Vehicle address
int vehicleNumber = 4;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean tailLights = true;
boolean headLights = true;
boolean indicators = true;
boolean beacons = false;
// Servo limits
byte lim1L = 134, lim1R = 69; // 120 55
byte lim2L = 45, lim2R = 135;
byte lim3L = 45, lim3R = 135;
byte lim3Llow = 75, lim3Rlow = 105; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255; // was 245
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 8; // 3936Hz
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// WPL C34KM Toyota FJ40 Land Cruiser-------------------------------------------------------------------
#ifdef CONFIG_C34
// Battery type
boolean liPo = true;
float cutoffVoltage = 4.5; // 5V receiver supply voltage surveillance from BEC only!
// Board type
float boardVersion = 1.5;
boolean HP = false;
// Vehicle address
int vehicleNumber = 4;
// Vehicle type
byte vehicleType = 0;
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = true;
boolean indicators = true;
boolean beacons = false;
// Servo limits
byte lim1L = 60, lim1R = 145; // R60, L145
byte lim2L = 120, lim2R = 65; // Gearbox shifter limits (1. and 2. gear)
byte lim3L = 65, lim3R = 125; // +/-25° is still full throttle with the JMT-10A ESC! (Forward, Reverse)
byte lim3Llow = 65, lim3Rlow = 125; // same setting (full throttle), because of shifting gearbox!
byte lim4L = 45, lim4R = 135;
#define TWO_SPEED_GEARBOX // Vehicle has a mechanical 2 speed shifting gearbox, switched by servo CH2.
// Not usable in combination with the "tailLights" option
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 7;
byte maxAccelerationLimited = 12;
// Variables for self balancing (vehicleType = 4) only!
float tiltCalibration = 0.0;
// Steering configuration
byte steeringTorque = 255;
// Motor 2 PWM frequency
byte pwmPrescaler2 = 8; // 3936Hz
// Additional Channels
boolean TXO_momentary1 = true;
boolean TXO_toggle1 = false;
boolean potentiometer1 = false;
// Engine sound
boolean engineSound = false;
// Tone sound
boolean toneOut = false;
#endif
// GearGmax / KIDZTECH TOYS Porsche GT3 RS 4.0--------------------------------------------------------
#ifdef CONFIG_PORSCHE
// Battery type
boolean liPo = false;
float cutoffVoltage = 3.3;
// Board type
float boardVersion = 1.2;
boolean HP = false;
// Vehicle address
int vehicleNumber = 1; // one car number 1 and one number 5!
// Vehicle type
byte vehicleType = 5; // MRSC vehicle!
// Lights
boolean escBrakeLights = false;
boolean tailLights = false;
boolean headLights = true;
boolean indicators = false;
boolean beacons = false;
// Servo limits
byte lim1L = 62, lim1R = 101; // Car # 5: R 65, L 101
//byte lim1L = 45, lim1R = 135;
byte lim2L = 45, lim2R = 135;
byte lim3L = 45, lim3R = 135;
byte lim3Llow = 75, lim3Rlow = 105; // limited top speed angles!
byte lim4L = 45, lim4R = 135;
// Motor configuration
int maxPWMfull = 255;
int maxPWMlimited = 170;
int minPWM = 0;
byte maxAccelerationFull = 3;
byte maxAccelerationLimited = 12;