Welcome! Log In Create A New Profile

Advanced

SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.

Posted by jasper2991 
SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
August 23, 2013 08:33AM
I finished building my printer and want to start printing while i am doing something else.
I was hopping to print without my laptop connected to the printer, and sins i got a smartcontroller i thought i could do this by printing from SD.

setup:
Marlin1.0.0
RAMPS 1.4
Smart controller from Reprapdiscount (bought about 4 months ago)

when i insert the 4Gig card i got with the controller it displays "card inserted" BUT when i look in the menu it says "no card".
I have been looking around for a solution, but have not found one until now.
I notesed that when i connect to the printer with pronterface it comes up with the following message "echo: SD init fail"
I am using the short ribbon cables,
the SD came with the controller
I am using .g insead of .gcode (dosnt matter, it dosnt even recognize the folders.)
atemts to acses the sd with pronterface faild. again "echo: SD init fail"
I checked the pins.h (i copied the part for ramps and added it in the post.)
I tried anothe SD (2Gig) and this gave the same result

Please help!



****************************************************************************************
* Arduino Mega pin assignment
*
****************************************************************************************/
#if MOTHERBOARD == 3 || MOTHERBOARD == 33 || MOTHERBOARD == 34
#define KNOWN_BOARD 1

//////////////////FIX THIS//////////////
#ifndef __AVR_ATmega1280__
 #ifndef __AVR_ATmega2560__
 #error Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu.
 #endif
#endif

// uncomment one of the following lines for RAMPS v1.3 or v1.0, comment both for v1.2 or 1.1
#define RAMPS_V_1_3
// #define RAMPS_V_1_0

#if MOTHERBOARD == 33 || MOTHERBOARD == 34

#define X_STEP_PIN         54
#define X_DIR_PIN          55
#define X_ENABLE_PIN       38
#define X_MIN_PIN           3
#define X_MAX_PIN           2

#define Y_STEP_PIN         60
#define Y_DIR_PIN          61
#define Y_ENABLE_PIN       56
#define Y_MIN_PIN          14
#define Y_MAX_PIN          15

#define Z_STEP_PIN         46
#define Z_DIR_PIN          48
#define Z_ENABLE_PIN       62
#define Z_MIN_PIN          18
#define Z_MAX_PIN          19

#define Z2_STEP_PIN        36
#define Z2_DIR_PIN         34
#define Z2_ENABLE_PIN      30

#define E0_STEP_PIN        26
#define E0_DIR_PIN         28
#define E0_ENABLE_PIN      24

#define E1_STEP_PIN        36
#define E1_DIR_PIN         34
#define E1_ENABLE_PIN      30

#define SDPOWER            -1
#define SDSS               53
#define LED_PIN            13

#if MOTHERBOARD == 33
#define FAN_PIN            9 // (Sprinter config)
#else
#define FAN_PIN            4 // IO pin. Buffer needed
#endif
#define PS_ON_PIN          12

#ifdef REPRAP_DISCOUNT_SMART_CONTROLLER
#define KILL_PIN           41
#else
#define KILL_PIN           -1
#endif

#define HEATER_0_PIN       10   // EXTRUDER 1
#if MOTHERBOARD == 33
#define HEATER_1_PIN       -1
#else
#define HEATER_1_PIN       9    // EXTRUDER 2 (FAN On Sprinter)
#endif
#define HEATER_2_PIN       -1   
#define TEMP_0_PIN         13   // ANALOG NUMBERING
#define TEMP_1_PIN         15   // ANALOG NUMBERING
#define TEMP_2_PIN         -1   // ANALOG NUMBERING
#define HEATER_BED_PIN     8    // BED
#define TEMP_BED_PIN       14   // ANALOG NUMBERING

#ifdef ULTRA_LCD

  #ifdef NEWPANEL
     //encoder rotation values
    #define encrot0 0
    #define encrot1 2
    #define encrot2 3
    #define encrot3 1

    #define BLEN_A 0
    #define BLEN_B 1
    #define BLEN_C 2

    #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
    
    #ifdef REPRAP_DISCOUNT_SMART_CONTROLLER
      #define BEEPER 37

      #define BTN_EN1 31
      #define BTN_EN2 33
      #define BTN_ENC 35

      #define SDCARDDETECT 49
    #else
      //arduino pin which triggers an piezzo beeper
      #define BEEPER 33	 // Beeper on AUX-4

      //buttons are directly attached using AUX-2
      #define BTN_EN1 37
      #define BTN_EN2 35
      #define BTN_ENC 31  //the click

      #define SDCARDDETECT -1  // Ramps does not use this port
    #endif

  #else //old style panel with shift register
    //arduino pin witch triggers an piezzo beeper
    #define BEEPER 33		No Beeper added

    //buttons are attached to a shift register
	// Not wired this yet
    //#define SHIFT_CLK 38
    //#define SHIFT_LD 42
    //#define SHIFT_OUT 40
    //#define SHIFT_EN 17
    
    #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 encrot0 0
    #define encrot1 2
    #define encrot2 3
    #define encrot3 1

    
    //bits in the shift register that carry the buttons for:
    // left up center down right red
    #define BL_LE 7
    #define BL_UP 6
    #define BL_MI 5
    #define BL_DW 4
    #define BL_RI 3
    #define BL_ST 2

    #define BLEN_B 1
    #define BLEN_A 0
  #endif 
