DIY filament pelletizing machine

DIY filament pelletizing machine

thingiverse

PCBA from $0(Free Setup,Free Stencil),Get Coupons Here:https://jlcpcb.com/IYB Hello friends in this video I have made a 3D printing filament pelletizing machine. This machine cut small small pallet of filaments, a 35mm hole saw cutter is connected with high speed motor A stepper motor is used to feed the filament to the cutter I also used one potentiometer to control the feed rate of filament. this will decide the size of pallets. High feed rate equals to big pallets size and small feed rate is equal to small pallet size. https://youtu.be/Sg2xJwojsRg ARDUINO CODE # include "L298N_MotorDriver.h" L298N_MotorDriver motor(5, 7, 8); int DIR = A0; int STEP = A1; int sensorPin = A7; int val = 0; void setup() { motor.setSpeed(255); motor.setDirection(true); pinMode(STEP, OUTPUT); pinMode(DIR, OUTPUT); digitalWrite(DIR, HIGH); Serial.begin(9600); } void loop() { val = analogRead(sensorPin); if (val < 1000) { motor.enable(); digitalWrite(STEP, HIGH); delayMicroseconds(val); digitalWrite(STEP, LOW); delayMicroseconds(val); } else { motor.disable(); } }

Download Model from thingiverse

With this file you will be able to print DIY filament pelletizing machine with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on DIY filament pelletizing machine.