Raspberry Pi for Z57XM6DV2 clock software setup 06/12/2022 # the following image was used, write image to SD card 2022-04-04-raspios-bullseye-armhf-lite.img # For a headless setup.. copy over the following files to the card ssh.txt # JUST A BLANK FILE TO ENABLE SSH wpa_supplicant.conf # YOUR WIFI CREDENTIALS userconf.txt # USERNAME AND PASSWORD # download and install wiringpi, instructions from: https://learn.sparkfun.com/tutorials/raspberry-gpio/c-wiringpi-setup # were going to assume you are using the "pi" user, if not adjust user/homedir accordingly cd /home/pi sudo apt-get install git-core git clone https://github.com/WiringPi/WiringPi.git cd WiringPi ./build # Test the setup gpio -v gpio readall # download wget www.neonixie.com/Z57XM6DV2/neonixie-pi-clock-beta-software-06-12-2022.tar tar -xf neonixie-pi-clock-beta-software-06-12-2022.tar # Source is in neonixie-clock.c # this can be edited and recompiled using.. gcc neonixie-clock.c -o neonixie-clock -lwiringPi # Set your timezone under localisation sudo raspi-config # edit rc.local and add the following, adjust user/homedir as needed, REBOOT, the clock should be up and running! /home/pi/neonixie-clock/neonixie-clock.startup.sh &