#endif //ULTRA_LCD

#else // RAMPS_V_1_1 or RAMPS_V_1_2 as default (MOTHERBOARD == 3)

#define X_STEP_PIN         26
#define X_DIR_PIN          28
#define X_ENABLE_PIN       24
#define X_MIN_PIN           3
#define X_MAX_PIN          -1    //2

#define Y_STEP_PIN         38
#define Y_DIR_PIN          40
#define Y_ENABLE_PIN       36
#define Y_MIN_PIN          16
#define Y_MAX_PIN          -1    //17

#define Z_STEP_PIN         44
#define Z_DIR_PIN          46
#define Z_ENABLE_PIN       42
#define Z_MIN_PIN          18
#define Z_MAX_PIN          -1    //19

#define E0_STEP_PIN         32
#define E0_DIR_PIN          34
#define E0_ENABLE_PIN       30

#define SDPOWER            48
#define SDSS               53
#define LED_PIN            13
#define PS_ON_PIN          -1
#define KILL_PIN           -1

#ifdef RAMPS_V_1_0 // RAMPS_V_1_0
  #define HEATER_0_PIN     12    // RAMPS 1.0
  #define HEATER_BED_PIN   -1    // RAMPS 1.0
  #define FAN_PIN          11    // RAMPS 1.0
#else // RAMPS_V_1_1 or RAMPS_V_1_2
  #define HEATER_0_PIN     10    // RAMPS 1.1
  #define HEATER_BED_PIN    8    // RAMPS 1.1
  #define FAN_PIN           9    // RAMPS 1.1
#endif
#define HEATER_1_PIN        -1
#define HEATER_2_PIN        -1
#define TEMP_0_PIN          2    // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!!
#define TEMP_1_PIN          -1   
#define TEMP_2_PIN          -1   
#define TEMP_BED_PIN        1    // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!!
#endif// MOTHERBOARD == 33 || MOTHERBOARD == 34

// SPI for Max6675 Thermocouple 

#ifndef SDSUPPORT
// these pins are defined in the SD library if building with SD support  
  #define MAX_SCK_PIN          52
  #define MAX_MISO_PIN         50
  #define MAX_MOSI_PIN         51
  #define MAX6675_SS       53
#else
  #define MAX6675_SS       49
#endif

#endif//MOTHERBOARD == 3 || MOTHERBOARD == 33 || MOTHERBOARD == 34

Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
August 25, 2013 10:20AM
problem solved.

i altered the pin.h
i don't know what the exact problem was,
i moved #ifndef sdsuport up

current pin.h (partially)
****************************************************************************************
* Arduino Mega pin assignment
*
****************************************************************************************/
#if MOTHERBOARD == 3 || MOTHERBOARD == 33 || MOTHERBOARD == 34
#define KNOWN_BOARD 1

//////////////////FIX THIS//////////////
#ifndef __AVR_ATmega1280__
 #ifndef __AVR_ATmega2560__
 #error Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu.
 #endif
#endif

// uncomment one of the following lines for RAMPS v1.3 or v1.0, comment both for v1.2 or 1.1
#define RAMPS_V_1_3
// #define RAMPS_V_1_0

#if MOTHERBOARD == 33 || MOTHERBOARD == 34

#define X_STEP_PIN         54
#define X_DIR_PIN          55
#define X_ENABLE_PIN       38
#define X_MIN_PIN           3
#define X_MAX_PIN           2

#define Y_STEP_PIN         60
#define Y_DIR_PIN          61
#define Y_ENABLE_PIN       56
#define Y_MIN_PIN          14
#define Y_MAX_PIN          15

#define Z_STEP_PIN         46
#define Z_DIR_PIN          48
#define Z_ENABLE_PIN       62
#define Z_MIN_PIN          18
#define Z_MAX_PIN          19

