makerbase-mks / MKS-PI

As we all know, the Klipper firmware has the advantages of high printing speed, high precision, and the ability to use the web page to control the printer, etc. MKS PI is a high-end microcomputer board designed by makerbase to replace the Raspberry Pi for the convenience of 3D printing users to use the Klipper firmware. In terms of hardware, MKS PI has a powerful 4-core 64-bit SOC onboard, with 1GBytes of DDR3 memory, supports HDMI screen interface and PI-TS35 screen interface, provides Ethernet port, 3-channel USB interfaces (can be connected to a 3D printer main board, USB Wireless network card, USB camera, U disk, USB keyboard and mouse, etc.); In terms of software, Makerbase provides a complete Klipper firmware transplanted based on the Armbian desktop system, and directly supports klipperScreen. Users only need to download the image file provided by Makerbase, burn it to the TF card, without a lot of construction work, use the usb port or serial port to connect your main board, configure the parameters on the webpage, and you can use the Klipper firmware happily!
GNU General Public License v3.0
112 stars 9 forks source link

Can i connect and configure the MKS-PWC V2.0? #28

Open Atumra78 opened 1 year ago

mpalpha commented 1 year ago

how do I connect and configure the mks-pi and mks-pwc with klipper?

Liriel-666 commented 1 year ago

its easy. Connect it normal

then this in printer.cfg . You must change the pin because my is for robin nano v3


########################################
# PWC Module
########################################
[output_pin PW_OFF]
# Define output pin to power supply off
pin: PB2
value: 1 # Maintain power supply on

and this too or in a extra macro cfg


#######################################
# PWC Module
########################################

[gcode_macro M80]
description: Shutdown 12V power supply
gcode:
  SET_PIN PIN=PW_OFF VALUE=0

it appears on Dashbard a button PW OFF to manual shut it down.

M80 in the End of the printfile shut down automatic the system

mpalpha commented 1 year ago

its easy. Connect it normal

then this in printer.cfg . You must change the pin because my is for robin nano v3


########################################
# PWC Module
########################################
[output_pin PW_OFF]
# Define output pin to power supply off
pin: PB2
value: 1 # Maintain power supply on

and this too or in a extra macro cfg


#######################################
# PWC Module
########################################

[gcode_macro M80]
description: Shutdown 12V power supply
gcode:
  SET_PIN PIN=PW_OFF VALUE=0

it appears on Dashbard a button PW OFF to manual shut it down.

M80 in the End of the printfile shut down automatic the system

what about power button on/off detection?

Liriel-666 commented 1 year ago

Button install like normal Power on over Button works without a Problem. Power off not but here you can use the button on the web interface (main window under fans &co )or the button on the displayinterface for manual shut down (lower left corner)

mpalpha commented 1 year ago

@Liriel-666 You say "normal" many times. do you have the "normal" instructions or diagrams?