#!/bin/sh

# M110 in your G code program will run the Linux commands in this
# shell script "batch" file, passing the P and Q variables as command
# line arguments.
# give the command line arguments descriptive names

P=$1

halcmd setp parport.0.pin-16-out $P




# if a M1nn command exits with nonzero status,
# the gcode program exits.  So always exit 0.
exit 0 ;