#define Z2_STEP_PIN        36
#define Z2_DIR_PIN         34
#define Z2_ENABLE_PIN      30

#define E0_STEP_PIN        26
#define E0_DIR_PIN         28
#define E0_ENABLE_PIN      24

#define E1_STEP_PIN        36
#define E1_DIR_PIN         34
#define E1_ENABLE_PIN      30

#define SDPOWER            -1
#define SDSS               53
#define LED_PIN            13

#if MOTHERBOARD == 33
#define FAN_PIN            9 // (Sprinter config)
#else
#define FAN_PIN            4 // IO pin. Buffer needed
#endif
#define PS_ON_PIN          12

#ifdef REPRAP_DISCOUNT_SMART_CONTROLLER
#define KILL_PIN           41
#else
#define KILL_PIN           -1
#endif

#ifndef SDSUPPORT
// these pins are defined in the SD library if building with SD support  
  #define MAX_SCK_PIN          52
  #define MAX_MISO_PIN         50
  #define MAX_MOSI_PIN         51
  #define MAX6675_SS       53
#else
  #define MAX6675_SS       49
#endif


#define HEATER_0_PIN       10   // EXTRUDER 1
#if MOTHERBOARD == 33
#define HEATER_1_PIN       -1
#else
#define HEATER_1_PIN       9    // EXTRUDER 2 (FAN On Sprinter)
#endif
#define HEATER_2_PIN       -1   
#define TEMP_0_PIN         13   // ANALOG NUMBERING
#define TEMP_1_PIN         15   // ANALOG NUMBERING
#define TEMP_2_PIN         -1   // ANALOG NUMBERING
#define HEATER_BED_PIN     8    // BED
#define TEMP_BED_PIN       14   // ANALOG NUMBERING

#ifdef ULTRA_LCD

  #ifdef NEWPANEL
     //encoder rotation values
    #define encrot0 0
    #define encrot1 2
    #define encrot2 3
    #define encrot3 1

    #define BLEN_A 0
    #define BLEN_B 1
    #define BLEN_C 2

    #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
    
    #ifdef REPRAP_DISCOUNT_SMART_CONTROLLER
      #define BEEPER 37

      #define BTN_EN1 31
      #define BTN_EN2 33
      #define BTN_ENC 35

      #define SDCARDDETECT 49
    #else
      //arduino pin which triggers an piezzo beeper
      #define BEEPER 33	 // Beeper on AUX-4

      //buttons are directly attached using AUX-2
      #define BTN_EN1 37
      #define BTN_EN2 35
      #define BTN_ENC 31  //the click

      #define SDCARDDETECT -1  // Ramps does not use this port
    #endif

  #else //old style panel with shift register
    //arduino pin witch triggers an piezzo beeper
    #define BEEPER 33		No Beeper added

    //buttons are attached to a shift register
	// Not wired this yet
    //#define SHIFT_CLK 38
    //#define SHIFT_LD 42
    //#define SHIFT_OUT 40
    //#define SHIFT_EN 17
    
    #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 encrot0 0
    #define encrot1 2
    #define encrot2 3
    #define encrot3 1

    
    //bits in the shift register that carry the buttons for:
    // left up center down right red
    #define BL_LE 7
    #define BL_UP 6
    #define BL_MI 5
    #define BL_DW 4
    #define BL_RI 3
    #define BL_ST 2

    #define BLEN_B 1
    #define BLEN_A 0
  #endif 
#endif //ULTRA_LCD

#else // RAMPS_V_1_1 or RAMPS_V_1_2 as default (MOTHERBOARD == 3)

#define X_STEP_PIN         26
#define X_DIR_PIN          28
#define X_ENABLE_PIN       24
#define X_MIN_PIN           3
#define X_MAX_PIN          -1    //2

#define Y_STEP_PIN         38
#define Y_DIR_PIN          40
#define Y_ENABLE_PIN       36
#define Y_MIN_PIN          16
#define Y_MAX_PIN          -1    //17

#define Z_STEP_PIN         44
#define Z_DIR_PIN          46
#define Z_ENABLE_PIN       42
#define Z_MIN_PIN          18
#define Z_MAX_PIN          -1    //19

#define E0_STEP_PIN         32
#define E0_DIR_PIN          34
#define E0_ENABLE_PIN       30

#define SDPOWER            48
#define SDSS               53
#define LED_PIN            13
#define PS_ON_PIN          -1
#define KILL_PIN           -1

