Updating configuration to reflect new simled code

This commit is contained in:
Paul Dino Jones
2025-02-25 22:13:49 -05:00
parent 9c0cadffdf
commit 84f336f40c
3 changed files with 94 additions and 2 deletions
+17 -2
View File
@@ -1,5 +1,7 @@
configs = ({
sim = 0;
sim = "default";
// one can also specify sim by using the "short-name" for example "ac". also, "acc", "ace", "ams2", "et", "at" and "rf2"
//sim = "ac";
car = "default";
devices = ( { device = "USB";
type = "Tachometer";
@@ -63,6 +65,19 @@ configs = ({
effect = "ABS";
tyre = "ALL"; // this will have to be documented, this tells the code to spin both motors
motors = 8;
devpath = "/dev/ttyACM0";}
devpath = "/dev/ttyACM0";},
{ device = "Serial";
type = "SimWind";
config = "None";
baud = 115200;
devpath = "/dev/simdev1"; },
{ device = "Serial";
type = "Simleds";
numleds = 6;
startled = 1;
endled = 6;
config = "None";
baud = 115200;
devpath = "/dev/simdev0"; }
);
});