This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
bdev:multichannel_syringe_pump [2020/11/06 20:20] richard created |
bdev:multichannel_syringe_pump [2021/08/16 22:22] (current) |
||
---|---|---|---|
Line 12: | Line 12: | ||
|{{ : | |{{ : | ||
+ | |||
+ | Then get put an aluminum extrusion for example from Misumi (ie., HFS5-2020-400). | ||
+ | |||
+ | |||
+ | {{ : | ||
+ | |||
+ | |||
+ | After that connect the nema17 and threaded rod (5/16” or M8 threaded rod and shaft coupler) to the igus_slidermount_encoder_TW_04_12_motormount_assy_m8() plate. | ||
+ | |||
+ | Then connect a slider and rail (this used to be designed with Iverntech but seems like this would work too) | ||
+ | |||
+ | |{{ : | ||
+ | |||
+ | |||
+ | Then connect the slider mount, iverntech_pump_slider_plate() and nut coupler, oneml_syringe_stepper_linear_m8nut_coupler() | ||
+ | {{ : | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | |||
+ | |{{ : | ||
+ | |{{ : | ||
+ | |{{ : | ||
+ | |||
+ | Now connect the multichannel_syringeshuttle_clipbracket() and the multichannel_plunger_clamp(). | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | |||
+ | |{{ : | ||
+ | |{{ : | ||
+ | |||
+ | |||
+ | Connect the plunger fastener module | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | |{{ : | ||
+ | |{{ : | ||
+ | |||
+ | |||
+ | Now attach the clamp extrusion connectors that will be used for securing the syringes. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | |||
+ | {{ : | ||
+ | |||
+ | |{{ : | ||
+ | |||
+ | |||
+ | |{{ : | ||
+ | |{{ : | ||
+ | |||
+ | |||
+ | Now mount the syringes | ||
+ | |||
+ | |||
+ | {{ : | ||
+ | |||
+ | |||
+ | |{{ : | ||
+ | |||
+ | Endstop | ||
+ | |||
+ | |||
+ | |{{ : | ||
+ | |{{ : | ||
+ | |||
+ | |||
+ | |||
+ | <code | multistepper_accel_2wireendstop> | ||
+ | #include < | ||
+ | |||
+ | |||
+ | #include < | ||
+ | #include < | ||
+ | #define dirPin 4 | ||
+ | #define stepPin 3 | ||
+ | #define motorInterfaceType 1 | ||
+ | |||
+ | AccelStepper stepper = AccelStepper(motorInterfaceType, | ||
+ | |||
+ | |||
+ | |||
+ | //const float stepsperul = 230; // | ||
+ | //const float stepsperul = 131.53; // | ||
+ | //const float stepsperul = 272.12; // | ||
+ | |||
+ | |||
+ | int enablePin = 5; | ||
+ | int estepsPin = 3; | ||
+ | int directionPin = 4; | ||
+ | int elimitPin = A1; | ||
+ | //int esteps = 1000; | ||
+ | //int esteprate = 500; | ||
+ | //int estepsincrement = 0; | ||
+ | int estepcount = 0; | ||
+ | |||
+ | //float stepsperul = 23; // | ||
+ | float stepsperul = 131.43; | ||
+ | |||
+ | int acc = 30; | ||
+ | String command; | ||
+ | long int currpos; | ||
+ | long int pos; | ||
+ | |||
+ | void setup() { | ||
+ | // put your setup code here, to run once: | ||
+ | stepper.setMaxSpeed(1000*16); | ||
+ | Serial.begin(115200); | ||
+ | pinMode(enablePin, | ||
+ | pinMode(directionPin, | ||
+ | pinMode(estepsPin, | ||
+ | pinMode(elimitPin, | ||
+ | digitalWrite(elimitPin, | ||
+ | digitalWrite(enablePin, | ||
+ | currpos = 0; | ||
+ | stepper.setAcceleration(acc); | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | // put your main code here, to run repeatedly: | ||
+ | | ||
+ | { | ||
+ | char c = Serial.read(); | ||
+ | if (c== ' | ||
+ | { | ||
+ | currpos = parseCommand(command, | ||
+ | command = ""; | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | command +=c; | ||
+ | } | ||
+ | } | ||
+ | | ||
+ | } | ||
+ | |||
+ | long int parseCommand(String com, long int currpos) | ||
+ | { | ||
+ | // | ||
+ | // | ||
+ | |||
+ | //" | ||
+ | String part1 = com.substring(0, | ||
+ | if (part1.equalsIgnoreCase(" | ||
+ | String part2 = com.substring(com.indexOf(" | ||
+ | String part3 = com.substring(com.indexOf(" | ||
+ | String part4 = com.substring(com.indexOf(" | ||
+ | int vpos = part2.toInt(); | ||
+ | pos = vpos * stepsperul; | ||
+ | int vfeed = part3.toInt(); | ||
+ | int feed = vfeed * stepsperul; | ||
+ | //int acc = part4.toInt(); | ||
+ | //int feed = vfeed; | ||
+ | int acc = feed/3; | ||
+ | if ((pos-currpos) < 0) { | ||
+ | feed = feed * -1; | ||
+ | } | ||
+ | moveacc((pos-currpos), | ||
+ | currpos = pos; | ||
+ | } | ||
+ | else if(com.equalsIgnoreCase(" | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | } | ||
+ | else if(com.equalsIgnoreCase(" | ||
+ | | ||
+ | | ||
+ | pos = 0; | ||
+ | } | ||
+ | else if(com.equalsIgnoreCase(" | ||
+ | | ||
+ | | ||
+ | } | ||
+ | | ||
+ | else if(com.equalsIgnoreCase(" | ||
+ | Serial.println(" | ||
+ | } | ||
+ | else { | ||
+ | | ||
+ | | ||
+ | } | ||
+ | | ||
+ | } | ||
+ | |||
+ | |||
+ | void moveacc(long int inc, int spd, int acc){ | ||
+ | // | ||
+ | | ||
+ | | ||
+ | | ||
+ | stepper.setSpeed(spd); | ||
+ | stepper.runSpeed(); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | int homing(int stepsPin, int directionPin, | ||
+ | digitalWrite(directionPin, | ||
+ | int checker = 1; | ||
+ | int cnter = 0; | ||
+ | int stpper = 1; | ||
+ | | ||
+ | checker = digitalRead(limitPin); | ||
+ | if (checker == HIGH){ | ||
+ | cnter = cnter + 1; | ||
+ | } | ||
+ | else { | ||
+ | cnter = 0; | ||
+ | } | ||
+ | if (cnter > 4){ | ||
+ | stpper = 0; | ||
+ | } | ||
+ | digitalWrite(stepsPin, | ||
+ | delayMicroseconds(200); | ||
+ | digitalWrite(stepsPin, | ||
+ | delayMicroseconds(200); | ||
+ | } | ||
+ | | ||
+ | | ||
+ | digitalWrite(stepsPin, | ||
+ | delayMicroseconds(1000); | ||
+ | digitalWrite(stepsPin, | ||
+ | delayMicroseconds(1000); | ||
+ | } | ||
+ | int stepcount = 0; | ||
+ | return stepcount; | ||
+ | } | ||
+ | </ |