I bought a Proffieboard v3.9 from TCSS and it states it’s preloaded with the default sound package and to use the config generation tool. It looks like the presets in the generator have three lines per sound font. I.e.:
{ "TeensySF", "tracks/venus.wav",
StyleNormalPtr<CYAN, WHITE, 300, 800>(),
StyleNormalPtr<CYAN, WHITE, 300, 800>(),
StyleNormalPtr<CYAN, WHITE, 300, 800>(), "cyan"},
The first light saber I built a few weeks ago I bought from The Saber Armory. Having a lesser idea of what I was doing I asked them for the config file, they also stated it was loaded with “the default config” but they also provided me with one. That config only uses 1 line per soundfont. I.e.:
{ "TeensySF", "tracks/venus.wav",
StyleNormalPtr<CYAN, WHITE, 300, 800>(), "cyan"},
This saber I’m building now also uses an illuminated switch and plugging that into the config adds a 4th line even:
{ "TeensySF", "tracks/venus.wav",
StyleNormalPtr<CYAN, WHITE, 300, 800>(),
StyleNormalPtr<CYAN, WHITE, 300, 800>(),
StyleNormalPtr<CYAN, WHITE, 300, 800>(),
StyleNormalPtr<CYAN, WHITE, 300, 800>(), "cyan"},
What’s the difference here? Does it matter how many lines there are?
Thanks