-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
executable file
·2042 lines (2042 loc) · 78.6 KB
/
settings.json
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
{
"settingGroups": {
"PSU1": {
"description": "PSU 1",
"platforms": [
"Raspberry Pi"
],
"settings": [
"PSU1_max_current"
],
"level":0
},
"PSU2": {
"description": "PSU 2",
"platforms": [
"Raspberry Pi"
],
"settings": [
"PSU2_max_current"
],
"level":0
},
"PSU3": {
"description": "PSU 3",
"platforms": [
"Raspberry Pi"
],
"settings": [
"PSU3_max_current"
],
"level":0
}
},
"attributes": {
"level": 0,
"gatherStats": false,
"restart": 0,
"reboot": 0,
"default": ""
},
"settings": {
"PSU1_max_current": {
"name": "PSU1_max_current",
"description": "PSU 1 Maximum Current",
"gatherStats": false,
"tip": "Set the maximum current draw before the PSU is auto shutdown. 30A is default.",
"level": 1,
"reboot": 1,
"default": 30,
"onChange": "NoSaveSettingCallback",
"type": "number",
"min": 0,
"max": 40,
"step": 1
},
"PSU2_max_current": {
"name": "PSU2_max_current",
"description": "PSU 2 Maximum Current",
"gatherStats": false,
"tip": "Set the maximum current draw before the PSU is auto shutdown. 30A is default.",
"level": 1,
"reboot": 1,
"default": 30,
"onChange": "NoSaveSettingCallback",
"type": "number",
"min": 0,
"max": 40,
"step": 1
},
"PSU3_max_current": {
"name": "PSU3_max_current",
"description": "PSU 3 Maximum Current",
"gatherStats": false,
"tip": "Set the maximum current draw before the PSU is auto shutdown. 30A is default.",
"level": 1,
"reboot": 1,
"default": 30,
"onChange": "NoSaveSettingCallback",
"type": "number",
"min": 0,
"max": 40,
"step": 1
},
"routeMetric": {
"name": "routeMetric",
"description": "Route Metric",
"gatherStats": false,
"tip": "IP Routing metric. Lower number is higher priority. 0 is default.",
"level": 1,
"reboot": 1,
"default": 0,
"onChange": "NoSaveSettingCallback",
"type": "number",
"min": 0,
"max": 10000,
"step": 1
},
"dhcpServer": {
"name": "dhcpServer",
"description": "DHCP Server",
"tip": "Enable DHCP Server on selected interface.",
"gatherStats": false,
"level": 1,
"restart": 0,
"reboot": 1,
"default": 0,
"onChange": "dhcpServerEnabledCallback",
"type": "checkbox",
"children": {
"1": [
"dhcpOffset",
"dhcpPoolSize"
]
}
},
"dhcpOffset": {
"name": "dhcpOffset",
"description": "DHCP Pool Offset",
"gatherStats": false,
"tip": "Offset for first entry in DHCP Pool.",
"level": 1,
"reboot": 1,
"default": 100,
"onChange": "NoSaveSettingCallback",
"type": "number",
"min": 1,
"max": 254,
"step": 1
},
"dhcpPoolSize": {
"name": "dhcpPoolSize",
"description": "DHCP Pool Size",
"gatherStats": false,
"tip": "Number of IP addresses in DHCP Pool.",
"level": 1,
"reboot": 1,
"default": 50,
"onChange": "NoSaveSettingCallback",
"type": "number",
"min": 1,
"max": 254,
"step": 1
},
"ipForwarding": {
"name": "ipForwarding",
"description": "IP Forwarding",
"tip": "Enable forwarding of IP packets through this interface. Optionally support IP Masquerading/NAT",
"gatherStats": false,
"level": 1,
"restart": 0,
"reboot": 1,
"default": 0,
"onChange": "NoSaveSettingCallback",
"type": "select",
"options": {
"Off": 0,
"Forwarding": 1,
"Masquerading/NAT": 2
}
},
"WifiRegulatoryDomain": {
"name": "WifiRegulatoryDomain",
"description": "WIFI Regulatory Domain",
"tip": "The regulatory domain controls the frequencies/channels that WIFI adapaters are allowed to use.",
"comment": "list from https://www.arubanetworks.com/techdocs/InstantWenger_Mobile/Advanced/Content/Instant%20User%20Guide%20-%20volumes/Country_Codes_List.htm#regulatory_domain_3737302751_1017918",
"gatherStats": true,
"level": 0,
"restart": 0,
"reboot": 1,
"default": "US",
"type": "select",
"options": {
"United States": "US",
"Canada": "CA",
"Japan": "JP3",
"Germany": "DE",
"Netherlands": "NL",
"Italy": "IT",
"Portugal": "PT",
"Luxembourg": "LU",
"Norway": "NO",
"Finland": "FI",
"Denmark": "DK",
"Switzerland": "CH",
"Czech Republic": "CZ",
"Spain": "ES",
"United Kingdom": "GB",
"Republic of Korea (South Korea)": "KR",
"China": "CN",
"France": "FR",
"Hong Kong": "HK",
"Singapore": "SG",
"Taiwan": "TW",
"Brazil": "BR",
"Israel": "IL",
"Saudi Arabia": "SA",
"Lebanon": "LB",
"United Arab Emirates": "AE",
"South Africa": "ZA",
"Argentina": "AR",
"Australia": "AU",
"Austria": "AT",
"Bolivia": "BO",
"Chile": "CL",
"Greece": "GR",
"Iceland": "IS",
"India": "IN",
"Ireland": "IE",
"Kuwait": "KW",
"Liechtenstein": "LI",
"Lithuania": "LT",
"Mexico": "MX",
"Morocco": "MA",
"New Zealand": "NZ",
"Poland": "PL",
"Puerto Rico": "PR",
"Slovak Republic": "SK",
"Slovenia": "SI",
"Thailand": "TH",
"Uruguay": "UY",
"Panama": "PA",
"Russia": "RU",
"Egypt": "EG",
"Trinidad and Tobago": "TT",
"Turkey": "TR",
"Costa Rica": "CR",
"Ecuador": "EC",
"Honduras": "HN",
"Kenya": "KE",
"Ukraine": "UA",
"Vietnam": "VN",
"Bulgaria": "BG",
"Cyprus": "CY",
"Estonia": "EE",
"Mauritius": "MU",
"Romania": "RO",
"Serbia and Montenegro": "CS",
"Indonesia": "ID",
"Peru": "PE",
"Venezuela": "VE",
"Jamaica": "JM",
"Bahrain": "BH",
"Oman": "OM",
"Jordan": "JO",
"Bermuda": "BM",
"Colombia": "CO",
"Dominican Republic": "DO",
"Guatemala": "GT",
"Philippines": "PH",
"Sri Lanka": "LK",
"El Salvador": "SV",
"Tunisia": "TN",
"Islamic Republic of Pakistan": "PK",
"Qatar": "QA",
"Algeria": "DZ"
}
},
"wifiDrivers": {
"name": "wifiDrivers",
"description": "WIFI Drivers",
"tip": "Which drivers to use for WIFI Adapters. Some RealTek chipsets have drivers in Linux kernel as well as externally built. In general, the external adapters work better, but may not support all chipsets.",
"gatherStats": true,
"level": 0,
"restart": 0,
"reboot": 1,
"default": "External",
"type": "select",
"options": {
"External": "External",
"Linux Kernel": "Kernel"
}
},
"AutoEnableOutputs": {
"name": "AutoEnableOutputs",
"description": "Automatically turn on/off outputs",
"tip": "Some controllers can control the power to the pixel ports. This setting allows FPP to automatically control the power to those ports when outputting data.",
"level": 1,
"gatherStats": true,
"restart": 2,
"reboot": 0,
"checkedValue": "1",
"uncheckedValue": "0",
"default": "1",
"type": "checkbox"
},
"alwaysTransmit": {
"name": "alwaysTransmit",
"description": "Always transmit channel data",
"tip": "Always transmit channel output data even when no sequence or effect is playing. Some controllers may need constant data coming in to prevent them from going into a built in test mode.",
"level": 1,
"gatherStats": true,
"restart": 2,
"reboot": 0,
"checkedValue": "1",
"uncheckedValue": "0",
"default": "0",
"type": "checkbox"
},
"AudioFormat": {
"name": "AudioFormat",
"description": "Audio Output Format",
"tip": "The Audio Format generated by the decoder can be changed to work with certain audio devices that can not work with multiple formats. Leaving this setting at 'Default' is recommended unless you are experiencing issues",
"gatherStats": true,
"level": 1,
"restart": 0,
"reboot": 1,
"default": 0,
"type": "select",
"options": {
"Default": 0,
"44100/S16": 1,
"44100/S32": 2,
"44100/FLT": 3,
"48000/S16": 4,
"48000/S32": 5,
"48000/FLT": 6,
"96000/S16": 7,
"96000/S32": 8,
"96000/FLT": 9
}
},
"AudioLayout": {
"name": "AudioLayout",
"description": "Audio Channel Layout",
"tip": "The Audio Channel Layout. This controls the number of channels of audio that is output and how the channels are mapped. Note: this only applies to SOUND files played on the master, not videos or files played on a remote.",
"gatherStats": true,
"level": 1,
"restart": 1,
"reboot": 0,
"default": 0,
"type": "select",
"options": {
"Stereo": 0,
"Left/Right/LFE (2.1)": 1,
"Left/Right/Back Center": 2,
"Left/Right/Front Center": 3,
"Left/Right/Front Center/LFE (3.1)": 4,
"Left/Right/Front Center/Back Center": 5,
"Left/Right/Side Left/Side Right": 6,
"Left/Right/Back Left/Back Right": 7,
"Left/Right/Front Center/Back Center/LFE (4.1)": 8,
"Left/Right/Front Center/Side Left/Side Right (5.0)": 9,
"Left/Right/Front Center/Side Left/Side Right/LFE (5.1)": 10,
"Left/Right/Front Center/Back Left/Back Right": 11,
"Left/Right/Front Center/Back Left/Back Right/LFE": 12,
"Left/Right/Front Center/Side Left/Side Right/Back Center/LFE (6.1)": 13,
"Left/Right/Front Center/Side Left/Side Right/Back Left/Back Right (7.0)": 14,
"Left/Right/Front Center/Side Left/Side Right/Back Left/Back Right/LFE (7.1)": 15
}
},
"AudioMixerDevice": {
"name": "AudioMixerDevice",
"description": "Audio Output Mixer Device",
"tip": "The Audio Mixer Device specifies the mixer device which should be used by FPP to control the volume of audio playback.",
"gatherStats": true,
"restart": 2,
"default": "PCM",
"type": "select",
"optionsURL": "api/settings/AudioMixerDevice/options",
"platforms": [
"!MacOS"
]
},
"AudioOutput": {
"name": "AudioOutput",
"description": "Audio Output Device",
"tip": "The Audio Output Device determines which audio device is used for audio playback. This may be an onboard analog audio device, the HDMI output on a Raspberry Pi, or a USB sound card.",
"gatherStats": true,
"restart": 0,
"reboot": 1,
"default": "0",
"type": "select",
"reloadOther": [
"AudioMixerDevice"
],
"optionsURL": "api/settings/AudioOutput/options"
},
"backgroundColor": {
"name": "backgroundColor",
"description": "Header Background Color",
"tip": "The header background color of the FPP User Interface can be changed to make it easier to distinguish visually between multiple installed FPP instances.",
"reboot": 0,
"restart": 0,
"reloadUI": 1,
"default": "",
"type": "select",
"options": {
"Default": "",
"Red": "FF0000",
"Green": "008000",
"Blue": "0000FF",
"Aqua": "00FFFF",
"Black": "000000",
"Gray": "808080",
"Lime": "00FF00",
"Navy": "000080",
"Olive": "808000",
"Purple": "800080",
"Silver": "C0C0C0",
"Teal": "008080"
}
},
"BBBLedPWR": {
"name": "BBBLedPWR",
"description": "Power",
"tip": "Controls whether the power indicator LED on the BeagleBone is enabled or disabled",
"default": "1",
"platforms": [
"BeagleBone Black"
],
"type": "select",
"options": {
"Disabled": "0",
"Enabled": "1"
}
},
"BBBLeds0": {
"name": "BBBLeds0",
"description": "USR0",
"tip": "Controls the function of the USR0 LED indicator on the BeagleBone",
"default": "heartbeat",
"platforms": [
"BeagleBone Black"
],
"type": "select",
"options": {
"Disabled": "none",
"Heartbeat": "heartbeat",
"SD Card Activity": "mmc0",
"eMMC Activity": "mmc1",
"CPU Activity": "cpu"
}
},
"BBBLeds1": {
"name": "BBBLeds1",
"description": "USR1",
"tip": "Controls the function of the USR1 LED indicator on the BeagleBone",
"default": "mmc0",
"platforms": [
"BeagleBone Black"
],
"type": "select",
"options": {
"Disabled": "none",
"Heartbeat": "heartbeat",
"SD Card Activity": "mmc0",
"eMMC Activity": "mmc1",
"CPU Activity": "cpu"
}
},
"BBBLeds2": {
"name": "BBBLeds2",
"description": "USR2",
"tip": "Controls the function of the USR2 LED indicator on the BeagleBone",
"default": "cpu",
"platforms": [
"BeagleBone Black"
],
"type": "select",
"options": {
"Disabled": "none",
"Heartbeat": "heartbeat",
"SD Card Activity": "mmc0",
"eMMC Activity": "mmc1",
"CPU Activity": "cpu"
}
},
"BBBLeds3": {
"name": "BBBLeds3",
"description": "USR3",
"tip": "Controls the function of the USR3 LED indicator on the BeagleBone",
"default": "mmc1",
"platforms": [
"BeagleBone Black"
],
"type": "select",
"options": {
"Disabled": "none",
"Heartbeat": "heartbeat",
"SD Card Activity": "mmc0",
"eMMC Activity": "mmc1",
"CPU Activity": "cpu"
}
},
"blankBetweenSequences": {
"name": "blankBetweenSequences",
"description": "Blank between sequences",
"gatherStats": true,
"tip": "Blank Between Sequences instructs FPP to send blanking data out all channel outputs between each sequence played in a playlist. This can be used to turn off all the lights after each sequence if the sequences do not end with all channels turned off.",
"restart": 2,
"type": "checkbox"
},
"localOverride": {
"name": "localOverride",
"description": "Local sequences override remote",
"gatherStats": true,
"tip": "This instructs FPP to allow local sequences to override remote sequences for when you have an interactive show that may affect the props on this controller.",
"restart": 2,
"type": "checkbox",
"fppModes": [
"remote"
]
},
"bridgeDataPriority": {
"name": "bridgeDataPriority",
"description": "Bridge Data Priority",
"tip": "Describes how to handle if bridge data (E131 or DDP) is received while a sequence is playing.",
"level": 0,
"gatherStats": true,
"reboot": 0,
"restart": 1,
"reloadUI": 0,
"type": "select",
"default": "Prioritize Bridge",
"options": {
"Prioritize Bridge": "Prioritize Bridge",
"Prioritize Sequence": "Prioritize Sequence"
}
},
"bootDelay": {
"name": "bootDelay",
"description": "FPPD Boot Delay",
"gatherStats": true,
"tip": "The time that FPP waits after system boot up to start fppd. For environments that are powered down regularly, fppd may start up quicker than the network environment fully starts up which may cause E1.31 multicast to not work properly. Setting a Boot Delay will cause fppd to wait 'X' number of seconds to start which can give the network switches and routers time to fully start up.",
"default": "0",
"type": "select",
"options": {
"0s": 0,
"1s": 1,
"2s": 2,
"3s": 3,
"4s": 4,
"5s": 5,
"6s": 6,
"7s": 7,
"8s": 8,
"9s": 9,
"10s": 10,
"15s": 15,
"20s": 20,
"25s": 25,
"30s": 30,
"1 min": 60,
"2 min": 120,
"3 min": 180,
"5 min": 300
},
"platforms": [
"!MacOS"
]
},
"ClockDate": {
"name": "ClockDate",
"description": "Set Date",
"tip": "Current Date to use to set the system date.",
"suffix": "(YYYY-MM-DD)",
"type": "date",
"alwaysReset": 1
},
"ClockTime": {
"name": "ClockTime",
"description": "Set Time",
"tip": "Current Time to use to set the system time. Time must be in 24-hour format.",
"suffix": "(HH:MM:SS)",
"type": "time",
"alwaysReset": 1
},
"CompressMultiSyncTransfers": {
"name": "CompressMultiSyncTransfers",
"gatherStats": true,
"description": "Compress files during copy to Remotes to speed up file sync process",
"tip": "Compress files during copy to speed up the sync process. NOTE: Newer xLights versions already used a compressed FSEQ format, so this option may only slow down the transfer as FPP tries to recompress already-compressed data.",
"type": "checkbox",
"textOnRight": 1
},
"DateFormat": {
"name": "DateFormat",
"description": "Date Format",
"tip": "Format of displayed dates",
"type": "select",
"reloadUI": 1,
"default": "%a %b %e",
"gatherStats": true,
"options": {
"YYYY-MM-DD (2021-12-25)": "%Y-%m-%d",
"MM/DD/YYYY (12/25/2021)": "%m/%d/%Y",
"DD/MM/YYYY (25/12/2021)": "%d/%m/%Y",
"Weekday Month Day (Sat Dec 25)": "%a %b %e",
"Month Day (Dec 25)": "%b %e"
}
},
"DisableFakeNetworkBridges": {
"name": "DisableFakeNetworkBridges",
"description": "Disable Network Bridge Monitoring (E1.31/DDP/ArtNet)",
"gatherStats": true,
"tip": "FPP normally listens on the network bridge ports for incoming data even when not running in Bridge mode to monitor for and identify misconfigurations in the environment. The disable setting is provided to allow the user to disable these listeners if they need to spin up their own listener software.",
"level": 1,
"restart": 2,
"reboot": 0,
"checkedValue": "1",
"uncheckedValue": "0",
"default": "0",
"type": "checkbox"
},
"disableIPAnnouncement": {
"name": "disableIPAnnouncement",
"description": "Disable IP announcement",
"gatherStats": true,
"tip": "During boot, the current IP addresses will be announced over the audio output. This setting allows disabling this announcement for production use when FPP is connected to a FM transmitter or speakers.",
"type": "checkbox",
"platforms": [
"!MacOS"
]
},
"disableUIWarnings": {
"name": "disableUIWarnings",
"description": "Disable restart/reboot UI Warnings",
"tip": "Disable the 'restart required' and 'reboot required' warnings that appear at the top of the page when settings are changed.",
"level": 3,
"gatherStats": true,
"reboot": 0,
"restart": 0,
"reloadUI": 0,
"default": "0",
"type": "checkbox",
"checkedValue": "1",
"uncheckedValue": "0"
},
"DisableScheduler": {
"name": "DisableScheduler",
"gatherStats": true,
"description": "Disable Scheduler",
"tip": "The Disable Scheduler setting allows disabling all scheduling rather than having to go to each schedule entry and deactivate.",
"type": "checkbox",
"level": 1,
"restart": 1
},
"E131BridgingInterval": {
"name": "E131BridgingInterval",
"description": "E1.31 Bridging Transmit Interval",
"gatherStats": true,
"tip": "The default Transmit Interval in E1.31 Bridge Mode is 50ms. This setting allows changing this to match the rate the player is outputting. WARNING - Some output devices such as the FPD do not support rates other than 50ms.",
"level": 1,
"restart": 2,
"type": "select",
"default": "50",
"options": {
"10ms": "10",
"25ms": "25",
"40ms": "40",
"50ms": "50",
"100ms": "100"
}
},
"emailfromtext": {
"name": "emailfromtext",
"description": "From Name",
"tip": "Text to use in From field of emails.",
"type": "text",
"size": 30,
"maxlength": 64
},
"emailfromuser": {
"name": "emailfromuser",
"description": "From Email Address",
"tip": "Email address to be used to send emails.",
"type": "text",
"size": 30,
"maxlength": 64
},
"emailpass": {
"name": "emailpass",
"description": "SMTP Server Password",
"tip": "Password to be used to authenticate with email server.",
"type": "password",
"size": 30,
"maxlength": 100
},
"emailport": {
"name": "emailport",
"description": "SMTP Server Port",
"gatherStats": true,
"tip": "TCP Port used on SMTP server. Most server use 587 for encrypted traffic, some servers may still use 25 for non-encrypted SMTP traffic.",
"restart": 0,
"type": "select",
"options": {
"25": "25",
"465": "465",
"587": "587"
},
"default": "587"
},
"emailserver": {
"name": "emailserver",
"description": "SMTP Server Hostname",
"tip": "Server used to send outbound email.",
"type": "text",
"size": 30,
"maxlength": 64,
"children": {
"*": [
"emailport",
"emailuser",
"emailpass",
"emailfromuser",
"emailtoemail",
"emailfromtext"
]
}
},
"emailtoemail": {
"name": "emailtoemail",
"description": "Default TO Address",
"tip": "Default destination email address to send all emails.",
"type": "text",
"size": 30,
"maxlength": 64
},
"emailuser": {
"name": "emailuser",
"description": "SMTP Server Login",
"tip": "Login for SMTP server, may be the same as the from address.",
"type": "text",
"size": 30,
"maxlength": 64
},
"EnableTethering": {
"name": "EnableTethering",
"description": "Tethering Mode",
"tip": "Enable or disable FPP WiFi tethering mode",
"gatherStats": true,
"reboot": 1,
"default": 0,
"type": "select",
"options": {
"If no connection": 0,
"Enabled": 1,
"Disabled": 2
}
},
"FPP_UUID": {
"name": "FPP_UUID",
"description": "UUID to use for stats collection",
"gatherStats": true,
"tip": "FPP UUID to use for stats collection. This will override using the serial number from /proc/cpuinfo or dmidecode.",
"level": 3,
"type": "text",
"size": 30,
"maxlength": 30
},
"fppMode": {
"name": "fppMode",
"description": "FPP Player Mode",
"tip": "FPP can run either as a Player where it can schedule and run various playlists, sequences, etc... or in Remote mode where another FPP instance will be in control of scheduling.",
"gatherStats": true,
"restart": 2,
"type": "select",
"reloadUI": 1,
"options": {
"Player": "player",
"Remote": "remote"
}
},
"FetchVendorLogos": {
"name": "FetchVendorLogos",
"description": "Fetch cape logos from vendors",
"gatherStats": true,
"tip": "Some capes/hats fetch the vendor logo from their website when using the FPP UI. This discloses your IP address to the vendor.",
"platforms": [
"BeagleBone Black",
"Raspberry Pi"
],
"type": "checkbox",
"default": 1
},
"ForceHDMI": {
"name": "ForceHDMI",
"description": "Force HDMI Display",
"gatherStats": true,
"tip": "Force the Raspberry Pi to use the HDMI output as the default display. This is sometimes required if the HDMI display is not detected properly or is not powered when the Pi is booted. Turning this setting on will prevent using the Composite output on the Pi until the setting is disabled.",
"reboot": 1,
"platforms": [
"Raspberry Pi"
],
"type": "checkbox"
},
"GPIOFan": {
"name": "GPIOFan",
"description": "GPIO 14 Fan Control",
"gatherStats": true,
"tip": "Allow the Raspberry Pi to control the speed of cooling fans by using the GPIO 14 PWM.",
"reboot": 1,
"platforms": [
"Raspberry Pi"
],
"children": {
"1": [
"GPIOFanTemperature"
]
},
"type": "checkbox"
},
"GPIOFanTemperature": {
"name": "GPIOFanTemperature",
"description": " Fan On Temperature",
"gatherStats": true,
"tip": "Temperature above which the cooling fan will turn on.",
"reboot": 1,
"platforms": [
"Raspberry Pi"
],
"type": "number",
"default": 70,
"min": 30,
"max": 85,
"step": 1,
"suffix": " C"
},
"EnableBBBHDMI": {
"name": "EnableBBBHDMI",
"description": "Enable HDMI Display",
"gatherStats": true,
"tip": "Enables the HDMI port on the BeagleBone. WARNING: when enabled, many of the GPIO pins are disabled which will prevent most Capes from functioning.",
"reboot": 1,
"level": 1,
"platforms": [
"BeagleBone Black"
],
"variants": {
"BeagleBone Black": [
"BeagleBone Black",
"BeagleBone Black Wireless",
"SanCloud BeagleBone Enhanced"
]
},
"children": {
"1": [
"ForceHDMIResolution"
]
},
"type": "checkbox"
},
"ForceHDMIResolution": {
"name": "ForceHDMIResolution",
"description": "Force HDMI Resolution",
"gatherStats": true,
"tip": "Force the HDMI output to the given resolution. The default is whatever settings the monitor reports at bootup time.",
"reboot": 1,
"platforms": [
"Raspberry Pi",
"BeagleBone Black"
],
"variants": {
"BeagleBone Black": [
"BeagleBone Black",
"BeagleBone Black Wireless",
"SanCloud BeagleBone Enhanced"
]
},
"type": "select",
"optionsURL": "hdmi_table.json.php"
},
"ForceHDMIResolutionPort2": {
"name": "ForceHDMIResolutionPort2",
"gatherStats": true,
"description": "Force Port 2 HDMI Resolution",
"tip": "Force the Raspberry Pi 4's second HDMI to the given resolution. The default is whatever settings the monitor reports at bootup time.",
"reboot": 1,
"platforms": [
"Raspberry Pi"
],
"variants": {
"Raspberry Pi": [
"Pi 4"
]
},
"type": "select",
"optionsURL": "hdmi_table.json.php"
},
"gitBranch": {
"name": "gitBranch",
"description": "Git Branch",
"gatherStats": true,
"tip": "Switch code branches to test features outside the current release branch. The 'master' branch is the main development branch for the next version of FPP. There may also be a 'master-vY.x' branch were 'Y' is the major FPP version. These master-v* branches are created to allow development on the next major release to continue in the master branch while bugfixes for the 'Y' release are applied only to the master-vY.x branch.",
"level": 2
},
"HostDescription": {
"name": "HostDescription",
"description": "Host description",
"tip": "Description of host",
"default": "FPP",
"type": "text",
"size": 30,
"maxlength": 48
},
"HostName": {
"name": "HostName",
"description": "Host Name",
"tip": "Host names must contain only letters, numbers, and hyphens and must begin with a letter or a number",
"reboot": 1,
"default": "fpp",
"type": "text",
"size": 30,
"maxlength": 30,
"regex": "^\\([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*[a-zA-Z0-9])$",
"regexDesc": "Host names must contain only letters, numbers and hyphens",
"platforms": [
"!MacOS"
]
},
"Latitude": {
"name": "Latitude",
"description": "Latitude",
"tip": "Latitude of geographic location of FPP system. The latitude/longitude can be used by the FPP scheduler to calculate the sunrise/sunset times. The default values provided are for Falcon, Colorado.",
"restart": 2,
"default": "38.938524",
"type": "text",
"size": 15,
"maxlength": 15
},
"LEDDisplayType": {
"name": "LEDDisplayType",
"description": "Status Display",
"tip": "Status Display type. There are several OLED/LCD displays which can be attached to the i2c bus on the Pi and BeagleBone. This setting is used to configure the size and type of display installed.",
"gatherStats": true,
"reboot": 1,
"checkFile": [
"/dev/i2c-1",
"/dev/i2c-2"
],
"type": "select",
"options": {
"Disabled": 0,
"128x64 I2C (SSD1306)": 1,
"128x64 Flipped I2C (SSD1306)": 2,
"128x64 2 Color I2C (SSD1306)": 7,
"128x64 2 Color Flipped I2C (SSD1306)": 8,
"128x32 I2C (SSD1306)": 3,
"128x32 Flipped I2C (SSD1306)": 4,
"128x64 I2C (SH1106)": 5,
"128x64 Flipped I2C (SH1106)": 6,
"128x128 I2C (SSD1327)": 9,
"128x128 Flipped I2C (SSD1327)": 10,
"Adafruit 16x2 LCD (I2C 0x20)": 11,
"PCF8574A 16x2 LCD (I2C 0x3F)": 12,
"PCF8574A 20x4 LCD (I2C 0x3F)": 13,
"PCF8574 16x2 LCD (I2C 0x27)": 14,
"PCF8574 20x4 LCD (I2C 0x27)": 15
}
},
"Locale": {
"name": "Locale",
"description": "Locale",
"gatherStats": true,
"tip": "The Locale is used to automatically configure some locale or region-specific functionality within FPP such as the list of Holidays included in the FPP Scheduler.",
"restart": 2,
"default": "Global",
"type": "select",
"optionsURL": "api/settings/Locale/options"
},
"LogLevel_General": {
"name": "LogLevel_General",
"description": "General",
"gatherStats": true,
"tip": "The Log Level controls the detail amount included in the FPP logs for General Functions. ",
"default": "info",
"type": "select",
"options": {
"Errors Only": "error",
"Warn": "warn",
"Info": "info",
"Debug": "debug",
"Excessive": "excess"
}
},
"LogLevel_ChannelOut": {
"name": "LogLevel_ChannelOut",
"description": "ChannelOut",
"gatherStats": true,
"tip": "The Log Level controls the detail amount included in the FPP logs for Channel Testing and Overlays. ",
"default": "info",
"type": "select",
"options": {
"Errors Only": "error",
"Warn": "warn",
"Info": "info",
"Debug": "debug",
"Excessive": "excess"
}
},
"LogLevel_ChannelData": {
"name": "LogLevel_ChannelData",
"description": "ChannelData",
"gatherStats": true,
"tip": "The Log Level controls the detail amount included in the FPP logs for Serial and LOR output. ",
"default": "info",
"type": "select",
"options": {
"Errors Only": "error",
"Warn": "warn",