I will try to do a step-by-step guide on how to setup from scratch the program.
If you already have ledspicer installed, jump to step X.
Todo.
# Get needed dependencies.
sudo apt install build-essential libtinyxml2-dev libusb-1.0-0-dev libpulse-dev git
Use git or extract the tar.gz:
lasted
cd LEDSpicer #(or whatever the directory name is)
./autogen.sh
# here you need to select what device(s) and options you want to use, add this to the end (I have a pacled64 and a Ultimate):
# --enable-nanoled for ultimarc nanoled
# --enable-pacdrive for ultimarc packdrive
# --enable-pacled64 for ultimarc pacled64
# --enable-ultimateio for ultimarc ultimate IO
# --enable-ledwiz32 for GGG ledwiz32
./configure --prefix=/usr --sysconfdir=/etc CXXFLAGS='-g0 -O3' --enable-samples --enable-pacled64 --enable-ultimateio
make
sudo make install
sudo nano /etc/ledspicer.conf
In here add your device(s) configuration, check the Configuration section for more details, and the configuratios for examples.
The program came with a sample profile and a sample animation, to learn more about how to create your own read Animations and Profiles sections, also check the profiles examples and animations examples.