lcd dosent work with ramps 1.4
Shop › Forum › Makelangelo Polargraph Art Robot › lcd dosent work with ramps 1.4
- This topic has 16 replies, 6 voices, and was last updated 3 years, 11 months ago by joerandomnumber.
-
AuthorPosts
-
2019-08-06 at 10:08 #25389omarbParticipant
Hello everybody i’ve just built my first polograph machine followign this instructable https://www.instructables.com/id/Polargraph-Drawbot/ using the ramps 1.4 i’ve just uploaded the firmware to the board and i can controll it with the makelangelo software but the problem is that when i plug the lcd it dosen’t work i just get a blue screen and i’ve uploaded the same firrware as the instructable i have a reprap 12864 lcd does anyobdy knows how i can solve this problem thanks and i’m a beginner on this like said i’ve just finished building it today
3i2019-08-06 at 10:09 #25451DanKeymasterThe instructable firmware instructions are probably out of date. Try this:
https://mcr.dozuki.com/Guide/How+to+update+Makelangelo+firmware/4?lang=en
2019-08-06 at 11:47 #25459omarbParticipanti did that, with no luck lcd still blank
2019-10-03 at 10:22 #27465DanKeymasterAccording to this thread https://forum.arduino.cc/index.php?topic=556921.new#new
Everything should be the same but one of the connector is physically rotated 180 degrees.
Does that make sense? It could just be you have a cable backwards.2020-02-10 at 13:47 #27874Daniel91ParticipantSolved !!! Thats how it works
In BOARD RAMPS .H changing
// LCD pins
#ifdef LCD_IS_128X64
// 128×64 full graphics controller
#define BEEPER 37//#define LCD_PINS_RS 19
//#define LCD_PINS_ENABLE 42
//#define LCD_PINS_D4 18
// these alternate pins might help – see https://www.marginallyclever.com/forums/topic/using-reprap-kit-from-amazon-ramps-1-6-lcd-display/#post-22131
#define LCD_PINS_RS 16
#define LCD_PINS_ENABLE 17
#define LCD_PINS_D4 23#define LCD_PINS_D5 25
#define LCD_PINS_D6 27
#define LCD_PINS_D7 29// Encoder rotation values
#define BTN_EN1 31
#define BTN_EN2 33
#define BTN_ENC 35// SD card settings
#define SDPOWER -1
#define SDSS 53
#define SDCARDDETECT 49>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
In CONFIGURE.H changing
// LCD panels supported
//——————————————————————————#define HAS_LCD // if you have an LCD panel
#define HAS_SD // if you have SD card support on your LCD panel (must be on panel?)// only uncomment one of these options
#define LCD_IS_128X64 // reprapdiscount Full Graphic Smart LCD Controller
//#define LCD_IS_SMART // reprapdiscount Smart LCD Controller (including XXL model)2020-02-10 at 13:51 #27877DanKeymasterNice!
I have added your pin number changes to makelangelo-firmware dev branch. Can you confirm I got it right?
Thanks!
2020-07-23 at 10:34 #28825akhileshParticipantThanks a lot… This solved my problem with Mega+RAMPS &Full Graphic controller
2021-01-02 at 13:27 #29168joerandomnumberParticipantI have modified code to use interrupts for 12864 LCD and RAMPS 1.4. Encoder works nicely now. How do I submit it for a PR so you can review it? I can’t push a new branch to the github repo.
2021-01-02 at 13:28 #29172DanKeymasterdid you branch from the main repository? You should be able to submit a PR with either github desktop or through the github website. I haven’t contributed to many other projects so I’m not confident enough to guide you. Come to our Discord if you need more help or to chat live about development. https://www.marginallyclever.com/channels/
2021-01-02 at 13:43 #29174Tylor KoenigsfeldParticipantWhich LCD are you using? When I turn my dial, nothing updates on the screen. I have to mess with it for a couple minutes for it to finally move a little bit. Also It would seem the SD card pins are incorrect as well for my LCD. I can detect my SD card using a different arduino program with the following code, im not sure how to adopt it for makelangelo.
const int chipSelect = 53; #include <SD.h> Sd2Card card; SdVolume volume; SdFile root; void setup() { Serial.begin(115200); Serial.print("\nInitializing SD card..."); pinMode(53, OUTPUT); pinMode(48, OUTPUT); digitalWrite(48,HIGH); pinMode(SPI_MISO_PIN, INPUT); pinMode(SPI_MOSI_PIN, OUTPUT); pinMode(SPI_SCK_PIN, OUTPUT); digitalWrite(SPI_MOSI_PIN,LOW); digitalWrite(SPI_SCK_PIN,LOW); digitalWrite(53,LOW); delay(1); SD.begin(53); } void loop () { if (!card.init(SPI_FULL_SPEED, chipSelect)) { Serial.println("initialization failed. Things to check:"); Serial.println("* is a card is inserted?"); Serial.println("* Is your wiring correct?"); Serial.println("* did you change the chipSelect pin to match your shield or module?"); return; } else { Serial.println("Wiring is correct and a card is present."); } // print the type of card Serial.print("\nCard type: "); switch(card.type()) { case SD_CARD_TYPE_SD1: Serial.println("SD1"); break; case SD_CARD_TYPE_SD2: Serial.println("SD2"); break; case SD_CARD_TYPE_SDHC: Serial.println("SDHC"); break; default: Serial.println("Unknown"); } // Now we will try to open the 'volume'/'partition' - it should be FAT16 or FAT32 if (!volume.init(card)) { Serial.println("Could not find FAT16/FAT32 partition.\nMake sure you've formatted the card"); return; } // print the type and size of the first FAT-type volume long volumesize; Serial.print("\nVolume type is FAT"); Serial.println(volume.fatType(), DEC); Serial.println(); volumesize = volume.blocksPerCluster(); // clusters are collections of blocks volumesize *= volume.clusterCount(); // we'll have a lot of clusters volumesize *= 512; // SD card blocks are always 512 bytes Serial.print("Volume size (bytes): "); Serial.println(volumesize); Serial.print("Volume size (Kbytes): "); volumesize /= 1024; Serial.println(volumesize); Serial.print("Volume size (Mbytes): "); volumesize /= 1024; Serial.println(volumesize); Serial.println("\nFiles found on the card (name, date and size in bytes): "); root.openRoot(volume); // list all files in the card with date and size root.ls(LS_R | LS_DATE | LS_SIZE); delay (3000); }
2021-01-02 at 14:09 #29177DanKeymasterFrom the code you posted it looks like chip select is pin 53 (matches board_ramps.h) and sd card detect is 48 (board_ramps.h has 49 as the default). Look for
#if LCD_TYPE == LCD_IS_128X64
in the code. I don’t have a 128×64 screen so I can’t test it locally.
At the top of your code there’s an “const int chipSelect = 53;” and later the number 53 is used many times instead of the word chipSelect, which is the point of having chipSelect. in I would use a
#define CHIP_SELECT 53
and then use the world CHIP_SELECT instead of ’53’ where appropriate. The pre-processing step of the compiler will replace the word with the equivalent number. it’s probably better than ‘const int’ because a const int might take up some ram if the compiler is dumb, and ram in an arduino is in short supply. also if it actually takes up ram then the firmware has to look up that number every time it is used, which is slower than having the number hard coded on hand ready to go.
48 should have been been done the same way. The point of defines like that is so that only one place has to be changed to update all the code.
2021-01-02 at 16:31 #29178joerandomnumberParticipantI know how to use git, but not really familiar with github. That said, I found instructions on stackoverflow about how to use github. Seems they want me to make a forked repo instead of just branching in your repo. I believe the pull request has been made. Here’s the steps I found…
- click fork button on original github project page
- clone your forked repository instead original
- push to it
- press Pull Requests button on your repository
- create it
- wait for original author to accept it
I had started from your Dec 23 commit with hash ca06a9ca702, but the repo was updated today, so I had to merge my changes into that. A fix for the “print from file” menu that I made today (lcd_dirty flag usage) that is unrelated to the encoder interrupts unfortunately got committed with it when I merged the code. The commit message explains what I did, and I’ll quote it below too.
Implement interrupts for 12864 LCD encoder with RAMPS 1.4 configuration
A configuration item named USING_12864_WITH_ENCODER_INTERRUPTS
was added to the board_ramps.h include file to enable interrupt usage.These changes require adding a jumper from D33 to D18, and one from
D31 to D19. These can be done from the display connector to pins on
the RAMPS 1.4 board. I cut a female jumper cable in half, soldered
the wire to the display adapter, and used the female end to attach to
the correct pin on the RAMPS 1.4 board.D33 and D31 will still be set to inputs and receive the signal, but
they are not used. Interrupts are enabled for D18 and D19, their
pull-ups are enabled, and the signal is read from the new pins.Code was written to process the interrupts and handle menus. Turning
the knob quicker will increment float and long values quicker.The button press was not moved to an interrupt. It still must be held
sufficiently long for the polling code to recognize the button press.2021-01-02 at 16:42 #29179joerandomnumberParticipantTylor, I’m using a 12864 LCD and RAMPS 1.4 and ran into the same issue where the knob/menus were unusable. So the first thing I did was fix that so I could explore the menus.
I have these settings to get the display to work (obviously your display already works too):
#define LCD_TYPE LCD_IS_128X64
#define MOTHERBOARD BOARD_RAMPS
#define LCD_PINS_RS 16
#define LCD_PINS_ENABLE 17
#define LCD_PINS_D4 23And then I jumpered pins 33 and 31 to inputs that have interrupts (18 and 19) and modified to the code to work with interrupts.
My SD on the 12864 worked, but there was an issue where it wouldn’t display the file names. I accidentally submitted that fix with the interrupt code PR.
2021-01-02 at 19:15 #29180Tylor KoenigsfeldParticipantJoe,
I did the hardware bypass and got pins 33 and 31 mapped to 18 and 19. I changed my code to say the following
// Encoder rotation values #define BTN_EN1 19 #define BTN_EN2 18 #define BTN_ENC 35
Is there something else you modified in the code? My dials and buttons seem to work about as badly as before. Thanks for the reply.
2021-01-02 at 20:11 #29181joerandomnumberParticipantYes, the “modified to the code to work with interrupts” requires some changes that would be a bit extensive to list here… and there some jumpers that would be needed too. Dan is concerned about using the interrupts and what affect that could have on motor control. I believe I could point you to the github fork I made, but probably worth waiting for Dan to look it over first since he knows the code base.
2021-01-03 at 15:11 #29184DanKeymasterI like (and made a few comments on) your PR 🙂
2021-01-03 at 16:20 #29185joerandomnumberParticipantProvided some responses in the PR, and put a picture to show the jumpers I had to do. Let me know your thoughts about the stepper motor and servo verse interrupts, and if something different is warranted (e.g. disabling the knob interrupts during time critical sections).
2021-01-06 at 17:06 #29199joerandomnumberParticipantDan, pushed changes to use abs() when turning the knob quickly per your PR comment. Also fixed some code that could overwrite and corrupt memory, made long M117 messages wrap on the 128×64 display so they can be read, and fixed a display location calculation error that made the 128×64’s left most column not get used. Those changes are pushed to my fork in github and can be viewed in the PR.
-
AuthorPosts
- You must be logged in to reply to this topic.