#ifdef RAMPS_V_1_0 // RAMPS_V_1_0
  #define HEATER_0_PIN     12    // RAMPS 1.0
  #define HEATER_BED_PIN   -1    // RAMPS 1.0
  #define FAN_PIN          11    // RAMPS 1.0
#else // RAMPS_V_1_1 or RAMPS_V_1_2
  #define HEATER_0_PIN     10    // RAMPS 1.1
  #define HEATER_BED_PIN    8    // RAMPS 1.1
  #define FAN_PIN           9    // RAMPS 1.1
#endif
#define HEATER_1_PIN        -1
#define HEATER_2_PIN        -1
#define TEMP_0_PIN          2    // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!!
#define TEMP_1_PIN          -1   
#define TEMP_2_PIN          -1   
#define TEMP_BED_PIN        1    // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!!
#endif// MOTHERBOARD == 33 || MOTHERBOARD == 34

// SPI for Max6675 Thermocouple 


#endif//MOTHERBOARD == 3 || MOTHERBOARD == 33 || MOTHERBOARD == 34
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
August 29, 2013 06:16AM
after a few days fine printing from SD it stopped reading the cards again.

I powered up my printer this morning and it wont read the card anymore.

i am really starting to think there might be somthing wrong with the smart controller or my ramps.
HELP?!
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
September 22, 2014 07:18PM
Hello guys

I've recently built my Prusa i3 with a RAMPS 1.4 board from SainSmart, and bought a RepRap Discount FullGraphic LCD with SDCard reader.
As many of you, after spending countless hours of googling and searching in forums for solutions to get my machine to read the files on the SD card I think I have finally found one solution:

In Marlin firmware, go to SDFatConfig.h and in the 74th line:

#define SPI_SD_INIT_RATE 5

Change 5 for 6 like so:

#define SPI_SD_INIT_RATE 6

After doing that my printer read .gcode files within folders with names longer than 8 characters from my 4Gb SD Card (Yes I have read in several other posts that it wont work but it did...)

I am no coder whatsoever, I have found this by trial and error in the past few days

I am sure that this wont work for everybody, but I will be happy if this can help someone.
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
October 13, 2014 11:40PM
Also you should use less than 2gb card. Formatted with FAT16
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
October 14, 2014 01:10PM
Im using a 4gig card without issues just FYI...
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
December 02, 2014 01:03PM
I have an 8gp scandisk ultra, and it works fine in one of my ramps but not in others, also have 4gb scandisk that doesnot work anywhere, had a 512mb that rarely works, is there a certain brand that works better or what all I have is scandisk... ramps 1.4 marlin 1
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
December 28, 2014 10:26AM
Hi, I've similar problem with my 3D Printer. I bought cheap arduino mega 2560 clone and mount into printer. Flasching with using newest marlin without any problems. I'm using blue PCB G3D LCD Panel and when I put SD Card I've got a message "card insertet", but when I entered to menu - "no SD card" sad smiley(
How to solve this problem? Earlier I had oryginal Arduino mega 2560 and everything was ok.
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
January 17, 2015 03:49AM
ITA:
Ho avuto lo stesso problema "echo: SD init fail" dopo tre giorni nel tentativo di trovare la giusta configurazione con Marlin...
ho RISOLTO accorciando il cavo (della SD) di collegamento della piattina che sta sopra la RAMPS allo schermo LCD :-)

ENG:
I had the same problem "echo: SD init fail" after three days in an attempt to find the right configuration with Marlin ...
I SOLVED shortening the cable (SD) connecting the strap that is over the RAMPS the LCD screen :-)
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
January 22, 2015 12:05PM
Have you tried the solution I have posted before?
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
March 15, 2015 02:11PM
hello
i've had the same problem , it xas just teconnection of the lcd wich was uncorrect
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
March 16, 2015 05:36AM
Hello,

my SD Card now work. The solution was the hardware from Sainsmart.
There was no +5V on the regolatur for the 3.3V on the LCD.
I solder a +5V bridge to the regulator, and now it works perfect.

Kind Regards
Peik



Die Lösung...

und es lag doch an der Hardware ;-) Ok wer sainsmart kauft muss damit rechnen.
Es ist tatsächlich so gewesen das der SD Karten Slot keine 3.3V erhalten hat.
Der Hammer ist aber bei der Leiterbahn für den Spannungswandler 5-->3.3V kamen keine 5V an.
Habe also eine Brücke vom LCD PIN 2 dort zum Regler (siehe Bild) gelegt.

Und siehe da, Karte erkannt.
Jetzt schnell ein Druck gemacht. Der ging aber völlig in die Hose, der Drucker machte seltsame Sachen.
Habe herausgefunden das meine SD Karte wohl zu langsam war. Na egal jetzt steckt eine 8 !! GB FAT32 SD Karte
drin und der Drucker rennt wie verrückt.

