2022-11-21 12:53:33 +01:00
#!/usr/bin/python3.9
2022-11-25 23:58:26 +01:00
import serial , time , hal
2022-11-25 02:43:59 +01:00
# LinuxCNC_ArduinoConnector
# By Alexander Richter, info@theartoftinkering.com 2022
# This Software is used as IO Expansion for LinuxCNC. Here i am using a Mega 2560.
# It is NOT intended for timing and security relevant IO's. Don't use it for Emergency Stops or Endstop switches!
# You can create as many digital & analog Inputs, Outputs and PWM Outputs as your Arduino can handle.
# You can also generate "virtual Pins" by using latching Potentiometers, which are connected to one analog Pin, but are read in Hal as individual Pins.
# Currently the Software provides:
# - analog Inputs
# - latching Potentiometers
# - 1 absolute encoder input
# - digital Inputs
# - digital Outputs
# The Send and receive Protocol is <Signal><PinNumber>:<Pin State>
# To begin Transmitting Ready is send out and expects to receive E: to establish connection. Afterwards Data is exchanged.
# Data is only send everythime it changes once.
2023-03-28 18:54:54 +02:00
# Inputs & Toggle Inputs = 'I' -write only -Pin State: 0,1
2022-11-25 02:43:59 +01:00
# Outputs = 'O' -read only -Pin State: 0,1
# PWM Outputs = 'P' -read only -Pin State: 0-255
2023-03-25 14:38:12 +01:00
# Digital LED Outputs = 'D' -read only -Pin State: 0,1
2022-11-25 02:43:59 +01:00
# Analog Inputs = 'A' -write only -Pin State: 0-1024
# Latching Potentiometers = 'L' -write only -Pin State: 0-max Position
# Absolute Encoder input = 'K' -write only -Pin State: 0-32
# Command 'E0:0' is used for connectivity checks and is send every 5 seconds as keep alive signal
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2022-11-21 12:53:33 +01:00
2022-11-21 19:37:43 +01:00
c = hal . component ( " arduino " ) #name that we will cal pins from in hal
2022-11-25 02:43:59 +01:00
connection = ' /dev/ttyACM0 '
2022-11-21 12:53:33 +01:00
2022-11-21 19:37:43 +01:00
# Set how many Inputs you have programmed in Arduino and which pins are Inputs
2023-03-28 18:50:22 +02:00
Inputs = 5
InPinmap = [ 37 , 38 , 39 , 40 , 41 ]
# Set how many Toggled Inputs you have programmed in Arduino and which pins are Toggled Inputs
SInputs = 5
sInPinmap = [ 32 , 33 , 34 , 35 , 36 ]
2022-11-21 12:53:33 +01:00
2022-11-21 19:37:43 +01:00
# Set how many Outputs you have programmed in Arduino and which pins are Outputs
Outputs = 9
2022-11-25 03:04:17 +01:00
OutPinmap = [ 10 , 9 , 8 , 7 , 6 , 5 , 4 , 3 , 2 , 21 ]
2022-11-21 12:53:33 +01:00
2022-11-21 19:37:43 +01:00
# Set how many PWM Outputs you have programmed in Arduino and which pins are PWM Outputs
PwmOutputs = 2
2022-11-25 23:58:26 +01:00
PwmOutPinmap = [ 11 , 12 ]
2022-11-21 19:37:43 +01:00
# Set how many Analog Inputs you have programmed in Arduino and which pins are Analog Inputs
AInputs = 1
2022-11-25 22:05:54 +01:00
AInPinmap = [ 1 ]
2022-11-21 19:37:43 +01:00
# Set how many Latching Analog Inputs you have programmed in Arduino and how many latches there are
2022-11-25 00:38:01 +01:00
LPoti = 2
2022-11-25 22:05:54 +01:00
LPotiLatches = [ [ 2 , 9 ] ,
[ 3 , 4 ] ]
2022-11-21 19:37:43 +01:00
# Set if you have an Absolute Encoder Knob and how many positions it has (only one supported, as i don't think they are very common and propably nobody uses these anyway)
AbsKnob = 1
2022-11-25 22:05:54 +01:00
AbsKnobPos = 32
2022-11-21 19:37:43 +01:00
2023-03-25 14:38:12 +01:00
# Set how many Digital LED's you have connected.
DLEDcount = 8
2022-11-25 23:58:26 +01:00
2023-03-28 20:01:00 +02:00
Debug = 0
2022-11-21 19:37:43 +01:00
######## End of Config! ########
2022-11-25 23:58:26 +01:00
olddOutStates = [ 0 ] * Outputs
oldPwmOutStates = [ 0 ] * PwmOutputs
2022-11-25 02:43:59 +01:00
2023-03-28 18:50:22 +02:00
# Inputs and Toggled Inputs are handled the same.
# For DAU compatiblity we set them up seperately.
# Here we merge the arrays.
Inputs = Inputs + SInputs
InPinmap + = sInPinmap
2022-11-21 19:37:43 +01:00
######## SetUp of HalPins ########
# setup Input halpins
for port in range ( Inputs ) :
2022-11-25 22:05:54 +01:00
c . newpin ( " dIn. {} " . format ( InPinmap [ port ] ) , hal . HAL_BIT , hal . HAL_OUT )
2023-03-28 20:01:00 +02:00
c . newparam ( " dIn. {} -invert " . format ( InPinmap [ port ] ) , hal . HAL_BIT , hal . HAL_RW )
2022-11-21 19:37:43 +01:00
# setup Output halpins
for port in range ( Outputs ) :
2022-11-25 22:05:54 +01:00
c . newpin ( " dOut. {} " . format ( OutPinmap [ port ] ) , hal . HAL_BIT , hal . HAL_IN )
2022-11-25 23:58:26 +01:00
olddOutStates [ port ] = 0
2022-11-21 19:37:43 +01:00
# setup Pwm Output halpins
for port in range ( PwmOutputs ) :
2022-11-25 22:05:54 +01:00
c . newpin ( " PwmOut. {} " . format ( PwmOutPinmap [ port ] ) , hal . HAL_FLOAT , hal . HAL_IN )
2022-11-25 23:58:26 +01:00
oldPwmOutStates [ port ] = 255
2022-11-21 19:37:43 +01:00
# setup Analog Input halpins
for port in range ( AInputs ) :
2022-11-25 22:05:54 +01:00
c . newpin ( " aIn. {} " . format ( AInPinmap [ port ] ) , hal . HAL_FLOAT , hal . HAL_OUT )
2022-11-21 19:37:43 +01:00
# setup Latching Poti halpins
2022-11-25 22:05:54 +01:00
for Poti in range ( LPoti ) :
for Pin in range ( LPotiLatches [ Poti ] [ 1 ] ) :
c . newpin ( " LPoti. {} . {} " . format ( LPotiLatches [ Poti ] [ 0 ] , Pin ) , hal . HAL_BIT , hal . HAL_OUT )
2022-11-21 19:37:43 +01:00
# setup Absolute Encoder Knob halpins
if AbsKnob :
for port in range ( AbsKnobPos ) :
2022-11-25 22:05:54 +01:00
c . newpin ( " AbsKnob. {} " . format ( port ) , hal . HAL_BIT , hal . HAL_OUT )
2022-11-21 12:53:33 +01:00
2023-03-25 14:38:12 +01:00
# setup Digital LED halpins
if DLEDcount > 0 :
for port in range ( DLEDcount ) :
c . newpin ( " DLED. {} " . format ( port ) , hal . HAL_BIT , hal . HAL_IN )
2022-11-21 12:53:33 +01:00
c . ready ( )
2022-11-25 22:05:54 +01:00
#setup Serial connection
arduino = serial . Serial ( connection , 115200 , timeout = 1 , xonxoff = False , rtscts = False , dsrdtr = True )
######## GlobalVariables ########
firstcom = 0
event = time . time ( )
timeout = 9 #send something after max 9 seconds
2023-03-28 18:50:22 +02:00
2022-11-25 00:38:01 +01:00
######## Functions ########
2022-11-21 12:53:33 +01:00
2022-11-25 22:05:54 +01:00
def keepAlive ( event ) :
return event + timeout < time . time ( )
2022-11-21 12:53:33 +01:00
def readinput ( input_str ) :
for i in range ( 50 ) :
if input_str :
string = input_str . decode ( ) # convert the byte string to a unicode string
print ( string )
num = int ( string ) # convert the unicode string to an int
return num
def extract_nbr ( input_str ) :
if input_str is None or input_str == ' ' :
return 0
out_number = ' '
for ele in input_str :
if ele . isdigit ( ) :
out_number + = ele
return int ( out_number )
2022-11-25 23:58:26 +01:00
def managageOutputs ( ) :
2022-11-25 22:05:54 +01:00
for port in range ( PwmOutputs ) :
2022-11-25 23:58:26 +01:00
State = int ( c [ " PwmOut. {} " . format ( PwmOutPinmap [ port ] ) ] )
if oldPwmOutStates [ port ] != State : #check if states have changed
Sig = ' P '
Pin = int ( PwmOutPinmap [ port ] )
command = " {} {} : {} \n " . format ( Sig , Pin , State )
arduino . write ( command . encode ( ) )
if ( Debug ) : print ( " Sending: {} " . format ( command . encode ( ) ) )
oldPwmOutStates [ port ] = State
for port in range ( Outputs ) :
State = int ( c [ " dOut. {} " . format ( OutPinmap [ port ] ) ] )
if olddOutStates [ port ] != State : #check if states have changed
Sig = ' O '
Pin = int ( OutPinmap [ port ] )
command = " {} {} : {} \n " . format ( Sig , Pin , State )
arduino . write ( command . encode ( ) )
if ( Debug ) : print ( " Sending: {} " . format ( command . encode ( ) ) )
olddOutStates [ port ] = State
2022-11-25 22:05:54 +01:00
2023-03-25 14:38:12 +01:00
for port in range ( DLEDcount ) :
State = int ( c [ " DLED. {} " . format ( port ) ] )
Sig = ' D '
Pin = int ( port )
command = " {} {} : {} \n " . format ( Sig , Pin , State )
arduino . write ( command . encode ( ) )
if ( Debug ) : print ( " Sending: {} " . format ( command . encode ( ) ) )
2022-11-21 12:53:33 +01:00
while True :
2022-11-25 22:05:54 +01:00
try :
2022-11-21 12:53:33 +01:00
data = arduino . readline ( ) . decode ( ' utf-8 ' )
2022-11-25 22:05:54 +01:00
if ( Debug ) : print ( " I received: {} " . format ( data ) )
2022-11-21 12:53:33 +01:00
data = data . split ( " : " , 1 )
2022-11-25 22:05:54 +01:00
try :
2022-11-25 00:38:01 +01:00
cmd = data [ 0 ] [ 0 ]
2022-11-25 22:05:54 +01:00
if cmd == " " :
if ( Debug ) : print ( " No Command!: {} . " . format ( cmd ) )
else :
if not data [ 0 ] [ 1 ] :
io = 0
else :
io = extract_nbr ( data [ 0 ] )
value = extract_nbr ( data [ 1 ] )
if value < 0 : value = 0
if cmd == " I " :
2022-11-25 23:58:26 +01:00
firstcom = 1
2022-11-25 22:05:54 +01:00
if value == 1 :
c [ " dIn. {} " . format ( io ) ] = 1
c [ " dIn. {} -invert " . format ( io ) ] = 0
if ( Debug ) : print ( " dIn {} : {} " . format ( io , 1 ) )
2022-11-25 23:58:26 +01:00
2022-11-25 22:05:54 +01:00
if value == 0 :
c [ " dIn. {} " . format ( io ) ] = 0
c [ " dIn. {} -invert " . format ( io ) ] = 1
if ( Debug ) : print ( " dIn {} : {} " . format ( io , 0 ) )
else : pass
elif cmd == " A " :
2022-11-25 23:58:26 +01:00
firstcom = 1
2022-11-25 22:05:54 +01:00
c [ " aIn. {} " . format ( io ) ] = value
if ( Debug ) : print ( " aIn. {} : {} " . format ( io , value ) )
2022-11-26 01:15:46 +01:00
2022-11-25 22:05:54 +01:00
elif cmd == " L " :
2022-11-25 23:58:26 +01:00
firstcom = 1
2022-11-26 01:15:46 +01:00
for Poti in range ( LPoti ) :
if LPotiLatches [ Poti ] [ 0 ] == io :
for Pin in range ( LPotiLatches [ Poti ] [ 1 ] ) :
if Pin == value :
c [ " LPoti. {} . {} " . format ( io , Pin ) ] = 1
if ( Debug ) : print ( " LPoti. {} . {} =1 " . format ( io , Pin ) )
else :
c [ " LPoti. {} . {} " . format ( io , Pin ) ] = 0
if ( Debug ) : print ( " LPoti. {} . {} =0 " . format ( io , Pin ) )
2022-11-25 22:05:54 +01:00
elif cmd == " K " :
2022-11-25 23:58:26 +01:00
firstcom = 1
2022-11-25 22:05:54 +01:00
for port in range ( AbsKnobPos ) :
if port == value :
c [ " AbsKnob. {} " . format ( port ) ] = 1
if ( Debug ) : print ( " AbsKnob. {} : {} " . format ( port , 1 ) )
else :
c [ " AbsKnob. {} " . format ( port ) ] = 0
if ( Debug ) : print ( " AbsKnob. {} : {} " . format ( port , 0 ) )
elif cmd == ' E ' :
2022-11-25 23:58:26 +01:00
arduino . write ( b " E0:0 \n " )
if ( Debug ) : print ( " Sending E0:0 to establish contact " )
2022-11-25 22:05:54 +01:00
else : pass
except : pass
except KeyboardInterrupt :
if ( Debug ) : print ( " Keyboard Interrupted.. BYE " )
exit ( )
except :
if ( Debug ) : print ( " I received garbage " )
arduino . flush ( )
2022-11-25 23:58:26 +01:00
if firstcom == 1 : managageOutputs ( )
2022-11-25 22:05:54 +01:00
if keepAlive ( event ) :
arduino . write ( b " E: \n " )
if ( Debug ) : print ( " keepAlive " )
event = time . time ( )