ofxPiMapper fixed for C++17 & oF 12.0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

1.0 KiB

#ofxPiMapper Scripts

This directory contains useful scripts to be used to autorun and keep alive your projection mapping application.

keepalive-example.sh

This script launches and keeps alive the example application.

  1. Copy it to your home directory.
    cp keepalive-example.sh ~/keepalive-example.sh
    
  2. Set exec permissions.
    chmod a+x keepalive-example.sh
    
  3. Run crontab -e and add the following lines to make use of it.
    @reboot /home/pi/keepalive-example.sh
    * * * * * /home/pi/keepalive-example.sh
    

keepalive-example-camera.sh

This script launches and keeps alive the example-camera application.

  1. Copy it to your home directory.
    cp keepalive-example-camera.sh ~/keepalive-example-camera.sh
    
  2. Set exec permissions.
    chmod a+x keepalive-example-camera.sh
    
  3. Run crontab -e and add the following lines to make use of it.
    @reboot /home/pi/keepalive-example-camera.sh
    * * * * * /home/pi/keepalive-example-camera.sh