Klipper Firmware Creation
This section will cover creating the firmware file for the Anycubic Vyper 3D printer required to use with Klipper. You could also use a copy of the firmware file I already created (at your own risk):
In Windows open a command prompt;
Windows Key + R
, typecmd
, then clickOK
;

In the Command Prompt window;
Type
ssh pi@ipaddress
and pressEnter
;

You will be prompted to enter your password, enter the password you set in Changing the Default Password section;
If you haven't changed the default password, type
raspberry
;

Navigate to the Klipper folder;
Type
cd klipper
and pressEnter
;

Open the 'Klipper Firmware Configuration';
Type
make menuconfig
and pressEnter
;

Using the
arrow keys
to navigate and yourspace bar
to select, move through the menus and replicate the settings exactly as shown in the picture below;

Once you have the options selected as shown above;
Press
Q
to quit, thenY
to save your configuration;
To build the firmware;
Type
make
in the SSH console;

The firmware will be compiled, you should see the output on your screen, wait for the process to finish;

To close your SSH session;
Type
exit
and pressEnter
;
You can close your 'command prompt' as well at this time.
Last updated