<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>GLCD 128/64 sur melzi 1284p</title>
        <description> Salut les gens, bon ben j&#039;ai eu une foldarap de la part d&#039;EmmanuelG et je commence à la construire, et un truc qui m&#039;a tiqué : une foldarap devrait étre complément transportable, et donc devrait étre totalement autonome donc &amp;gt; LCD, encodeur rotatif, lecteur de carte SD....
Dans le kit que j&#039;ai eu la carte de gestion est une Melzi V2.0, y&#039;a bien une option pour gérer un panelolu2 (achat d&#039;un module) ou un LCD graphique mais sur une carte dédié.....
je me suis dit pourquoi pas me claquer un truc qui va gérer ma folda autrement que par des trucs surfait?
j&#039;ai donc commandé un GLCD 128*64 via SPI &amp;gt; [dx.com] (lien à titre d&#039;info, on peut trouver ce LCD en Fr &amp;gt; [www.gotronic.fr] ) et un encodeur rotatif STEC12E08 et un ti buzzer.....
j&#039;ai donc cablé le LCD en SPI et l&#039;encodeur en fonction des pin dans le pin.h de marlin et j&#039;arrive à quelquechose de ce style:



  

    
      
    

    

    
      

      

      

      

      

      

      
      
    

    
        
    

    
      
      
    

    

    
      o2bf.jpg
    

  

 



