-
This is a fantastic contribution. I have not interrogated the source code in detail but I was wondering if you could comment briefly on whether this syringe pump would be compatible (with the appropriate modifications to the syringe holder) with smaller ID syringes and delivery? I'm interested in delivering a low uL/min of solution for an expeirments using a syring similar to the SGE models. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Thanks! Yes the software is compatible with other syringe sizes. You would need to add a resolution definition for your syringe at the top of the file, and then set the resolution on line 48. The syringe you mentioned above has a 2.3mm inner diameter. You can use this calculator to get the new resolution for that syringe or others by modifying the #define TWO_FIFTY_MICRO 0.0104
const float resolution = TWO_FIFTY_MICRO; Hardware modificationsHardware modifications may include:
Here is an old 10mL syringe design that may be useful to you? It is similar to the picture below but with a smaller syringe. It uses binder clips to hold the syringe in place. |
Beta Was this translation helpful? Give feedback.
Thanks!
Yes the software is compatible with other syringe sizes. You would need to add a resolution definition for your syringe at the top of the file, and then set the resolution on line 48.
syringe-pump/Software/syringeTFT/syringeTFT.ino
Line 12 in 7ec31ee
syringe-pump/Software/syringeTFT/syringeTFT.ino
Line 48 in 7ec31ee
The syringe you mentioned above has a 2.3mm inner diameter. You can use this calculator to get the new resolution for that syringe or others by modifying the
innerDiameter
variable. So your software changes would look somethin…