HICTOP Prusa i3 extrusion motor July 01, 2015 11:14PM |
Registered: 9 years ago Posts: 6 |
Re: HICTOP Prusa i3 extrusion motor July 01, 2015 11:30PM |
Registered: 9 years ago Posts: 9 |
Re: HICTOP Prusa i3 extrusion motor July 01, 2015 11:45PM |
Registered: 9 years ago Posts: 6 |
Quote
Humantelope
Hey I literally bought this printer last week or the week before and had the same exact issue, I went through the motions of hooking the data wire to the x axis connection on the board and manually ran the "x axis" which confirmed the motor was working. Have you done that as well to ensure the motor is fine? If it is working, hook it back up to E0 and then chances are you're running into the same issue I had... firmware, I'm not at home so I don't have my configuration.h file for you but I went around searching and found a marlin firmware posted in github (I don't remember the location sadly) and changed the configuration.h things like baud_rate to 250000 instead of 115200 that it was set to. the steps per mm you'll want to be something like 80,80,2560,105 (I think thats what I remember setting, I believe it was actually 78.402 for X and Y axis steps per mm in all seriousness but the 2560 and 105 I'm pretty confident of). Motherboard model I did 33.
Those were the primary settings I had to change to make it work. There are other things I recommend you look into, such as the lcd screen which I know the one I needed was the discount LCD (I don't remember full name again) model, but definitely try doing those settings to see if you can get it to work. I've had great prints with this except until I got a clogged heat break or whatever its called.
If I remember when I get home I'll try to post my configuration.h for you if you don't report back saying you get it. I'm 99% sure it'll be firmware though as long as your motor works when you plug it into another axis spot on the board (put it in the x axis or y axis are my recommendations).
Re: HICTOP Prusa i3 extrusion motor July 02, 2015 12:24AM |
Registered: 9 years ago Posts: 9 |
Re: HICTOP Prusa i3 extrusion motor July 02, 2015 01:18AM |
Registered: 9 years ago Posts: 6 |
Quote
Humantelope
It'll work at 115200 you just need to make sure the software on your computer is set to use 115200 instead of anything else, and because I'm weird I wanted to make it seem more awesomer so I set it to 250000 From the sounds of it then it may work on e0 now that you switched it back ?
Re: HICTOP Prusa i3 extrusion motor July 16, 2015 02:07AM |
Registered: 9 years ago Posts: 1 |
Re: HICTOP Prusa i3 extrusion motor July 16, 2015 08:55PM |
Registered: 9 years ago Posts: 9 |
// The RepRapDiscount Smart Controller (white PCcool smiley // [reprap.org] #define REPRAP_DISCOUNT_SMART_CONTROLLER // The GADGETS3D G3D LCD/SD Controller (blue PCcool smiley // [reprap.org] //#define G3D_PANEL // The RepRapDiscount FULL GRAPHIC Smart Controller (quadratic white PCcool smiley // [reprap.org] // // ==> REMEMBER TO INSTALL U8glib to your ARDUINO library folder: [code.google.com] //#define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER // The RepRapWorld REPRAPWORLD_KEYPAD v1.1 // [reprapworld.com] //#define REPRAPWORLD_KEYPAD //#define REPRAPWORLD_KEYPAD_MOVE_STEP 10.0 // how much should be moved when a key is pressed, eg 10.0 means 10mm per click //automatic expansion #if defined (REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER) #define DOGLCD #define U8GLIB_ST7920 #define REPRAP_DISCOUNT_SMART_CONTROLLER #endif #if defined(ULTIMAKERCONTROLLER) || defined(REPRAP_DISCOUNT_SMART_CONTROLLER) || defined(G3D_PANEL) #define ULTIPANEL #define NEWPANEL #endif #if defined(REPRAPWORLD_KEYPAD) #define NEWPANEL #define ULTIPANEL #endif //I2C PANELS //#define LCD_I2C_SAINSMART_YWROBOT #ifdef LCD_I2C_SAINSMART_YWROBOT // This uses the LiquidCrystal_I2C library ( [bitbucket.org] ) // Make sure it is placed in the Arduino libraries directory. #define LCD_I2C_TYPE_PCF8575 #define LCD_I2C_ADDRESS 0x27 // I2C Address of the port expander #define NEWPANEL #define ULTIPANEL #endif // PANELOLU2 LCD with status LEDs, separate encoder and click inputs //#define LCD_I2C_PANELOLU2 #ifdef LCD_I2C_PANELOLU2 // This uses the LiquidTWI2 library v1.2.3 or later ( [github.com] ) // Make sure the LiquidTWI2 directory is placed in the Arduino or Sketchbook libraries subdirectory. // (v1.2.3 no longer requires you to define PANELOLU in the LiquidTWI2.h library header file) // Note: The PANELOLU2 encoder click input can either be directly connected to a pin // (if BTN_ENC defined to != -1) or read through I2C (when BTN_ENC == -1). #define LCD_I2C_TYPE_MCP23017 #define LCD_I2C_ADDRESS 0x20 // I2C Address of the port expander #define LCD_USE_I2C_BUZZER //comment out to disable buzzer on LCD #define NEWPANEL #define ULTIPANEL #endif // Panucatt VIKI LCD with status LEDs, integrated click & L/R/U/P buttons, separate encoder inputs //#define LCD_I2C_VIKI #ifdef LCD_I2C_VIKI // This uses the LiquidTWI2 library v1.2.3 or later ( [github.com] ) // Make sure the LiquidTWI2 directory is placed in the Arduino or Sketchbook libraries subdirectory. // Note: The pause/stop/resume LCD button pin should be connected to the Arduino // BTN_ENC pin (or set BTN_ENC to -1 if not used) #define LCD_I2C_TYPE_MCP23017 #define LCD_I2C_ADDRESS 0x20 // I2C Address of the port expander #define LCD_USE_I2C_BUZZER //comment out to disable buzzer on LCD (requires LiquidTWI2 v1.2.3 or later) #define NEWPANEL #define ULTIPANEL #endif #ifdef ULTIPANEL // #define NEWPANEL //enable this if you have a click-encoder panel #define SDSUPPORT #define ULTRA_LCD #ifdef DOGLCD // Change number of lines to match the DOG graphic display #define LCD_WIDTH 20 #define LCD_HEIGHT 5 #else #define LCD_WIDTH 20 #define LCD_HEIGHT 4 #endif #else //no panel but just lcd #ifdef ULTRA_LCD #ifdef DOGLCD // Change number of lines to match the 128x64 graphics display #define LCD_WIDTH 20 #define LCD_HEIGHT 5 #else #define LCD_WIDTH 16 #define LCD_HEIGHT 2 #endif #endif #endif
Re: HICTOP Prusa i3 extrusion motor August 05, 2015 11:56PM |
Registered: 9 years ago Posts: 1 |
Re: HICTOP Prusa i3 extrusion motor August 17, 2015 05:37PM |
Registered: 9 years ago Posts: 1 |
Re: HICTOP Prusa i3 extrusion motor August 30, 2015 05:01PM |
Registered: 9 years ago Posts: 11 |
Re: HICTOP Prusa i3 extrusion motor September 19, 2015 06:53PM |
Registered: 9 years ago Posts: 3 |
Re: HICTOP Prusa i3 extrusion motor September 27, 2015 04:37AM |
Registered: 11 years ago Posts: 114 |
Re: HICTOP Prusa i3 extrusion motor September 27, 2015 04:59AM |
Registered: 9 years ago Posts: 3 |
Re: HICTOP Prusa i3 extrusion motor September 27, 2015 04:28PM |
Registered: 11 years ago Posts: 114 |
Quote
saturn
when you say ladder do you mean each layer is offset in the Y direction, forming "stairs" on your printed object?
mine is doing that and it's driving me insane. seems to randomly screw up the Y axis around 30% on every print... it randomly will JUMP and I can't see why. I figured maybe the extruder was bumping into the print when it was trying to move...
I tried:
- adding a Z-lift of 2mm
- cleaning the rods
- tightening the belts
- re-aligning everything
seems to just randomly "jump" sometimes. my next try is going to be putting a fan on the left side to cool the main board -- maybe it's overheating and sending bunk data to the Z-axis motor? maybe the firmware has a bug?
as for warming, mine is fine in that department.
Re: HICTOP Prusa i3 extrusion motor September 27, 2015 05:04PM |
Registered: 9 years ago Posts: 3 |
Re: HICTOP Prusa i3 extrusion motor September 27, 2015 10:32PM |
Registered: 11 years ago Posts: 114 |
Re: HICTOP Prusa i3 extrusion motor September 29, 2015 04:51PM |
Registered: 9 years ago Posts: 36 |
Re: HICTOP Prusa i3 extrusion motor September 29, 2015 06:13PM |
Registered: 11 years ago Posts: 114 |
Re: HICTOP Prusa i3 extrusion motor September 29, 2015 10:06PM |
Registered: 9 years ago Posts: 36 |
Re: HICTOP Prusa i3 extrusion motor September 30, 2015 12:17AM |
Registered: 11 years ago Posts: 114 |
Re: HICTOP Prusa i3 extrusion motor October 02, 2015 11:15AM |
Registered: 9 years ago Posts: 11 |
Re: HICTOP Prusa i3 extrusion motor October 03, 2015 10:35PM |
Registered: 9 years ago Posts: 36 |
Quote
bob414
Quote
eried
Re: HICTOP Prusa i3 extrusion motor October 04, 2015 01:01AM |
Registered: 9 years ago Posts: 11 |
Re: HICTOP Prusa i3 extrusion motor October 04, 2015 02:15PM |
Registered: 9 years ago Posts: 36 |
Quote
bob414
Glad I could help.
My Z Axis stepper motors do not make a abnormal amount of noise, that normally indicates a bearing problem.. I was getting a rattle from the Z axis screws, that settled down when I modified the bottom of the Z axis rods to stop them from wobbling, That mod is included on this website under HICTOP mod and upgrades.
Quote
My most recent problem, was SD card recognized, but not readable. After checking the wiring 3 times. I found that I did not have the connectors fully seated on the Display board. I was very surprised on how much pressure I had to use to fully seat them. This could also be reasons that some users are having problems with the Display. PS I repair and assemble computers all the time.
Quote
I have only printed PLA. more that 1.5Kg at this time. My major problem with my printer is the two small screws that hold,the Y axis belt carriage to the under bed support. They have come loose twice, even after using locktight on the threads. Still looking for a more permanent fix. Jam nuts, lockwashers or suiperglue are some of the next fixes I will try.
Quote
1, Z-axis limit switch is not easy to calibrate, only a rough adjustment by undoing it's screw mount, needs a calibration screw.
2, No cable guide on the Y-axis going under the bed, I am using a rubber band to keep tension on cable to keep it from kinking and flopping when ;hitting the back of the frame.and Y axis motor.
Re: HICTOP Prusa i3 extrusion motor October 04, 2015 04:33PM |
Registered: 9 years ago Posts: 11 |
Re: HICTOP Prusa i3 extrusion motor December 20, 2015 01:25AM |
Registered: 8 years ago Posts: 2 |
Re: HICTOP Prusa i3 extrusion motor December 20, 2015 11:15PM |
Registered: 9 years ago Posts: 11 |
Re: HICTOP Prusa i3 extrusion motor December 22, 2015 07:58PM |
Registered: 8 years ago Posts: 2 |
Re: HICTOP Prusa i3 extrusion motor December 26, 2015 04:00PM |
Registered: 8 years ago Posts: 14 |
Re: HICTOP Prusa i3 extrusion motor January 09, 2016 08:11AM |
Registered: 8 years ago Posts: 1 |