<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>ViKi 2 LCD on Ramps 1.4</title>
        <description> Hi all, 

just wondering if anyone has pinouts/instructions etc to allow a ViKi 2 LCD screen to work on my Prusa I3 Clone, currently have a budget lcd fitted.

Any help appreciated.</description>
        <link>https://reprap.org/forum/read.php?1,895662,895662#msg-895662</link>
        <lastBuildDate>Wed, 12 Aug 2026 11:01:22 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?1,895662,895781#msg-895781</guid>
            <title>Re: ViKi 2 LCD on Ramps 1.4</title>
            <link>https://reprap.org/forum/read.php?1,895662,895781#msg-895781</link>
            <description><![CDATA[ Please find attached photos of front/rear of ViKi 2 as requested.]]></description>
            <dc:creator>Nerochi70</dc:creator>
            <category>General</category>
            <pubDate>Tue, 17 Sep 2024 11:32:51 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,895662,895774#msg-895774</guid>
            <title>Re: ViKi 2 LCD on Ramps 1.4</title>
            <link>https://reprap.org/forum/read.php?1,895662,895774#msg-895774</link>
            <description><![CDATA[ Thankyou for your replies “Dust” I will take a look at Platfomio and the pins suggested. ]]></description>
            <dc:creator>Nerochi70</dc:creator>
            <category>General</category>
            <pubDate>Mon, 16 Sep 2024 12:08:40 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,895662,895767#msg-895767</guid>
            <title>Re: ViKi 2 LCD on Ramps 1.4</title>
            <link>https://reprap.org/forum/read.php?1,895662,895767#msg-895767</link>
            <description><![CDATA[ I also see this on [<a href="https://github.com/MarlinFirmware/Marlin/issues/9513" target="_blank"  rel="nofollow">github.com</a>]  for VIKI2 on ramps...<br />
<br />
<br />
So noting it here for reference <br />
<br />
<pre class="bbcode">
      #define DOGLCD_CS         32
      #define DOGLCD_A0         47
      #define LCD_SCREEN_ROT_180

      #define BEEPER_PIN        35
      #define STAT_LED_RED_PIN  39
      #define STAT_LED_BLUE_PIN 37

      #define BTN_EN1           45
      #define BTN_EN2           41
      #define BTN_ENC           43

      #define SDSS              53
      #define SD_DETECT_PIN     -1 // Pin 49 for display sd interface
      //#define KILL_PIN          31
</pre>]]></description>
            <dc:creator>Dust</dc:creator>
            <category>General</category>
            <pubDate>Sun, 15 Sep 2024 21:52:54 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,895662,895766#msg-895766</guid>
            <title>Re: ViKi 2 LCD on Ramps 1.4</title>
            <link>https://reprap.org/forum/read.php?1,895662,895766#msg-895766</link>
            <description><![CDATA[ The page [<a href="https://www.panucatt.com/product_p/vikilcd2.htm" target="_blank"  rel="nofollow">www.panucatt.com</a>]  has a link to "Get Support Files here" that no longer works. <br />
But waybackmachine does have that page [<a href="https://web.archive.org/web/20230328060533/https://panucattdevices.freshdesk.com/support/solutions/folders/1000183232" target="_blank"  rel="nofollow">web.archive.org</a>] and shows [<a href="https://web.archive.org/web/20221203065443/https://panucattdevices.freshdesk.com/support/solutions/articles/1000158562-viki-lcd-2-0-support-files" target="_blank"  rel="nofollow">web.archive.org</a>] but those links are also gone<br />
<br />
By using some tricks I was able to get partial wiring PDF's but they are truncated to 1MB, had to repair them to see anything. But the important ramps stuff is of course missing! <br />
<br />
[attachment 121115 Viki2_Wiring_Diagram_repaired.pdf]<br />
[attachment 121114 Viki2_Wiringv1.2_repaired.pdf]]]></description>
            <dc:creator>Dust</dc:creator>
            <category>General</category>
            <pubDate>Sun, 15 Sep 2024 21:38:08 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,895662,895765#msg-895765</guid>
            <title>Re: ViKi 2 LCD on Ramps 1.4</title>
            <link>https://reprap.org/forum/read.php?1,895662,895765#msg-895765</link>
            <description><![CDATA[ U8glib and U8glib-HAL provide the same API interface, you only install the latter<br />
<br />
I would strongly suggest you use platformio under vscode, its 100 times faster to complie than Arduino IDE, it also installs the correct library automatically  see [<a href="https://marlinfw.org/docs/basics/install_platformio_vscode.html" target="_blank"  rel="nofollow">marlinfw.org</a>]<br />
<br />
If you look at the  Marlin/src/pins/ramps/pins_RAMPS.h file  it shows what ramps pins are used for this display<br />
<br />
<pre class="bbcode">
      #define DOGLCD_CS                  AUX4_05  // 45
      #define DOGLCD_A0                  AUX2_07  // 44

      #ifndef BEEPER_PIN
        #define BEEPER_PIN           EXP2_05_PIN // 37
      #endif
      #define STAT_LED_RED_PIN           AUX4_03 // 32
      #define STAT_LED_BLUE_PIN      EXP1_02_PIN // 31

      #define BTN_EN1                         22
      #define BTN_EN2                          7
      #define BTN_ENC                    AUX4_08 // 39

      #ifndef SD_DETECT_PIN
        #define SD_DETECT_PIN                 -1  // Pin 49 for display SD interface, 72 for easy adapter board
      #endif
      #define KILL_PIN               EXP2_03_PIN // 35</pre>
<br />
Its also a SPI device so its using <br />
MISO // 50<br />
MOSI // 51<br />
SCK // 52<br />
<br />
I also note it says<br />
<br />
      #define BTN_EN1                         22<br />
      #define BTN_EN2                          7<br />
<br />
but pins 22 and 7 are not broken out on the ramps anywhere,  so all these pins need checking. They seem to have been incorrectly copied from Rambo controller. <br />
<br />
<br />
<br />
Your probably going to have to reverse engineer the adapter board, work out what pins go where.  Start with taking highres pictures of top and bottom of the adapter, hopefully you can see some of the pcb tracks.<br />
<br />
Also can I ask you to take some high res photos of the front and back of the display, so I can add the images to this list [<a href="https://marlinfw.org/docs/hardware/controllers.html#viki2" target="_blank"  rel="nofollow">marlinfw.org</a>]]]></description>
            <dc:creator>Dust</dc:creator>
            <category>General</category>
            <pubDate>Sun, 15 Sep 2024 20:52:22 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,895662,895762#msg-895762</guid>
            <title>Re: ViKi 2 LCD on Ramps 1.4</title>
            <link>https://reprap.org/forum/read.php?1,895662,895762#msg-895762</link>
            <description><![CDATA[ I have installed U8glib and U8glib-HAL libraries but I am not sure about connections to my Ramps 1.4 board, I currently have an easy adapter board fitted to my Ramps 1.4.<br />
Connections to ViKi 2 LCD end shown in pictures attached these then go to fly leads for connection to Ramps 1.4.<br />
My ViKi 2 came with no instructions and the link to instructions on Panucutt no longer work.<br />
<br />
Any help appreciated.]]></description>
            <dc:creator>Nerochi70</dc:creator>
            <category>General</category>
            <pubDate>Sun, 15 Sep 2024 08:21:47 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,895662,895662#msg-895662</guid>
            <title>ViKi 2 LCD on Ramps 1.4</title>
            <link>https://reprap.org/forum/read.php?1,895662,895662#msg-895662</link>
            <description><![CDATA[ Hi all, <br />
<br />
just wondering if anyone has pinouts/instructions etc to allow a ViKi 2 LCD screen to work on my Prusa I3 Clone, currently have a budget lcd fitted.<br />
<br />
Any help appreciated.]]></description>
            <dc:creator>Nerochi70</dc:creator>
            <category>General</category>
            <pubDate>Tue, 27 Aug 2024 15:53:27 -0400</pubDate>
        </item>
    </channel>
</rss>