mod_embed_images_loadimage(&#039;3884621706b6728cdf67f4304d38851f&#039;, &#039;https://reprap.org/forum/addon.php?110,module=embed_images,url=http%3A%2F%2Fimageshack.com%2Fa%2Fimg69%2F112%2Fo2bf.jpg&#039;, &#039;http://imageshack.com/a/img69/112/o2bf.jpg&#039;, &#039;https://reprap.org/forum/addon.php?110,module=embed_images,check_scaling=1,url=http%3A%2F%2Fimageshack.com%2Fa%2Fimg69%2F112%2Fo2bf.jpg&#039;, &#039;&#039;, 291515, 800, 400, &#039;Loading image ...&#039;, false);





  

    
      
    

    

    
      

      

      

      

      

      

      
      
    

    
        
    

    
      
      
    

    

    
      0h2i.jpg
    

  

 



mod_embed_images_loadimage(&#039;571209ce4e1335dc344f42978a1d5fab&#039;, &#039;https://reprap.org/forum/addon.php?110,module=embed_images,url=http%3A%2F%2Fimageshack.com%2Fa%2Fimg843%2F7697%2F0h2i.jpg&#039;, &#039;http://imageshack.com/a/img843/7697/0h2i.jpg&#039;, &#039;https://reprap.org/forum/addon.php?110,module=embed_images,check_scaling=1,url=http%3A%2F%2Fimageshack.com%2Fa%2Fimg843%2F7697%2F0h2i.jpg&#039;, &#039;&#039;, 291515, 800, 400, &#039;Loading image ...&#039;, false);



l&#039;afficheur GLCD fonctionne bien , l&#039;encodeur rotatif marche bien, le beeper aussi, la carte SD (en extension) aussi, juste un peu de mal à faire fonctionner le contrast du menu Glcd sur mon Glcd. .....

si vous voulez le faire sur votre Melzi V2.0 il suffit de faire ça :


1. avoir le firmware marlin ( et le config pour sa printeuse)
2. faire cette modif dans le pin.h de marlin &amp;gt; remplacer les lignes de 1059 &amp;gt; 1097:

Quote
   #ifdef ULTRA_LCD
   #ifdef NEWPANEL
     //we have no buzzer installed
     #define BEEPER -1
     //LCD Pins
     #ifdef DOGLCD
       // Pins for DOGM SPI LCD Support
       #define DOGLCD_A0  30
       #define DOGLCD_CS  29
       // GLCD features
       #define LCD_CONTRAST 1
       // Uncomment screen orientation
         // #define LCD_SCREEN_ROT_0
         // #define LCD_SCREEN_ROT_90
       #define LCD_SCREEN_ROT_180
         // #define LCD_SCREEN_ROT_270
       #else // standard Hitachi LCD controller
       #define LCD_PINS_RS        4
       #define LCD_PINS_ENABLE    17
       #define LCD_PINS_D4        30
       #define LCD_PINS_D5        29
       #define LCD_PINS_D6        28
       #define LCD_PINS_D7        27
     #endif
     //The encoder and click button
     #define BTN_EN1 11  
     #define BTN_EN2 10 
     #ifdef LCD_I2C_PANELOLU2
       #ifdef MELZI
         #define BTN_ENC 29 //the click switch
         #define SDSS 30 //to use the SD card reader on the Panelolu2 rather than the melzi board
       #else
         #define BTN_ENC 30 //the click switch
       #endif
     #else
       #define BTN_ENC 16  //the click switch
     #endif //Panelolu2
     //not connected to a pin
     #define SDCARDDETECT -1 


par ces lignes de 1059  à 1105
Quote #ifdef ULTRA_LCD
   #ifdef NEWPANEL
     //we have no buzzer installed
     #define BEEPER -1
     //LCD Pins
     #ifdef DOGLCD
		#ifdef U8GLIB_ST7920 //SPI GLCD 12864 ST7920 ( like [www.digole.com] ) For Melzi V2.0
		   #define LCD_PINS_RS        30 //CS
		   #define LCD_PINS_ENABLE    29 //SID (MOSI)
		   #define LCD_PINS_D4        17 //SCK (CLK)
		   #define BEEPER 27 // Pin 27 is take by LED_Pin, but Melzi LED do nothing with Marlin and I take this pin for BEEPER.... See here &amp;gt; [github.com] , If you want use this pin with Gcode M42 instead BEEPER
	     // Pins for DOGM SPI LCD Support
		 #else
		   #define DOGLCD_A0  30
		   #define DOGLCD_CS  29
		   #define LCD_CONTRAST 1
		#endif
       // GLCD features
       // Uncomment screen orientation
         // #define LCD_SCREEN_ROT_0
         // #define LCD_SCREEN_ROT_90
       #define LCD_SCREEN_ROT_180
         // #define LCD_SCREEN_ROT_270
       #else // standard Hitachi LCD controller
	   #define LCD_PINS_RS        4
       #define LCD_PINS_ENABLE    17
       #define LCD_PINS_D4        30
       #define LCD_PINS_D5        29
       #define LCD_PINS_D6        28
       #define LCD_PINS_D7        27
     #endif
     //The encoder and click button
     #define BTN_EN1 11  
     #define BTN_EN2 10 
     #ifdef LCD_I2C_PANELOLU2
       #ifdef MELZI
         #define BTN_ENC 29 //the click switch
         #define SDSS 30 //to use the SD card reader on the Panelolu2 rather than the melzi board
       #else
         #define BTN_ENC 30 //the click switch
       #endif
     #else
       #define BTN_ENC 16  //the click switch
     #endif //Panelolu2
     //not connected to a pin
     #define SDCARDDETECT -1    

et décommenter la ligne #define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER dans configuration.h

le reste c&#039;est du cablage......

PS le GLCD vendu par reprapdiscount est pas compatible, le circuit imprimé est fait pour mettre le LCD en // et pas en SPI......y&#039;a pas bcp de pin sur une melzi et les LCD en // demande trop de pin......

A+</description>
        <link>https://reprap.org/forum/read.php?110,291515,291515#msg-291515</link>
        <lastBuildDate>Mon, 09 Mar 2026 05:20:38 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,676277#msg-676277</guid>
            <title>Re: [beta test] GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,676277#msg-676277</link>
            <description><![CDATA[ ShriHari,<br />
<br />
You should have posted your question as a new topic, and in an english speaking part of the forums, here this is the french section.<br />
<br />
Your question seems related to "How do I program my ATMega1284p", the fact you want to put Marlin there sounds irrelevant, so you should go ask in the arduino community, as an example : [<a href="https://www.arduino.cc/en/Tutorial/ArduinoToBreadboard" target="_blank"  rel="nofollow">www.arduino.cc</a>]<br />
<br />
Otherwise the reprap wiki have some documentation that may help, for instance : [<a href="http://reprap.org/wiki/Burning_the_Sanguino_Bootloader_using_Arduino_as_ISP" target="_blank"  rel="nofollow">reprap.org</a>]<br />
<br />
If you still need some help please post your question(s) in a RELEVANT section of the forums, not here, the <a href="http://forums.reprap.org/index.php?145" target="_blank"  rel="nofollow">firmware</a> or <a href="http://forums.reprap.org/index.php?157" target="_blank"  rel="nofollow">electronics</a> sections seems good leads.]]></description>
            <dc:creator>DeuxVis</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Mon, 20 Jun 2016 06:55:02 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,638248#msg-638248</guid>
            <title>Re: [beta test] GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,638248#msg-638248</link>
            <description><![CDATA[ Bonjour à tous. <br />
J'ai une carte avec Melzi V2 sur mon imprimante et je voudrai la mettre en français. J'ai bien pris note de votre modif mais je ne sais pas comment éditer le logiciel afin de modifier la ligne langage. <br />
D'avance merci beaucoup de votre aide.]]></description>
            <dc:creator>e.farny</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Fri, 11 Mar 2016 11:41:43 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,503755#msg-503755</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,503755#msg-503755</link>
            <description><![CDATA[ Bonjour !;)<br />
Je déterre ce fils, car je suis intéressé par l'ajout d'un écran sur ma Melzi.<br />
Je n'arrive pas à trouvé si il y a un controleur entre l'écran et la Melzi ou si c'est le controleur présent sur l'écran qui est utilisé ...<br />
Merci à "Djamuka" de bien vouloir me répondre ou aux autres participants qui auraient expérimentés ce montage.<br />
Cordialement.<br />
Pascal.]]></description>
            <dc:creator>Bricoltout</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 30 Apr 2015 16:47:15 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,342667#msg-342667</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,342667#msg-342667</link>
            <description><![CDATA[ Pour un auto  bed leveling avec une melzi je suis preneur ! J'y travail mais pas simple]]></description>
            <dc:creator>soporis</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Sun, 20 Apr 2014 16:29:40 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,342205#msg-342205</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,342205#msg-342205</link>
            <description><![CDATA[ Salut à toi, sert pas à grand chose que tu prennes le LCD de chez reprapdiscount, ils est pas câblé en SPI et l'adaptateur ne sert vraiment pas à grand chose, hormis dépenser de l'argent pour rien (pas grand chose mais bon...)<br />
Pour un ti schéma je pourrais te faire ça, pas fait pour l'instant, mais y'a rien de bien méchant.<br />
Donc si tu veux garder le max de pin libre sur ta melzi, prend l'écran GLCD cité plus haut et un encoder, le GLCD se câblera sur ta carte avec 3 pin (sans compter l'alim), l'encodeur avec 3 pin aussi (sans compter l'alim). L'alim sur GLCD peut se faire via des ponts sur le circuit imprimé du GLCD, te permettant d'alimenter le GLCD via deux câbles (sympa pour éviter de faire des pont de cable...).<br />
<br />
Pour ce qui est du FW de LV-Esad c'est un FW modifié, il faut refaire une partie de la gestion du LCD pour ne pas avoir les 3 extru de dispo en visu, par contre je l'avais fait et donné à LV-esad mais je l'ai viré (ou je le trouve plus) donc faut voir avec Mister LV pour voir si il a une save....<br />
<br />
A+]]></description>
            <dc:creator>Djamuka</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Sat, 19 Apr 2014 16:20:49 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,341414#msg-341414</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,341414#msg-341414</link>
            <description><![CDATA[ Salut à tous,<br />
<br />
Ayant découvert il y a peu le monde de la Reprap, je compte faire très prochainement l'acquisition d'une Prusa i3 avec carte Melzi. L'idée de pouvoir imprimer sans que l'ordi ne soit connecté en permanence à la machine me tente assez et c'est pourquoi dans un premier temps j'avais pensé me procurer un "Full Graphic Smart Controller" à la mode RepRapdiscount avec un adaptateur pour sanguinololu <a href="http://cgi.ebay.fr/Getech-Smart-Adapter-for-Sanguinololu-Board-Reprap-Ramps-Mendel-3D-Printer-/221267042798?pt=LH_DefaultDomain_0&amp;hash=item33848b21ee" target="_blank"  rel="nofollow">genre celui-là sur eBay</a>. Le hic c'est que cet adaptateur occupe la totalité du connecteur et ne laisse aucun pin de libre sur la Melzi. Or, dans un futur plus ou moins proche, si j'arrive à dompter la bête que je n'ai pour l'instant qu'en rêve, j'espère aussi mettre en place un "auto bed levelling" et pour ça j'aurais besoin de prendre 5v pour un servo ainsi qu'un pin de libre pour le micro switch de la sonde.  Du coup je suis plus qu'interressé par le montage de Djamuka qui semble d'après la photo du début du thread très peu gourmant en connectique, d'autant plus que je compte bien utiliser le lecteur micro-SD déjà présent sur la carte et que je me passerai avec plaisir du buzzer...<br />
<br />
Questions :<br />
<br />
@Djamuka : as-tu trouvé le temps de dessiner un joli petit schéma de câblage histoire de simplifier un peu la vie au newbie que je suis ?<br />
<br />
@lv-esad : sur ta photo on peut voir que tu as réussi à virer de l'affichage les extrudeurs 2 et 3, comment t'as fait ?<br />
<br />
<br />
Voilà, ché tout' pour l'instant et encore bravo Djamuka pour ton ingénuosité.  A+]]></description>
            <dc:creator>yakoobakom</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 17 Apr 2014 18:01:06 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,296013#msg-296013</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,296013#msg-296013</link>
            <description><![CDATA[ Perso gotronix]]></description>
            <dc:creator>lv-esad</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 16 Jan 2014 16:14:34 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,295953#msg-295953</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,295953#msg-295953</link>
            <description><![CDATA[ bien joué !!<br />
<br />
tu la pris où ton ecran gotronic ou aliexpress ?<br />
<br />
<br />
a+]]></description>
            <dc:creator>DROJ</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 16 Jan 2014 14:42:57 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,295744#msg-295744</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,295744#msg-295744</link>
            <description><![CDATA[ Aucune idée.. Après quelques reboot c'est passé ! Là c'est en plein print pour un wade, full auto ;) Ya quelques truc a changer sur le boitier mais j'te filerais tout]]></description>
            <dc:creator>lv-esad</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 16 Jan 2014 08:06:27 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,295737#msg-295737</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,295737#msg-295737</link>
            <description><![CDATA[ Top, c'était quoi le soucis du firmware qui voulait pas?<br />
et tu as lancé une impression en autonome?<br />
<br />
Sympa ton petit boitier ;)]]></description>
            <dc:creator>Djamuka</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 16 Jan 2014 07:54:20 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,295733#msg-295733</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,295733#msg-295733</link>
            <description><![CDATA[ [<a href="https://drive.google.com/file/d/0B8Xj_KEUbIbBVERsbnhaNjhncHc/edit?usp=sharing" target="_blank"  rel="nofollow">drive.google.com</a>]]]></description>
            <dc:creator>lv-esad</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 16 Jan 2014 07:48:36 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,295601#msg-295601</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,295601#msg-295601</link>
            <description><![CDATA[ essaye avec l'IDE 1.0.4 et prends les fichiers librairie et Sanguino sur le github de Marlin pour voir.]]></description>
            <dc:creator>Djamuka</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 16 Jan 2014 03:14:34 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,295600#msg-295600</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,295600#msg-295600</link>
            <description><![CDATA[ J'ai arduino 1.0.5, la melzi est bien reconnue..]]></description>
            <dc:creator>lv-esad</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 16 Jan 2014 03:10:41 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,295591#msg-295591</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,295591#msg-295591</link>
            <description><![CDATA[ Salut lv, bizzare que tu n'arrives pas à mettre le firmware dessus. Tu as bien tout ce qu'il faut dans les librairies et le dossier hardware/arduino pour la melzi ? c'est quoi comme IDE arduino que tu as?]]></description>
            <dc:creator>Djamuka</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 16 Jan 2014 02:43:25 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,295453#msg-295453</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,295453#msg-295453</link>
            <description><![CDATA[ Bon j'arrive pas a envoyer le firm, ça bug... Un pb de font si j'ai bien compris. En attendant : tadaaa [<a href="https://drive.google.com/file/d/0B8Xj_KEUbIbBMTl0b0pmdFdrcnM/edit?usp=sharing" target="_blank"  rel="nofollow">drive.google.com</a>]]]></description>
            <dc:creator>lv-esad</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Wed, 15 Jan 2014 18:59:20 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,293397#msg-293397</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,293397#msg-293397</link>
            <description><![CDATA[ merci pour ton post !]]></description>
            <dc:creator>DROJ</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Sun, 12 Jan 2014 05:49:34 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,292695#msg-292695</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,292695#msg-292695</link>
            <description><![CDATA[ Yop, vu le prix d'un écran LCD graphique 128/64 compatible SPI, je vois pas ce qui pourrais empêcher un quelconque achat..... <br />
<br />
Sinon je continu mes aventures dans le FW Marlin, le contraste ne peut pas étre géré par l'option contrast du menu LCD (les pins analogique de dispo ne sont pas en PWM, et le soft PWM dispo dans Marlin n'est pas vraiment ce qu'il y a de mieux pour gérer le contraste) , j'ai donc désactivé la disponibilité de cette option dans le FW (j'aime n'avoir à dispo que ce que je peux régler....)<br />
<br />
si vous étes comme moi, faire cette modif dans le fichier ultralcd.cpp<br />
<br />
Remplacer à partir de la ligne 618 :<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />#ifdef DOGLCD<br />
//    MENU_ITEM_EDIT(int3, MSG_CONTRAST, &amp;lcd_contrast, 0, 63);<br />
    MENU_ITEM(submenu, MSG_CONTRAST, lcd_set_contrast);<br />
#endif</div></blockquote>
<br />
<br />
par ces lignes là :<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />#ifdef DOGLCD<br />
	#ifdef LCD_CONTRAST &gt; 0<br />
//    MENU_ITEM_EDIT(int3, MSG_CONTRAST, &amp;lcd_contrast, 0, 63);<br />
      MENU_ITEM(submenu, MSG_CONTRAST, lcd_set_contrast);<br />
	#endif<br />
#endif</div></blockquote>
<br />
rien de méchant, le reste de l'affichage des extru en trop je suis dessus, mais pas si simple que ce que je pensais ^^<br />
<br />
sinon bientot le schéma de cablage, je veut juste étre sur de mon truc.....]]></description>
            <dc:creator>Djamuka</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Fri, 10 Jan 2014 17:39:24 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,292682#msg-292682</guid>
            <title>Re: [beta test] GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,292682#msg-292682</link>
            <description><![CDATA[ Sinon il y a des adaptateurs SPI //. Mais ça rajoute une carte en plus : autant prendre un ecran SPI directement.]]></description>
            <dc:creator>raoullevert</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Fri, 10 Jan 2014 17:20:55 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,291704#msg-291704</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,291704#msg-291704</link>
            <description><![CDATA[ Très bon post ! Merci.]]></description>
            <dc:creator>raoullevert</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 09 Jan 2014 05:38:40 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,291653#msg-291653</guid>
            <title>Re: GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,291653#msg-291653</link>
            <description><![CDATA[ Merci Xav83, c'est pas grand chose hein.....<br />
Petite info si vous voulez avoir le Menu LCD en Fr, il faut modifier dans le fichier language.h la ligne 21<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />#define LANGUAGE_CHOICE 1</div></blockquote>
<br />
et mettre le choix 3 à la place du 1.<br />
<br />
Pour donner un nom à votre Imprimante il faut décommenter la ligne 77 :<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />// #define CUSTOM_MENDEL_NAME "This Mendel"</div></blockquote>
<br />
Et remplacer "this Mendel" par ce que vous voulez, "Foldarap" par exemple.<br />
<br />
Je vais essayé de modifier l'affichage du LCD, y'a deux extrudeurs en trop qui s'affiche et ça gache un peu le visu.....]]></description>
            <dc:creator>Djamuka</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Thu, 09 Jan 2014 02:59:32 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,291570#msg-291570</guid>
            <title>Re: [beta test] GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,291570#msg-291570</link>
            <description><![CDATA[ Salut Djamuka,<br />
Super intéressant pour nos petites transportables avec Melzi.<br />
Encore du bon boulot bravo.<br />
<br />
Et merci pour le partage.<br />
<br />
PS: si tu as le temps de nous faire un petit schéma de câblage ce serais le Top]]></description>
            <dc:creator>Xav83</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Wed, 08 Jan 2014 18:52:23 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?110,291515,291515#msg-291515</guid>
            <title>GLCD 128/64 sur melzi 1284p</title>
            <link>https://reprap.org/forum/read.php?110,291515,291515#msg-291515</link>
            <description><![CDATA[ Salut les gens, bon ben j'ai eu une foldarap de la part d'EmmanuelG et je commence à la construire, et un truc qui m'a tiqué : une foldarap devrait étre complément transportable, et donc devrait étre totalement autonome donc &gt; LCD, encodeur rotatif, lecteur de carte SD....<br />
Dans le kit que j'ai eu la carte de gestion est une Melzi V2.0, y'a bien une option pour gérer un panelolu2 (achat d'un module) ou un LCD graphique mais sur une carte dédié.....<br />
je me suis dit pourquoi pas me claquer un truc qui va gérer ma folda autrement que par des trucs surfait?<br />
j'ai donc commandé un GLCD 128*64 via SPI &gt; [<a href="http://dx.com/p/5v-3-2-lcd12864-screen-module-with-backlit-yellow-green-screen-english-word-stock-121820" target="_blank"  rel="nofollow">dx.com</a>] (lien à titre d'info, on peut trouver ce LCD en Fr &gt; [<a href="http://www.gotronic.fr/art-module-graphique-lcd12864dfr-19395.htm" target="_blank"  rel="nofollow">www.gotronic.fr</a>] ) et un encodeur rotatif <a href="http://www.produktinfo.conrad.com/datenblaetter/700000-724999/700708-da-01-en-ENCODER_STEC12E08.pdf" target="_blank"  rel="nofollow">STEC12E08</a> et un ti buzzer.....<br />
j'ai donc cablé le LCD en SPI et l'encodeur en fonction des pin dans le pin.h de marlin et j'arrive à quelquechose de ce style:<br />
<br />
<div id="div_3884621706b6728cdf67f4304d38851f"
     class="mod_embed_images"
     >

  

    
      
    

    <div id="imagediv_3884621706b6728cdf67f4304d38851f" class="mod_embed_images_image"
         >

    
      

      

      

      

      

      

      <noscript>
      <div>
    

    <a href="http://imageshack.com/a/img69/112/o2bf.jpg">
        <img src="https://reprap.org/forum/addon.php?110,module=embed_images,url=http%3A%2F%2Fimageshack.com%2Fa%2Fimg69%2F112%2Fo2bf.jpg"
             
             
             id="image_3884621706b6728cdf67f4304d38851f"
             alt="o2bf.jpg"
             title="o2bf.jpg"/>
    </a>

    
      </div>
      </noscript>
    

    </div>

    <div class="mod_embed_images_info " id="info_3884621706b6728cdf67f4304d38851f"
      >
      <a id="link_3884621706b6728cdf67f4304d38851f" href="http://imageshack.com/a/img69/112/o2bf.jpg">o2bf.jpg</a>
    </div>

  

 </div>


<script type="text/javascript">
mod_embed_images_loadimage('3884621706b6728cdf67f4304d38851f', 'https://reprap.org/forum/addon.php?110,module=embed_images,url=http%3A%2F%2Fimageshack.com%2Fa%2Fimg69%2F112%2Fo2bf.jpg', 'http://imageshack.com/a/img69/112/o2bf.jpg', 'https://reprap.org/forum/addon.php?110,module=embed_images,check_scaling=1,url=http%3A%2F%2Fimageshack.com%2Fa%2Fimg69%2F112%2Fo2bf.jpg', '', 291515, 800, 400, 'Loading image ...', false);
</script>
<br />
<br />
<div id="div_571209ce4e1335dc344f42978a1d5fab"
     class="mod_embed_images"
     >

  

    
      
    

    <div id="imagediv_571209ce4e1335dc344f42978a1d5fab" class="mod_embed_images_image"
         >

    
      

      

      

      

      

      

      <noscript>
      <div>
    

    <a href="http://imageshack.com/a/img843/7697/0h2i.jpg">
        <img src="https://reprap.org/forum/addon.php?110,module=embed_images,url=http%3A%2F%2Fimageshack.com%2Fa%2Fimg843%2F7697%2F0h2i.jpg"
             
             
             id="image_571209ce4e1335dc344f42978a1d5fab"
             alt="0h2i.jpg"
             title="0h2i.jpg"/>
    </a>

    
      </div>
      </noscript>
    

    </div>

    <div class="mod_embed_images_info " id="info_571209ce4e1335dc344f42978a1d5fab"
      >
      <a id="link_571209ce4e1335dc344f42978a1d5fab" href="http://imageshack.com/a/img843/7697/0h2i.jpg">0h2i.jpg</a>
    </div>

  

 </div>


<script type="text/javascript">
mod_embed_images_loadimage('571209ce4e1335dc344f42978a1d5fab', 'https://reprap.org/forum/addon.php?110,module=embed_images,url=http%3A%2F%2Fimageshack.com%2Fa%2Fimg843%2F7697%2F0h2i.jpg', 'http://imageshack.com/a/img843/7697/0h2i.jpg', 'https://reprap.org/forum/addon.php?110,module=embed_images,check_scaling=1,url=http%3A%2F%2Fimageshack.com%2Fa%2Fimg843%2F7697%2F0h2i.jpg', '', 291515, 800, 400, 'Loading image ...', false);
</script>
<br />
<br />
l'afficheur GLCD fonctionne bien , l'encodeur rotatif marche bien, le beeper aussi, la carte SD (en extension) aussi, juste un peu de mal à faire fonctionner le contrast du menu Glcd sur mon Glcd. .....<br />
<br />
si vous voulez le faire sur votre Melzi V2.0 il suffit de faire ça :<br />
<br />
<br />
1. <u>avoir le firmware marlin ( et le config pour sa printeuse)</u><br />
2. faire cette modif dans le pin.h de marlin &gt; remplacer les lignes de 1059 &gt; 1097:<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />
   #ifdef ULTRA_LCD<br />
   #ifdef NEWPANEL<br />
     //we have no buzzer installed<br />
     #define BEEPER -1<br />
     //LCD Pins<br />
     #ifdef DOGLCD<br />
       // Pins for DOGM SPI LCD Support<br />
       #define DOGLCD_A0  30<br />
       #define DOGLCD_CS  29<br />
       // GLCD features<br />
       #define LCD_CONTRAST 1<br />
       // Uncomment screen orientation<br />
         // #define LCD_SCREEN_ROT_0<br />
         // #define LCD_SCREEN_ROT_90<br />
       #define LCD_SCREEN_ROT_180<br />
         // #define LCD_SCREEN_ROT_270<br />
       #else // standard Hitachi LCD controller<br />
       #define LCD_PINS_RS        4<br />
       #define LCD_PINS_ENABLE    17<br />
       #define LCD_PINS_D4        30<br />
       #define LCD_PINS_D5        29<br />
       #define LCD_PINS_D6        28<br />
       #define LCD_PINS_D7        27<br />
     #endif<br />
     //The encoder and click button<br />
     #define BTN_EN1 11  <br />
     #define BTN_EN2 10 <br />
     #ifdef LCD_I2C_PANELOLU2<br />
       #ifdef MELZI<br />
         #define BTN_ENC 29 //the click switch<br />
         #define SDSS 30 //to use the SD card reader on the Panelolu2 rather than the melzi board<br />
       #else<br />
         #define BTN_ENC 30 //the click switch<br />
       #endif<br />
     #else<br />
       #define BTN_ENC 16  //the click switch<br />
     #endif //Panelolu2<br />
     //not connected to a pin<br />
     #define SDCARDDETECT -1 </div></blockquote>
<br />
<br />
par ces lignes de 1059  à 1105<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br /> #ifdef ULTRA_LCD<br />
   #ifdef NEWPANEL<br />
     //we have no buzzer installed<br />
     #define BEEPER -1<br />
     //LCD Pins<br />
     #ifdef DOGLCD<br />
		#ifdef U8GLIB_ST7920 //SPI GLCD 12864 ST7920 ( like [<a href="http://www.digole.com/images/file/Digole_12864_LCD.pdf" target="_blank"  rel="nofollow">www.digole.com</a>] ) For Melzi V2.0<br />
		   #define LCD_PINS_RS        30 //CS<br />
		   #define LCD_PINS_ENABLE    29 //SID (MOSI)<br />
		   #define LCD_PINS_D4        17 //SCK (CLK)<br />
		   #define BEEPER 27 // Pin 27 is take by LED_Pin, but Melzi LED do nothing with Marlin and I take this pin for BEEPER.... See here &gt; [<a href="https://github.com/ErikZalm/Marlin/pull/371" target="_blank"  rel="nofollow">github.com</a>] , If you want use this pin with Gcode M42 instead BEEPER<br />
	     // Pins for DOGM SPI LCD Support<br />
		 #else<br />
		   #define DOGLCD_A0  30<br />
		   #define DOGLCD_CS  29<br />
		   #define LCD_CONTRAST 1<br />
		#endif<br />
       // GLCD features<br />
       // Uncomment screen orientation<br />
         // #define LCD_SCREEN_ROT_0<br />
         // #define LCD_SCREEN_ROT_90<br />
       #define LCD_SCREEN_ROT_180<br />
         // #define LCD_SCREEN_ROT_270<br />
       #else // standard Hitachi LCD controller<br />
	   #define LCD_PINS_RS        4<br />
       #define LCD_PINS_ENABLE    17<br />
       #define LCD_PINS_D4        30<br />
       #define LCD_PINS_D5        29<br />
       #define LCD_PINS_D6        28<br />
       #define LCD_PINS_D7        27<br />
     #endif<br />
     //The encoder and click button<br />
     #define BTN_EN1 11  <br />
     #define BTN_EN2 10 <br />
     #ifdef LCD_I2C_PANELOLU2<br />
       #ifdef MELZI<br />
         #define BTN_ENC 29 //the click switch<br />
         #define SDSS 30 //to use the SD card reader on the Panelolu2 rather than the melzi board<br />
       #else<br />
         #define BTN_ENC 30 //the click switch<br />
       #endif<br />
     #else<br />
       #define BTN_ENC 16  //the click switch<br />
     #endif //Panelolu2<br />
     //not connected to a pin<br />
     #define SDCARDDETECT -1    </div></blockquote>
<br />
et décommenter la ligne #define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER dans configuration.h<br />
<br />
le reste c'est du cablage......<br />
<br />
PS le GLCD vendu par reprapdiscount est pas compatible, le circuit imprimé est fait pour mettre le LCD en // et pas en SPI......y'a pas bcp de pin sur une melzi et les LCD en // demande trop de pin......<br />
<br />
A+<br/>]]></description>
            <dc:creator>Djamuka</dc:creator>
            <category>RepRap Groupe d&#039;Utilisateurs Francophone</category>
            <pubDate>Wed, 08 Jan 2014 17:25:58 -0500</pubDate>
        </item>
    </channel>
</rss>