D A N K E
Peik


_________________________________________________________________________________________________
Bevor ich hier eine Frage stelle, habe ich hoffentlich gründlich recherchiert. Grundsätzlich versuche ich selbst Lösungen zu finden, nur manchmal bekomme ich es nicht hin und noch mehr graue Haare stehen mir nicht. Also seht es mir nach, wenn ich dann doch mal eine Frage stelle und über jede einzelne Antwort freue und bedanke ich mich hier nochmals.
Attachments:
open | download - Unbenannt.jpg (55 KB)
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
March 29, 2015 01:09PM
I know it's an old topic but I just ran into this problem too. Card inserted but no sd card message. I tried Neo_999's solution and it didn't work. I checked for the voltage as kwims suggested and it's OK. I switched cards from 32gig to 2gig and the problem remains.
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
March 31, 2015 10:25AM
Hi

I was about to reopen this old thread too.

I tried an old, old 16MB SD (SDC-16M) card It didn't work. Even setting SDSLOW in configuration.h

I've just bought a SDHC card which (now) works.

Problem is - Its an 8GB card - I had to partition it down to 2GB and format it as FAT. (FAT16)

It works but I'm a bit galled at throwing away 6GB*. The cardreader wouldn't recognize it as FAT32. I couldn't format FAT16 as an 8GB.

I'm curious how Floyd and mgooch above (and anyone else please) got their 4GB & 8GB's to work.

Did you FAT32? or find a way to FAT16 a bigger partition than 2GB? Or is there another way?

Mine is the RepRapDiscount FULL GRAPHIC Smart Controller

Answers please, computer wizzes.


* - I probably won't be doing many prints bigger than 2GB's worth - but I paid for that memory and I want it!
Solved using Partition Table Type "msdos"
August 19, 2015 06:31AM
I was receiving the "No SD Card" error as well, despite having seen the "Card Inserted" message first on the main screen. The issue for me was the partition table type on my SD card (not the partition type). I use linux and a program called Gparted to format disks and thumbdrives. In Gparted if you delete all the partitions then go to "Device -> Create Partition Table" there are various partition table types to select from, and the only one that this LCD panel card reader can read is the "msdos" partition table type. After I created the partition table using "msdos" partition table type, I was able to create a FAT32 partition that was almost 16GB large, and it works fine. The LCD panel now recognizes my SD card and can print from the card as well.
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
December 15, 2015 06:39AM
Hello neo 999, i just tried the solution you proposed but nothing happened..
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
January 04, 2016 11:06AM
I have faced with similar problem too. In my case the SDcard works overall.
But...
If printer is switched on while SDcard is in the slot - it works: SDcard is visible and can be used.
If I insert the card into powered printer, I see message "Card inserted", but menu claims that "No SD card" and Pronterfece printed "echo: SD init fail" in the console. If after that I send "M21" (Init SDcard) command then I get "echo: SD init ok" and card content appears in the menu of LCD controller. So, the only first init just after card insertion is failed. I assume that there is not sufficient delay somewhere. But where?

PS Tried Marlin 1.0.0 and 1.1.0-RC2 - the behavior is the same.
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
February 15, 2016 11:14PM
Official SD Card formatting tool

I was reading this post about using SD cards in other applications. This points to a tool which can format an SD card in a good format for Arduino.

I formatted a 32 Gig card and plugged it into my PRUSA i3, reads and prints no problems.

This seems like the easiest way. I hate fiddling with firmware unless I digest the code first, a definite time sink!
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
October 16, 2016 01:08PM
[www.arduino.cc]
I formatted SD by Window OS by select SD Drive and right click menu Format... and set to FAT. It Work OK now.
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
January 08, 2017 09:29PM
I formatted my 4GB in FAT32 it is working fine now. controller does not recognize NTFS.
Re: SD card problems, Marlin+ramps1.4+reprapdiscount smartcontroller.
March 13, 2017 03:38AM
I have the same problem after moving my electronics inside my kossel (=directly underneath the heated bed) the elctronics are protected from the heat by a case I printed, but the cables going to the display can come in contact with the heat. It worked fine for some prints, but the last two prints needed me to fiddle the cables and the sdcard around 10 minutes until it recognized the card. those were around 6h prints and they didn't stop like they would if you pulled out the card mid-print, so I guess the problem is not in connection but in initiation. don't know yet, just wanted to contribute if this might help someone.
Sorry, only registered users may post in this forum.

Click here to login