MeCreator firmware needed please
MeCreator firmware needed please
Hi i didnt like the board that came in it so i installed a Ramps 1.4 and now i cant get the printer to work right. motors move and after a second or so the thing goes to 0 and cant move them back. and cannot move the motors using repetier. so is there any way i can get the mecreator firmware.
my email is gaj_1988@outlook.com
thnk you so much
my email is gaj_1988@outlook.com
thnk you so much
-
- Posts: 1405
- Joined: Fri Feb 06, 2015 1:33 pm
Re: MeCreator firmware needed please
Please check your email.
Re: MeCreator firmware needed please
thanks a lot can i use the same on the sanguinololu board i couldnt figure it out so i put the old board back in but i want to use the full graphic display thanks
-
- Posts: 1405
- Joined: Fri Feb 06, 2015 1:33 pm
Re: MeCreator firmware needed please
Do you mean uploading the same firmware to Sanguinololu board? No, you can't.nukes88 wrote:thanks a lot can i use the same on the sanguinololu board i couldnt figure it out so i put the old board back in but i want to use the full graphic display thanks
Re: MeCreator firmware needed please
can i get the firmwarefor the sanguinololu please to enable the ful bigger lcd all i have to do is remove "//" next to it ?
-
- Posts: 1405
- Joined: Fri Feb 06, 2015 1:33 pm
Re: MeCreator firmware needed please
What type is your LCD?nukes88 wrote:can i get the firmwarefor the sanguinololu please to enable the ful bigger lcd all i have to do is remove "//" next to it ?
Re: MeCreator firmware needed please
not quite sure which one but its the big smartlcd and thank you
-
- Posts: 1405
- Joined: Fri Feb 06, 2015 1:33 pm
Re: MeCreator firmware needed please
It would be better if you leave a photo of the LCD. Usually ,the firmware we use fits LCD 2004.
Re: MeCreator firmware needed please
its the same as the one i attached. but ihave the ramps board and i managed to get the firmware from marlin working good even the lcd butte firmware i got emailed woks fine with the way it is but when uncomment #define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER . it will not compile keps giving me errors and this in only with the firmware i gotfrom geetech. at fist i thought it might be because sanguinololuboard but the samegoes for the ramps with the firmware i got sent
-
- Posts: 1405
- Joined: Fri Feb 06, 2015 1:33 pm
Re: MeCreator firmware needed please
Open "configuration.h",find:
delete "//" of the 5th line.
then find:
Add "//" at the beginning of 3rd line.
After editing the file, save it. Then re-upload the firmware as instruction.
If it shows error like this:
Marlin.ino:44:101: fatal error: U8glib.h:No such file or directory
Cmpliation terminated.
Error compiling.
Obviously, it lacks file "U8glib.h". Because you have not installed the LCD library of u8glib.
So you need to install it:
Download the source code of Marlin:
link: https://github.com/MarlinFirmware/Marlin
Unzip the file, you will find a folder named "U8glib" at Marlin-Release\Marlin-Release\ArduinoAddons\Arduino_1.0.x\libraries.
(I use Arduino1.0.1 to upload the firmware, so I the folder"U8glib" I need to copy is at"Arduino_1.0.x", you should copy the correct folder according to your Arduino version. )
Copy the folder to arduino-1.0.1-windows\arduino-1.0.1\libraries
Code: Select all
// The RepRapDiscount FULL GRAPHIC SmartController (quadratic white PCB)
//http://reprap.org/wiki/RepRapDiscount_Full_Graphic_Smart_Controller
//
// ==> REMEMBER TO INSTALL U8glib toyour ARDUINO library folder: http://code.google.com/p/u8glib/wiki/u8glib
//#defineREPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
then find:
Code: Select all
// The RepRapDiscount Smart Controller(white PCB)
//http://reprap.org/wiki/RepRapDiscount_Smart_Controller
#define REPRAP_DISCOUNT_SMART_CONTROLLER
After editing the file, save it. Then re-upload the firmware as instruction.
If it shows error like this:
Marlin.ino:44:101: fatal error: U8glib.h:No such file or directory
Cmpliation terminated.
Error compiling.
Obviously, it lacks file "U8glib.h". Because you have not installed the LCD library of u8glib.
So you need to install it:
Download the source code of Marlin:
link: https://github.com/MarlinFirmware/Marlin
Unzip the file, you will find a folder named "U8glib" at Marlin-Release\Marlin-Release\ArduinoAddons\Arduino_1.0.x\libraries.
(I use Arduino1.0.1 to upload the firmware, so I the folder"U8glib" I need to copy is at"Arduino_1.0.x", you should copy the correct folder according to your Arduino version. )
Copy the folder to arduino-1.0.1-windows\arduino-1.0.1\libraries
Last edited by zhangxueyou on Mon Jun 08, 2015 9:41 am, edited 1 time in total.